@charset "UTF-8";

/* ============================================
   FLORENCIA MOREIRA - LUXURY BRANDING CSS
   Concept: Contemporary Psychoanalysis
   Awwwards Style Aesthetic
   ============================================ */

:root {
  /* Exclusive Luxury Palette */
  --bg-color: #F5F2EC; /* Marfil cálido */
  --bg-alt: #EDE8DF; /* Beige piedra suave */
  --bg-sage: #303A34; /* Verde carbón apagado */

  --ink: #191918; /* Negro carbón */
  --ink-soft: #706D68; /* Gris cálido */

  --accent-clay: #B8755D; /* Terracota suave */
  --accent-gold: #9D806C; /* Taupe cálido */

  --border-solid: rgba(25, 25, 24, 0.12);

  /* Typography */
  --font-serif: "Newsreader", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-img: 4px;

  /* Multi-layered Ambient Shadows */
  --shadow-ambient:
    0 2px 8px rgba(26, 26, 24, 0.02),
    0 12px 24px rgba(26, 26, 24, 0.03),
    0 32px 64px rgba(26, 26, 24, 0.04);

  --shadow-hover:
    0 4px 12px rgba(26, 26, 24, 0.03),
    0 24px 48px rgba(26, 26, 24, 0.05),
    0 48px 96px rgba(26, 26, 24, 0.06);

  /* Bézier Curves */
  --bezier-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --bezier-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1300px;
  --section-py: 160px;
}

body.dark-theme {
  --bg-color: #1D211E;
  --bg-alt: #252A26;
  --bg-sage: #343E37;
  --ink: #F7F7F7;
  --ink-soft: #C0BDB6;
  --accent-clay: #D0957D;
  --accent-gold: #C3A895;
  --border-solid: rgba(255, 255, 255, 0.14);
  
  --shadow-ambient:
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 32px 64px rgba(0, 0, 0, 0.5);

  --shadow-hover:
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 48px 96px rgba(0, 0, 0, 0.6);
}

body.dark-theme .site-header {
  background-color: rgba(26, 36, 30, 0.85); /* Matches --bg-color #1a241e */
}

body.dark-theme .hero::after {
  border-color: rgba(255,255,255,0.1);
  box-shadow: inset 0 10px 30px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
}

body.dark-theme h1, 
body.dark-theme h2, 
body.dark-theme h3 {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

body.dark-theme .brand-text strong {
  color: var(--ink);
}

body.dark-theme .brand-text span {
  color: var(--accent-clay);
}

body.dark-theme .modality-card h3 {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  :root {
    --section-py: 80px;
  }
}

/* ================== RESET & BASE ================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  background: var(--bg-color);
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  background-color: var(--bg-color);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga" 1, "kern" 1, "salt" 1;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

body.dark-theme::after {
  opacity: 0.02;
  mix-blend-mode: color-dodge;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.6s var(--bezier-smooth);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
  font-feature-settings: "liga" 1, "kern" 1;
}

@keyframes shineText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 9vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  color: var(--accent-clay);
  background: none;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0.18px currentColor;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6.5vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 600;
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 600;
}

.lead {
  font-size: clamp(1.05rem, 4vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 2rem 0 3rem;
  line-height: 1.6;
  font-weight: 500;
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-clay);
  margin-bottom: 1.5rem;
}

/* Utilities */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5vw;
}

section {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 2;
}

.section-alt {
  background-color: var(--bg-alt);
}

/* Divider Gradient Line */
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-solid) 50%, transparent);
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.8s var(--bezier-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--ink);
  color: var(--bg-color);
  border-color: var(--ink);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-sage);
  transition: top 0.6s var(--bezier-smooth);
  z-index: -1;
}

.btn-primary:hover {
  border-color: var(--bg-sage);
  color: #fff;
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 16px 32px rgba(28, 42, 35, 0.3);
}

.btn-primary:hover::before {
  top: 0;
}

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--border-solid);
}

.btn-ghost:hover {
  border-color: var(--ink);
  transform: translate3d(0, -4px, 0);
  background-color: var(--ink);
  color: #fff;
}

.btn-wa {
  background-color: transparent;
  color: var(--accent-clay);
  border-bottom: 1px solid var(--accent-clay);
  border-radius: 0;
  padding: 4px 0 2px;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-wa:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
  transform: translate3d(0, -2px, 0);
}

/* ================== HEADER ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(251, 249, 245, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background-color 0.8s var(--bezier-smooth);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-solid) 50%, transparent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}


.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.6s var(--bezier-smooth);
}

.brand:hover img {
  opacity: 1;
}

.brand-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bg-sage);
}

.brand-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-left: 12px;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-clay);
  transition: width 0.6s var(--bezier-smooth);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: var(--ink);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lamp-icon {
  fill: var(--accent-gold);
  stroke: var(--accent-gold);
  filter: drop-shadow(0 0 6px rgba(242, 206, 114, 0.6));
  transition: all 0.4s var(--bezier-smooth);
}

body.dark-theme .lamp-icon {
  fill: none;
  stroke: var(--ink-soft);
  filter: none;
}

.theme-toggle:hover {
  background-color: var(--border-solid);
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s var(--bezier-smooth);
  }

  .nav-links.open {
    max-height: 500px;
    border-bottom: 1px solid var(--border-solid);
  }

  .nav-links a {
    display: block;
    padding: 24px 5vw;
    font-size: 1rem;
    color: var(--ink);
    border-top: 1px solid var(--border-solid);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* ================== HERO & ABSTRACCIÓN ================== */
@keyframes breatheLight {
  0% {
    opacity: 0.4;
    transform: scale(1) translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05) translate3d(2%, 3%, 0);
  }

  100% {
    opacity: 0.4;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

.hero {
  padding: 100px 0 160px;
  position: relative;
  overflow: hidden;
}

/* Haz de luz cenital (Mesh Gradient) */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(184, 115, 85, 0.03) 30%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: breatheLight 12s ease-in-out infinite;
}

/* Abstracción Diván CSS Puro */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0%;
  right: 5%;
  width: 45vw;
  height: 25vw;
  background: linear-gradient(135deg, rgba(28, 42, 35, 0.02) 0%, rgba(28, 42, 35, 0.05) 100%);
  border-radius: 10vw 4vw 2vw 2vw;
  z-index: 0;
  pointer-events: none;
  transform: skewX(-15deg);
  box-shadow:
    inset 0 10px 30px rgba(255, 255, 255, 0.5),
    0 20px 40px rgba(26, 26, 24, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0 120px;
  }

  .hero::after {
    display: none;
  }

}

/* ================== MODALITIES ================== */
.section-head {
  max-width: 700px;
  margin: 0 0 100px;
}

.modality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.modality-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-color);
  padding: 56px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ambient);
  transition: all 0.8s var(--bezier-smooth);
  position: relative;
  overflow: hidden;
}

.modality-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--bezier-smooth);
}

.modality-card:hover {
  transform: translate3d(0, -12px, 0);
  box-shadow: var(--shadow-hover);
}

.modality-card:hover::before {
  transform: scaleX(1);
}

.modality-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 120%, rgba(173, 107, 78, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.8s var(--bezier-smooth);
  pointer-events: none;
}

.modality-card:hover::after {
  opacity: 1;
}

.modality-card h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--bg-sage);
}

.modality-card p {
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.8;
  flex-grow: 1;
}

.modality-card .btn-wa {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .modality-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .modality-card {
    padding: 40px 32px;
  }
}

/* ================== ABOUT ================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.about-grid img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: var(--shadow-ambient);
  filter: sepia(10%) contrast(105%);
}

.bullets {
  list-style: none;
  margin: 40px 0;
  padding: 0;
}

.bullets li {
  padding: 20px 0;
  position: relative;
  color: var(--ink);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-solid);
}

.bullets li:first-child {
  border-top: 1px solid var(--border-solid);
}

.areas-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 48px 0 24px;
  display: block;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.chip {
  background-color: var(--bg-alt);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.6s var(--bezier-smooth);
}

.chip:hover {
  background-color: var(--bg-sage);
  color: #fff;
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 16px rgba(28, 42, 35, 0.15);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-grid img {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    order: -1;
  }
}

/* ================== SPECIALTIES & ARTICLES ================== */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  /* For the thin line effect */
  background: linear-gradient(90deg, transparent, var(--border-solid) 50%, transparent);
}

.specialty-card {
  padding: 48px 32px;
  background: var(--bg-alt);
  transition: all 0.8s var(--bezier-smooth);
}

.specialty-card:hover {
  background: var(--bg-color);
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 10;
  border-radius: var(--radius-md);
}

.specialty-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--ink);
}

.specialty-card p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.article-list {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.article-list h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.article-list p {
  color: var(--ink-soft);
  font-size: 1rem;
}

@media (max-width: 900px) {

  .specialty-grid,
  .article-list {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: none;
  }

  .specialty-card {
    background: transparent;
    border-bottom: 1px solid var(--border-solid);
    padding: 32px 0;
  }
}

@media (max-width: 600px) {

  .specialty-grid,
  .article-list {
    grid-template-columns: 1fr;
  }
}

/* ================== CONTACT ================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.contact-info {
  padding-right: 40px;
}

#contact-subtitle {
  color: var(--ink-soft);
  margin-bottom: 48px;
  font-size: 1.15rem;
}

.contact-line {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-solid);
  font-size: 1.1rem;
  color: var(--ink);
  transition: color 0.6s var(--bezier-smooth);
}

.contact-line:hover {
  color: var(--accent-clay);
  transform: translate3d(8px, 0, 0);
}

.social-row {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}

.social-row a {
  border: 1px solid var(--border-solid);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: all 0.6s var(--bezier-smooth);
}

.social-row a:hover {
  background-color: var(--bg-sage);
  color: #fff;
  border-color: var(--bg-sage);
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 12px 24px rgba(28, 42, 35, 0.2);
}

/* FORM - Lujo minimalista */
form.contact-form {
  background-color: var(--bg-alt);
  padding: 64px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ambient);
  transition: box-shadow 0.8s var(--bezier-smooth);
}

form.contact-form:hover {
  box-shadow: var(--shadow-hover);
}

#form-title {
  font-size: 2.2rem;
  margin-bottom: 48px;
}

form.contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 16px 0;
  margin-bottom: 40px;
  border: none;
  border-bottom: 1px solid var(--border-solid);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  background: transparent;
  color: var(--ink);
  transition: all 0.6s var(--bezier-smooth);
  border-radius: 0;
}

form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--bg-sage);
  background-color: var(--bg-alt);
}

form.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

#form-submit {
  width: 100%;
  padding: 20px;
  font-size: 1rem;
  margin-top: 16px;
}

.form-status {
  font-size: 1rem;
  margin-top: -16px;
  margin-bottom: 24px;
}

.form-status.ok {
  color: var(--bg-sage);
}

.form-status.err {
  color: #A04030;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .contact-info {
    padding-right: 0;
  }

  form.contact-form {
    padding: 40px 5vw;
  }
}

/* ================== FOOTER ================== */
footer {
  padding: 80px 0;
  background-color: var(--bg-sage);
  color: #fff;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.95rem;
}

#footer-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--accent-gold);
}

#footer-text {
  color: rgba(255, 255, 255, 0.7);
}

#footer-email {
  color: #fff;
  transition: color 0.6s var(--bezier-smooth);
}

#footer-email:hover {
  color: var(--accent-clay);
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.6s var(--bezier-smooth), transform 0.6s var(--bezier-smooth);
}

.admin-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-link:hover,
.admin-link:focus-visible {
  color: var(--accent-gold);
  transform: rotate(18deg);
}

@media (max-width: 600px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}

/* ================== WHATSAPP ================== */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(28, 42, 35, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(28, 42, 35, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(28, 42, 35, 0);
  }
}

.wa-float {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 90;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-ambient);
  transition: all 0.8s var(--bezier-smooth);
  animation: pulseGlow 4s infinite;
}

.wa-float:hover {
  transform: translate3d(0, -8px, 0) scale(1.05);
  box-shadow: var(--shadow-hover);
  background-color: var(--ink);
  animation: none;
}

.wa-float svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 768px) {
  .wa-float {
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
  }

  .wa-float svg {
    width: 30px;
    height: 30px;
  }
}

/* ================== LOGO ================== */
#brand-logo {
  display: block;
  height: 64px;
  width: 64px;
}

/* ================== REVEAL ANIMATIONS ================== */
.reveal-up {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 1s var(--bezier-smooth), transform 1s var(--bezier-smooth);
  will-change: opacity, transform;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s var(--bezier-smooth);
  will-change: opacity;
}

.is-visible.reveal-up,
.is-visible.reveal-fade,
.is-visible .reveal-up,
.is-visible .reveal-fade {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}