/* ═══════════════════════════════════════════════════════════════
   ILUMINAR — Novo Site Institucional
   Design System + Estilos Completos
   Paleta: Bege #EAE0D5 · Marrom #8E6F51 · Branco · Escuro #3D2E1E
   ═══════════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Mulish:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── CSS VARIABLES (DESIGN TOKENS) ─── */
:root {
  /* Colors */
  --primary: #8E6F51;
  --primary-dark: #7A5E44;
  --primary-light: #A8896D;
  --secondary: #3D2E1E;
  --bg-main: #EAE0D5;
  --bg-light: #F5F0EB;
  --bg-white: #FFFFFF;
  --bg-cream: #F8F4EF;
  --text-dark: #3D2E1E;
  /* Refined brown, lighter than black */
  --text-body: #4A3D32;
  --text-muted: #8A7B6C;
  --text-light: #B5A898;
  --accent-gold: #C9A96E;
  --accent-warm: #D4A574;
  --border-soft: rgba(142, 111, 81, 0.15);
  --border-medium: rgba(142, 111, 81, 0.25);

  /* Typography */
  --font-display: 'Poppins', -apple-system, sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Mulish', -apple-system, sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-narrow: 900px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 48px;
  --gap-xl: 80px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(61, 46, 30, 0.06);
  --shadow-medium: 0 8px 40px rgba(61, 46, 30, 0.10);
  --shadow-elevated: 0 16px 56px rgba(61, 46, 30, 0.14);
  --shadow-glow: 0 0 40px rgba(142, 111, 81, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-smooth);
}

ul,
ol {
  list-style: none;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

/* ─── LAYOUT ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title h2 span {
  color: var(--primary);
}

.section-title p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--duration-normal) var(--ease-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(234, 224, 213, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(61, 46, 30, 0.08);
}

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

.nav-logo img {
  height: 44px;
  transition: height var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled .nav-logo img {
  height: 36px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.navbar:not(.scrolled) .nav-links a {
  color: white;
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.navbar.scrolled .nav-links a.nav-cta {
  color: white;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar.scrolled .nav-links a::after {
  background: var(--primary);
}

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

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--duration-fast) var(--ease-smooth) !important;
  letter-spacing: 0.01em;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(142, 111, 81, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border-soft);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-fast) var(--ease-smooth);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 16px !important;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: stroke var(--duration-fast);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary) !important;
}

.nav-dropdown-menu a:hover svg {
  stroke: var(--primary-dark);
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-main);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 120px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.hero-text {
  color: white;
  max-width: 440px;
  width: 100%;
  align-self: flex-end;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.hero-text h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-text h1 span {
  color: var(--accent-warm);
}

/* Hero Form */
.hero-form-wrapper {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(142, 111, 81, 0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 8px 40px rgba(61, 46, 30, 0.08);
  max-width: 440px;
  width: 100%;
}

.hero-form-wrapper h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 4px;
  text-align: center;
}

.hero-form-wrapper .form-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-smooth);
  outline: none;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-field select option {
  background: var(--secondary);
  color: white;
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Hero Bottom */
.hero-bottom {
  max-width: 440px;
  width: 100%;
}

.hero-bottom .hero-sub {
  font-size: 0.85rem;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Parto Conditional Fields */
.parto-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    opacity: 1;
    max-height: 300px;
  }
}

.field-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
}

/* Footer Colored Logo */
.footer-logo-color {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.cta-button.cta-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.cta-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.cta-secondary:hover {
  background: var(--primary);
  color: white;
}

.urgency-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.urgency-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #e8725a;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* ─── CREDIBILITY BAR ─── */
.credibility-bar {
  background: var(--bg-white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border-soft);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  text-align: center;
}

.credibility-item {
  padding: 8px;
}

.credibility-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.credibility-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── SERVICE CARDS ─── */
.services-section {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

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

.service-card-image {
  height: 260px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 28px 24px;
}

.service-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .price-from {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--duration-fast) var(--ease-smooth);
}

.service-card:hover .card-link {
  gap: 12px;
}

/* ─── EMOTIONAL SECTION ─── */
.emotional-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.emotional-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.emotional-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emotional-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.emotional-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 0 24px;
  margin: 0 auto 0 calc((100% - var(--container-max)) / 2 + 24px);
}

.emotional-content h2 {
  margin-bottom: 20px;
}

.emotional-content p {
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-style: italic;
  color: var(--text-body);
}

.emotional-content p:last-of-type {
  font-weight: 600;
  font-style: normal;
}

/* ─── VIDEO MANIFESTO ─── */
.manifesto-section {
  background: var(--bg-white);
  padding: var(--section-padding);
}

.manifesto-content {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── DIFFERENTIALS ─── */
.differentials-section {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.diff-card {
  background: var(--bg-white);
  border-radius: 40px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-light);
}

.diff-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(142, 111, 81, 0.12);
  position: absolute;
  top: 16px;
  right: 24px;
}

.diff-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4EDE6;
  border-radius: 50%;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(142, 111, 81, 0.1);
}

.diff-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.diff-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.diff-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--bg-main);
  padding: var(--section-padding);
}

.testimonial-featured {
  max-width: 700px;
  margin: 0 auto var(--gap-lg);
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-soft);
  position: relative;
}

.testimonial-featured::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
}

.testimonial-featured blockquote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-featured cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border-soft);
  transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-card .testimonial-text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.65;
}

.testimonial-card .testimonial-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
}

.google-rating {
  text-align: center;
  margin-top: 40px;
  padding: 16px 32px;
  background: var(--bg-white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-soft);
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.google-rating strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* ─── GALLERY ─── */
.gallery-section {
  background: var(--bg-white);
  padding: var(--section-padding);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  transition: all var(--duration-normal) var(--ease-out);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ─── ABOUT / TEAM ─── */
.about-section {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

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

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.about-stat {
  text-align: center;
}

.about-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.about-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── GALLERY SLIDER ─── */
.gallery-slider-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.gallery-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 24px 30px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 auto;
  height: 480px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  scroll-snap-align: center;
  transition: transform 0.4s ease;
}

.gallery-slide:hover {
  transform: translateY(-10px);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .gallery-slide {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .gallery-slide {
    height: 340px;
  }
}

@media (max-width: 600px) {
  .gallery-slide {
    flex: 0 0 85%;
    height: 380px;
  }
}

/* ─── COMO FUNCIONA (Steps) ─── */
.how-it-works-section {
  padding: var(--section-padding);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-medium) var(--ease-smooth);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ─── SERVICE DETAILS (alternating layout) ─── */
.services-overview {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-soft);
}

.service-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 48px;
  padding-bottom: 0;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse>* {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.service-detail-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.service-detail:hover .service-detail-image img {
  transform: scale(1.03);
}

.service-detail-content {
  padding: 16px 0;
}

.service-detail-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin: 12px 0 16px;
}

.service-detail-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.service-includes li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-body);
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ─── ADDITIONAL SERVICES ─── */
.additional-services {
  margin-top: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--border-soft);
}

.additional-services h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 32px;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.additional-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-medium) var(--ease-smooth);
}

.additional-card:hover {
  transform: translateY(-4px);
}

.additional-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.additional-card-content {
  padding: 20px;
}

.additional-card-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.additional-card-content p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ─── COMBO OVERVIEW ─── */
.combos-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.combo-overview-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform var(--duration-medium) var(--ease-smooth),
    background var(--duration-medium) var(--ease-smooth);
}

.combo-overview-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.combo-overview-card.featured {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
}

.combo-overview-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 8px;
}

.combo-overview-card .subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.combo-overview-card p:not(.subtitle) {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ─── ALBUM OVERVIEW ─── */
.album-overview {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.album-features {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.album-features .service-includes {
  text-align: left;
  margin-bottom: 32px;
}

.album-features .cta-button {
  display: inline-block;
}

/* ─── PRICING CARDS ─── */
.pricing-section {
  padding: var(--section-padding);
}

.pricing-section.bg-cream {
  background: var(--bg-cream);
}

.pricing-section.bg-white {
  background: var(--bg-white);
}

.pricing-section.bg-main {
  background: var(--bg-main);
}

.pricing-section.bg-primary {
  background: var(--secondary);
}

.pricing-section.bg-primary .section-title h2,
.pricing-section.bg-primary .section-title p {
  color: white;
}

.pricing-section.bg-primary .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-md);
}

.price-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.price-card .subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.price-cash {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.discount-tag {
  background: rgba(142, 111, 81, 0.1);
  color: var(--primary);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
}

.price-card ul {
  margin-bottom: 24px;
  flex: 1;
}

.price-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.price-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card .cta-button {
  margin-top: auto;
}

/* ─── COMBOS SECTION ─── */
.combos-section {
  background: var(--secondary);
  padding: var(--section-padding);
}

.combos-section .section-title h2 {
  color: white;
}

.combos-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.combo-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.combo-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.combo-card .subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.combo-card .price-value {
  color: white;
}

.combo-card .price-cash {
  color: rgba(255, 255, 255, 0.6);
}

.combo-card ul li {
  color: rgba(255, 255, 255, 0.85);
}

.combo-card ul li::before {
  color: var(--accent-gold);
}

.combo-card.featured {
  border-color: var(--accent-gold);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.15);
}

.economy-tag {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-smooth);
  font-size: 0.8rem;
  color: var(--primary);
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* ─── CTA FINAL ─── */
.cta-final {
  background: var(--bg-main);
  padding: var(--section-padding);
  text-align: center;
}

.cta-final-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border-soft);
}

.cta-final-box h2 {
  margin-bottom: 12px;
}

.cta-final-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-final-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-final-form input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.cta-final-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(142, 111, 81, 0.1);
  background: var(--bg-white);
}

.cta-final-form input::placeholder {
  color: var(--text-light);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: 48px;
}

.footer-brand img {
  height: auto;
  width: 140px;
  max-width: 100%;
  margin-bottom: 24px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color var(--duration-fast);
}

.footer-col a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  fill: white;
  width: 28px;
  height: 28px;
}

/* ─── EMOTIONAL BANNER (video strip) ─── */
.emotional-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.emotional-banner video,
.emotional-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emotional-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.emotional-banner .banner-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}

/* ─── DIFFERENTIALS SLIDER ─── */
.differentials-slider-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: white;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.differentials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.differentials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.differentials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.differentials-slider-section h2 {
  color: white;
  margin-bottom: 2rem;
  max-width: 800px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.differentials-slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.diff-slider-track {
  display: grid;
  width: 100%;
}

.diff-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diff-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  visibility: visible;
}

.diff-slide h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.diff-slide p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.diff-arrow {
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 10;
}

.diff-arrow:hover {
  transform: scale(1.2);
}

.diff-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.diff-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.diff-dot.active {
  background: white;
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 140px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 24px;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s var(--ease-out);
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile Hero */
  .hero {
    min-height: auto;
  }

  .hero-media img,
  .hero-media video {
    object-position: 70% center;
  }

  .hero-content {
    padding: 30px 20px 40px;
    /* Reduced top padding to move text much higher */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    min-height: 100vh;
  }

  .hero-text {
    align-self: center;
    max-width: 100%;
    margin-bottom: 0;
    z-index: 10;
  }

  .hero-text h1 {
    font-size: 1.1rem;
    /* Smaller to guarantee single line */
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
    max-width: 100%;
    margin: 0 auto;
    white-space: nowrap;
  }

  .hero-text h1 span {
    color: #D4A574;
    display: inline;
    margin-left: 4px;
    font-size: 1.1rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    /* Significantly reduced eyebrow size */
    line-height: 1.5;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: block;
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .hero-form-wrapper {
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    width: 100%;
    max-width: 380px;
  }

  .hero-form-wrapper h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .hero-form-wrapper .form-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.9;
  }

  .form-field input,
  .form-field select {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px 20px;
  }

  .hero-bottom {
    margin-top: 20px;
  }

  .hero-bottom .hero-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: none;
    font-weight: 500;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Mobile Grids */
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .service-detail-image img {
    height: 240px;
  }

  .additional-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .combos-overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-item {
    height: 180px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Mobile Emotional */
  .emotional-overlay {
    background: rgba(234, 224, 213, 0.88);
  }

  .emotional-content {
    margin: 0 auto;
    text-align: center;
  }

  .emotional-banner {
    height: 200px;
  }

  .cta-final-box {
    padding: 40px 24px;
  }

  /* Custom Mobile Hero Background */
  .hero-media img#heroMedia {
    content: url('assets/imgs/fundo-celular.jpg');
    object-position: center bottom;
    /* Move image down to keep face away from top text */
  }

  .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.5) 100%);
  }
}

@media (max-width: 480px) {
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }
}