/* ============================================
   DESIGN TOKENS (Premium V2)
   ============================================ */
:root {
  /* Colors - Softer Palette */
  --coral: #E8725C;
  --coral-light: #FDECE8;
  --coral-soft: #fff5f2;
  --teal: #3A9D97;
  --teal-light: #E6F3F2;
  --teal-dark: #2F7C77;
  --coral-dark: #D15B45; /* Fixed missing variable */

  /* Vibrant Journey Palette */
  --yellow: #E79B3D;
  --yellow-light: #FFF3E0;
  --blue: #4A8CBA;
  --blue-light: #E8F2F8;
  --purple: #9D61D5;
  --purple-light: #F3EAFB;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FAF9F8; /* Soft background */
  --sand: #F2EFE9;
  --charcoal: #2A2C2B;
  --warm-gray: #6B6D6C;

  /* Typography */
  --font-display: 'Quicksand', -apple-system, sans-serif;
  --font-body: 'Quicksand', -apple-system, sans-serif;
  
  --fs-hero: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.4rem, 2vw, 1.8rem);
  --fs-lead: clamp(1.1rem, 1.5vw, 1.25rem);
  --fs-base: 1rem;
  --fs-small: 0.9rem;

  /* Weights */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 600;
  --fw-black: 700;

  /* Spacing - Expanded for premium breathing room */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Borders - Organic Soft */
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.5rem; /* Extra soft */
  --radius-full: 999px;

  /* Shadows - Diffused */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.04);
  --shadow-float: 0 20px 50px rgba(58, 157, 151, 0.1);

  /* Animation */
  --duration-slow: 0.8s;
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
  font-weight: var(--fw-medium);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
}

.section {
  padding: var(--space-xl) 0;
}

.mt-xl { margin-top: var(--space-xl); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

p {
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
}

.kicker {
  display: inline-block;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-bold);
  color: var(--teal);
  margin-bottom: var(--space-sm);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
  text-align: center;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coral-dark);
}

.btn-secondary {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 0.8rem 1.8rem;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all 0.3s var(--ease-soft);
}

.header.scrolled {
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-img {
  height: 60px;
  width: auto;
  transition: transform 0.3s var(--ease-soft);
}

.header-logo-img:hover {
  transform: scale(1.04);
}

/* Playful SVG Elements */
.svg-deco {
  position: absolute;
  width: 32px;
  height: 32px;
  opacity: 0.6;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .svg-deco {
    opacity: 0.15; /* Make them very subtle on mobile so they don't hurt readability if they overlap */
  }
  .svg-deco.floating-star { display: none; } /* Hide some completely to reduce clutter */
}
.deco-hero-1 {
  top: 15%;
  left: 5%;
  width: 48px;
  height: 48px;
  animation: floatPlayful 6s ease-in-out infinite;
}

.deco-hero-2 {
  bottom: 15%;
  right: 8%;
  width: 40px;
  height: 40px;
  animation: pulseRotate 5s ease-in-out infinite alternate-reverse;
}

.deco-filo-1 {
  top: 20%;
  right: 15%;
  width: 50px;
  height: 50px;
  animation: floatPlayful 7s ease-in-out infinite alternate;
}

.deco-filo-2 {
  bottom: 20%;
  left: 10%;
  width: 38px;
  height: 38px;
  animation: pulseRotate 6s ease-in-out infinite 2s;
}

.deco-jor-1 {
  top: 10%;
  left: 8%;
  width: 44px;
  height: 44px;
  animation: pulseRotate 5s ease-in-out infinite alternate;
}

.deco-jor-2 {
  bottom: 30%;
  right: 5%;
  width: 52px;
  height: 52px;
  animation: floatPlayful 8s ease-in-out infinite 1s;
}

@keyframes floatPlayful {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes pulseRotate {
  0% { transform: scale(1) rotate(0deg); opacity: 0.5; }
  100% { transform: scale(1.1) rotate(15deg); opacity: 0.8; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a:not(.btn) {
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-links a:not(.btn):hover {
  color: var(--teal);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--coral);
  border-radius: 3px;
  transition: width 0.3s var(--ease-soft);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-soft);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-logo-img { height: 48px; }
}

/* ============================================
   BENTO HERO SECTION
   ============================================ */
.hero {
  padding-top: 8rem;
  padding-bottom: var(--space-md);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Hero Extra Decos */
/* Classes already defined in global section */

.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.bento-box {
  background: var(--sand);
  border-radius: var(--radius-xl);
  padding: 3rem;
  overflow: hidden;
  position: relative;
}

.bento-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-soft {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  color: var(--teal);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  margin-bottom: 2rem;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: var(--fs-hero);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: var(--fs-lead);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.bento-image {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding: 0;
  aspect-ratio: 4/3;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-accent {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
}

.bento-stat {
  display: flex;
  flex-direction: column;
}

.bento-stat .stat-number {
  font-size: 3rem;
  font-weight: var(--fw-black);
  color: var(--coral);
  line-height: 1;
}

.bento-stat .stat-label {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  margin-top: 0.5rem;
  line-height: 1.3;
}

.bento-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.bento-icon svg {
  width: 40px;
}

@media (max-width: 900px) {
  .hero { padding-top: 6rem; }
  .hero-bento { grid-template-columns: 1fr; }
  .bento-main { grid-column: 1; grid-row: auto; padding: 2rem; }
  .bento-image { grid-column: 1; grid-row: auto; border-radius: var(--radius-lg); }
  .bento-accent { grid-column: 1; grid-row: auto; border-radius: var(--radius-lg); padding: 2rem; }
}

/* ============================================
   A FILOSOFIA (EDITORIAL FOCUS)
   ============================================ */
.filosofia {
  background: var(--cream);
  text-align: center;
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* Filosofia Decos */
/* Classes already defined in global section */

.editorial-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--teal-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.editorial-text {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.editorial-text strong {
  color: var(--coral);
}

/* ============================================
   A EXPERIÊNCIA (ORGANIC LAYOUTS)
   ============================================ */
.experiencia {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.organic-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.organic-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.organic-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.5rem;
}

.organic-text p {
  font-size: var(--fs-lead);
  margin-bottom: 2rem;
}

.soft-list {
  list-style: none;
}

.soft-list li {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.soft-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50%;
  font-size: 0.9rem;
}

.organic-shape {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: translateZ(0); /* Force hardware acceleration */
}

.organic-shape img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-soft);
}

.organic-shape:hover img {
  transform: scale(1.05);
}

.organic-shape.alt-shape {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@keyframes morph {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes morph-alt {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@media (max-width: 900px) {
  .organic-grid, .organic-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .organic-grid.reverse .organic-image-wrap {
    order: -1;
  }
  .organic-shape img { height: 350px; }
}

/* ============================================
   JORNADA DA VIDA (TIMELINE CARDS)
   ============================================ */
.jornada {
  background: var(--cream);
  padding: var(--space-xl) 0;
  position: relative;
}

/* Jornada Decos */
/* Classes already defined in global section */

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: var(--fs-lead);
}

.timeline-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.time-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}

.time-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.cute-frame {
  width: 75px;
  height: 75px;
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease-soft);
  position: relative;
}

.cute-frame::before {
  content: '';
  position: absolute;
  top: -6px; bottom: -6px; left: -6px; right: -6px;
  border: 2px dashed currentColor;
  border-radius: 50% 40% 60% 40% / 40% 60% 40% 50%;
  opacity: 0.3;
  animation: spinSlow 20s linear infinite;
  pointer-events: none;
}

@keyframes spinSlow {
  100% { transform: rotate(360deg); }
}

.cute-svg {
  width: 45px;
  height: 45px;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.time-card:hover .cute-frame {
  transform: scale(1.05) rotate(5deg);
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 40%;
}

.time-card:hover .cute-svg {
  transform: scale(1.15) translateY(-3px);
}

.phase-1 .cute-frame { background: var(--purple-light); color: var(--purple); }
.phase-1 .time-badge { background: var(--purple-light); color: var(--purple); }

.phase-2 .cute-frame { background: var(--coral-light); color: var(--coral); }
.phase-2 .time-badge { background: var(--coral-light); color: var(--coral); }

.phase-3 .cute-frame { background: var(--yellow-light); color: var(--yellow); }
.phase-3 .time-badge { background: var(--yellow-light); color: var(--yellow); }

.phase-4 .cute-frame { background: var(--blue-light); color: var(--blue); }
.phase-4 .time-badge { background: var(--blue-light); color: var(--blue); }

.time-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.time-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.time-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.emergency-banner {
  background: var(--coral-dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.emergency-banner h4 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.emergency-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Custom Emergency Button */
.btn-emergency {
  background: var(--white);
  color: var(--coral-dark);
  padding: 0.6rem 2rem 0.6rem 0.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-full);
}

.btn-emergency .icon-circle {
  width: 50px;
  height: 50px;
  background: var(--coral-light);
  color: var(--coral-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.btn-emergency .icon-circle::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--coral-light);
  animation: pulseEmergency 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseEmergency {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.btn-emergency .phone-icon {
  width: 24px;
  height: 24px;
  animation: jigglePhone 2s infinite ease-in-out;
}

@keyframes jigglePhone {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70% { transform: rotate(-15deg); }
  20%, 40%, 60% { transform: rotate(15deg); }
  80%, 90% { transform: rotate(0deg); }
}

.btn-emergency .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-emergency .btn-text strong {
  font-size: 1.3rem;
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
}

.btn-emergency .btn-text span {
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-emergency:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-5px);
}

.btn-emergency:hover .icon-circle {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-emergency:hover .icon-circle::after {
  display: none;
}

@media (max-width: 900px) {
  .timeline-cards { grid-template-columns: 1fr; }
  .time-card { padding: 2rem; border-radius: var(--radius-lg); }
  .emergency-banner { flex-direction: column; text-align: center; padding: 2rem; border-radius: var(--radius-lg); }
}

/* ============================================
   DRA. RITA (EDITORIAL PROFILE)
   ============================================ */
.autoridade {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 5rem;
  align-items: center;
}

.ed-image img {
  border-radius: 1rem 1rem 10rem 1rem; /* Organic portrait */
  width: 100%;
  box-shadow: var(--shadow-card);
}

.ed-content h2 {
  font-size: var(--fs-hero);
  margin-bottom: 1rem;
}

.crm-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.ed-content p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.ed-signature {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--coral);
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ed-image img { border-radius: 2rem; }
}

/* ============================================
   DEPOIMENTOS MINIMALISTAS
   ============================================ */
.depoimentos {
  background: var(--teal-dark);
  color: var(--white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.quote-slider {
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  width: 48px;
  fill: var(--teal-light);
  opacity: 0.4;
  margin-bottom: 2rem;
}

.quote-slide blockquote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  margin-bottom: 3rem;
  color: var(--white);
}

.author-info strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.author-info span {
  font-size: 0.95rem;
  color: var(--teal-light);
  opacity: 0.8;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.cta-box {
  background: var(--sand);
  border-radius: var(--radius-xl);
  padding: 5rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: var(--fs-lead);
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .cta-box { padding: 3rem 1.5rem; border-radius: var(--radius-lg); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--white);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 2rem;
  max-width: 300px;
  font-size: 1rem;
}

.footer-logo-img {
  width: 180px;
  height: auto;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--warm-gray);
  font-weight: var(--fw-medium);
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  color: var(--warm-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--teal);
  font-weight: var(--fw-bold);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--sand);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--warm-gray);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--charcoal);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  transition: all 0.3s;
}

.footer-socials a svg {
  width: 16px;
}

.footer-socials a:hover {
  background: var(--teal);
  color: white;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
  z-index: 1000;
  transition: transform 0.3s var(--ease-soft);
}

.whatsapp-float svg {
  width: 34px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

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

@media (max-width: 480px) {
  .hero-bento h1 { font-size: 2.2rem; }
  .bento-image img { height: 300px; }
  .cute-frame { width: 60px; height: 60px; }
  .cute-svg { width: 35px; height: 35px; }
}

/* ============================================
   ANIMATIONS & REVEALS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-soft), transform var(--duration-slow) var(--ease-soft);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Disable animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
