/* ============================================
ODONTO GRAVES - Design System v2.0
Complete Redesign - Modern & Premium
============================================ */

/* --- ROOT VARIABLES --- */
:root {
  /* Brand Colors */
  --bg-dark: #595959;
  --bg-darker: #3d3d3d;
  --primary: #C7A899;
  --primary-dark: #a88e7f;
  --accent-light: #E2CFC7;
  --text-light: #EAE6DF;
  --text-muted: #6b7280;
  --dark-text: #444444;
  --white: #ffffff;
  --light-bg: #f8f6f4;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #C7A899 0%, #E2CFC7 100%);
  --gradient-dark: linear-gradient(180deg, #595959 0%, #3d3d3d 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Typography */
  --font-heading: 'Tenor Sans', Georgia, serif;
  --font-body: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(199, 168, 153, 0.4);

  /* Borders (rounded system: 2rem -> 3rem) */
  --radius-2xl: 2rem;
  --radius-2_5xl: 2.5rem;
  --radius-3xl: 3rem;
  --radius-sm: var(--radius-2xl);
  --radius-md: var(--radius-2_5xl);
  --radius-lg: var(--radius-2_5xl);
  --radius-xl: var(--radius-3xl);
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --container-max: 1200px;
  --section-py: 100px;
  --section-py-mobile: 60px;

  /*
   Blog image standard (all blog posts):
   Card image: 1200x660 px
   Hero image: 1920x1080 px
  */
  --blog-card-export-width: 1200;
  --blog-card-export-height: 660;
  --blog-card-aspect-ratio: 1200 / 660;
  --blog-card-image-position: center 32%;
  --blog-hero-export-width: 1920;
  --blog-hero-export-height: 1080;
  --blog-hero-image-position: center 30%;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}


body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
/* --- TEXTURA GLOBAL (NOISE OVERLAY) --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
  opacity: 0.05;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--dark-text);
  opacity: 0.8;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- HUGEICONS GLOBAL STANDARD --- */
:root {
  --hgi-icon-opacity: 0.9;
  --hgi-icon-after-opacity: 0.22;
}

i.hgi-stroke {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1;
  vertical-align: middle;
  font-weight: 300 !important;
  opacity: var(--hgi-icon-opacity);
  text-rendering: geometricPrecision;
  transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

i.hgi-stroke::before,
i.hgi-stroke::after {
  display: block;
  line-height: 1;
}

i.hgi-stroke::after {
  opacity: var(--hgi-icon-after-opacity);
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Rounded utility scale (tailwind-like) */
.rounded-\[2rem\] {
  border-radius: var(--radius-2xl) !important;
}

.rounded-\[2\.5rem\] {
  border-radius: var(--radius-2_5xl) !important;
}

.rounded-\[3rem\] {
  border-radius: var(--radius-3xl) !important;
}

/* Global rounded system for layout containers/surfaces */
:where(.container, [class*="container"], [class*="wrapper"], [class*="panel"], [class*="card"]) {
  border-radius: var(--radius-lg);
}

.section {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-light {
  background: var(--light-bg);
}

/* --- GLASSMORPHISM CARD (PRO MAX UPGRADE) --- */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  /* Ultra subtle base */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Delicate frost border */
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Smooth spring-like transition */
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* --- MVV CARDS (PRO MAX) --- */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(199, 168, 153, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Subtle shimmer overlay on hover */
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(199, 168, 153, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.mvv-card:hover::before {
  left: 100%;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(199, 168, 153, 0.2),
    0 0 0 1px rgba(199, 168, 153, 0.3);
}

/* Icon container */
.mvv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(199, 168, 153, 0.3);
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(199, 168, 153, 0.4);
}

.mvv-icon i {
  transition: transform 0.4s ease;
}

.mvv-card:hover .mvv-icon i {
  transform: scale(1.15);
}

/* Title */
.mvv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 1rem;
  position: relative;
}

/* Description */
.mvv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px), (max-device-width: 768px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

/* --- TEAM CARDS (PRO MAX) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(199, 168, 153, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(199, 168, 153, 0.2),
    0 0 0 1px rgba(199, 168, 153, 0.3);
}

/* Photo container with glow effect */
.team-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 4px;
  background: var(--gradient-primary);
  box-shadow: 0 8px 25px rgba(199, 168, 153, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(199, 168, 153, 0.4);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.03);
}

/* Name */
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

/* Role */
.team-role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Specialty */
.team-specialty {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* CRO */
.team-cro {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}

/* --- GOOGLE BUTTON (PRO MAX) --- */
.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  background: var(--white);
  color: var(--dark-text);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn-google:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
  background: var(--white);
}

.btn-google svg {
  transition: transform 0.4s ease;
}

.btn-google:hover svg {
  transform: rotate(15deg) scale(1.1);
}

/* Shine effect on hover */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(199, 168, 153, 0.3);
  /* Accent color hint */
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.glass-card:hover h4 {
  color: var(--accent-light) !important;
}

.glass-card i {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover i {
  transform: scale(1.15) rotate(5deg);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- HORIZONTAL EXPANDING ACCORDION CARDS --- */
.services-accordion {
  display: flex;
  gap: 0.35rem;
  width: 100%;
  height: 300px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  --expand-panel-width: clamp(210px, 40%, 300px);
  --expand-duration: 0.6s;
  --expand-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Each card */
.expand-card {
  position: relative;
  display: block;
  flex: 1 1 0%;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none !important;
  min-width: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  container-type: inline-size;
  transition: flex var(--expand-duration) var(--expand-ease);
}

.expand-card:hover,
.expand-card:focus-visible {
  flex: 2 1 0%;
}

/* --- IMAGE SIDE (always visible, fills card) --- */
.expand-image-side {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: auto;
}

.expand-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--expand-duration) var(--expand-ease);
}

.expand-card:hover .expand-image-side img,
.expand-card:focus-visible .expand-image-side img {
  transform: scale(1.04);
}

/* Subtle bottom gradient over image for title readability */
.expand-image-side .expand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.15) 45%,
      transparent 100%);
  z-index: 1;
}

/* Title centered at bottom of image ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â font scales to card width via cqi */
.expand-title {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  text-align: center;
  color: var(--white);
  font-size: clamp(0.55rem, 8cqi, 1.15rem);
  font-weight: 700;
  margin: 0;
  z-index: 4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow-wrap: anywhere;
  transition:
    left var(--expand-duration) var(--expand-ease),
    right var(--expand-duration) var(--expand-ease),
    transform var(--expand-duration) var(--expand-ease);
}

.expand-card:hover .expand-title,
.expand-card:focus-visible .expand-title {
  /* Reserve the panel area to avoid clipping on the right side */
  left: 1.5rem;
  right: calc(var(--expand-panel-width) + 1rem);
  transform: translateX(0);
  width: calc(100% - var(--expand-panel-width) - 2.5rem);
  max-width: calc(100% - var(--expand-panel-width) - 2.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

/* --- TEXT PANEL (hidden, slides in from right on hover) --- */
.expand-panel {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  width: var(--expand-panel-width);
  max-width: calc(100% - 1.1rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  transform: translateX(calc(100% + 0.5rem));
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
  transition:
    transform var(--expand-duration) var(--expand-ease),
    opacity var(--expand-duration) var(--expand-ease);
}

.expand-panel>* {
  transform: translateX(10px);
  opacity: 0;
  transition:
    transform var(--expand-duration) var(--expand-ease),
    opacity var(--expand-duration) var(--expand-ease);
}

.expand-card:hover .expand-panel,
.expand-card:focus-visible .expand-panel {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.expand-card:hover .expand-panel>*,
.expand-card:focus-visible .expand-panel>* {
  transform: translateX(0);
  opacity: 1;
}

/* Header: subtitle + arrow */
.expand-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: auto;
}

.expand-header h4 {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.96rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.32;
  white-space: normal;
  text-transform: none;
  letter-spacing: 0;
}

.expand-arrow {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    background 0.34s ease,
    border-color 0.34s ease,
    transform 0.34s var(--expand-motion-ease);
}

.expand-arrow i {
  font-size: 1.15rem;
}

.expand-card:hover .expand-arrow,
.expand-card:focus-visible .expand-arrow {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

/* Panel description text */
.expand-panel p {
  color: rgba(247, 251, 255, 0.9);
  font-size: 0.78rem;
  line-height: 1.42;
  margin: 0;
  margin-top: 1rem;
}

/* ---- MOBILE / TABLET ---- */
@media (max-width: 899px) {
  .services-accordion {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .expand-card {
    position: relative;
    display: flex;
    flex: none;
    height: auto;
    min-height: 300px;
    flex-direction: column;
  }

  /* On mobile, don't expand on hover */
  .expand-card:hover {
    flex: none;
    transform: none;
  }

  .expand-image-side {
    position: relative;
    inset: auto;
    height: 250px;
    flex: none;
    transform: none !important;
  }

  .expand-title {
    font-size: 1.2rem;
    bottom: 1rem;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 100%;
    max-width: 100%;
  }

  /* Don't move the title on mobile hover */
  .expand-card:hover .expand-title,
  .expand-card:focus-visible .expand-title {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

  /* Panel always visible on mobile, stacked below image */
  .expand-panel {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    flex: none;
    width: 100%;
    max-width: 100%;
    transform: none !important;
    opacity: 1;
    padding: 1.5rem;
    pointer-events: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: rgba(17, 36, 63, 0.68);
  }

  .expand-panel>* {
    transform: none;
    opacity: 1;
  }

  .expand-header h4 {
    font-size: 0.95rem;
  }

  .expand-panel p {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .expand-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}

/* --- GLASS CARD IMAGE (PRO MAX) --- */
/* Variation for cards with images (Services) */
.glass-card-image {
  background: rgba(255, 255, 255, 0.8);
  /* Slightly more opaque for legibility */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Contains the image */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glass-card-image:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-light);
}

.glass-card-image .service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.glass-card-image .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.glass-card-image:hover .service-image img {
  transform: scale(1.1);
}

.glass-card-image .service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Shine effect for Image Cards */
.glass-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
  pointer-events: none;
  z-index: 10;
}

.glass-card-image:hover::before {
  left: 100%;
}

/* Updated Testimonials to Glass Style */
.testimonial-card-new {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card-new:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

/* Connector Line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  /* Center with circle */
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  transition: transform 0.4s ease;
}

.process-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border: 2px solid var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

/* Number internal gradient text */
.process-circle span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-step h4 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--dark-text);
  opacity: 0.7;
  max-width: 220px;
  margin: 0 auto;
}

/* HOVER EFFECTS */
.process-step:hover {
  transform: translateY(-10px);
}

.process-step:hover .process-circle {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 0 25px rgba(199, 168, 153, 0.6);
  transform: scale(1.1);
}

.process-step:hover .process-circle span {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

.process-step:hover h4 {
  color: var(--primary);
}

/* MOBILE */
@media (max-width: 991px) {
  .process-timeline {
    flex-direction: column;
    gap: 3rem;
  }

  .process-timeline::before {
    top: 50px;
    bottom: 50px;
    left: 50%;
    width: 2px;
    height: auto;
    right: auto;
    transform: translateX(-50%);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* --- MAGNETIC BUTTON (PRO MAX) --- */
.magnetic-btn {
  z-index: 1;
}

.magnetic-btn.btn {
  /* Override default btn transitions that conflict with GSAP */
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.magnetic-btn.btn::after {
  display: none;
  /* Remove default sliding shine effect */
}

.magnetic-btn:hover {
  transform: none !important;
  /* GSAP translates x/y instead */
}

.magnetic-btn .btn-text {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

/* Adjust icons inside magnetic buttons */
.magnetic-btn .btn-text i {
  margin: 0;
  transition: transform 0.3s ease;
}

.magnetic-btn .btn-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  z-index: 0;
  pointer-events: none;
  transform: translateY(100%);
}

/* V1: Accent (Argila base, Creme fill) */
.magnetic-btn[data-variant="accent"] {
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 1px solid transparent !important;
}

.magnetic-btn[data-variant="accent"] .btn-text {
  color: var(--white);
}

.magnetic-btn[data-variant="accent"] .btn-fill {
  background: var(--accent-light);
}

.magnetic-btn[data-variant="accent"].is-hovered .btn-text {
  color: var(--dark-text);
}

/* V2: Light (Creme/White base, Dark fill) */
.magnetic-btn[data-variant="light"] {
  background: var(--white) !important;
  color: var(--dark-text) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.magnetic-btn[data-variant="light"] .btn-text {
  color: var(--dark-text);
}

.magnetic-btn[data-variant="light"] .btn-fill {
  background: var(--bg-dark);
}

.magnetic-btn[data-variant="light"].is-hovered .btn-text {
  color: var(--white);
}

/* V3: Primary (Dark base, Creme fill) */
.magnetic-btn[data-variant="primary"] {
  background: var(--bg-dark) !important;
  color: var(--white) !important;
  border: 1px solid transparent !important;
}

.magnetic-btn[data-variant="primary"] .btn-text {
  color: var(--white);
}

.magnetic-btn[data-variant="primary"] .btn-fill {
  background: var(--accent-light);
}

.magnetic-btn[data-variant="primary"].is-hovered .btn-text {
  color: var(--dark-text);
}

/* V4: Outline (Transparent base, White fill) */
.magnetic-btn[data-variant="outline"] {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.magnetic-btn[data-variant="outline"] .btn-text {
  color: var(--white);
}

.magnetic-btn[data-variant="outline"] .btn-fill {
  background: var(--white);
}

.magnetic-btn[data-variant="outline"].is-hovered .btn-text {
  color: var(--dark-text);
}

.magnetic-btn[data-variant="outline"]:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
}


.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(199, 168, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(199, 168, 153, 0.6), 0 0 60px rgba(199, 168, 153, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-dark:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: #2a2a2a;
  /* Slightly lighter for feedback */
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-dark i {
  transition: transform 0.3s ease;
}

.btn-dark:hover i {
  transform: translateX(5px);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(199, 168, 153, 0.1) 0%, rgba(199, 168, 153, 0.05) 100%);
  color: var(--primary);
  border: 2px solid var(--primary);
  position: relative;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(199, 168, 153, 0.4);
}

.btn-secondary i {
  transition: transform 0.3s ease;
}

.btn-secondary:hover i {
  transform: translateX(4px);
}

/* --- BADGES --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(199, 168, 153, 0.15);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- HEADER/NAV (Pill Navbar) --- */
.header {
  --pill-py: 1.2rem;
  /* py-4 */
  --pill-px: 1.5rem;
  /* px-6 */
  --pill-radius: 9999px;
  /* rounded-full */
  --pill-logo-h: 56px;
  --pill-transition: 0.5s ease-out;
  /* duration-500 ease-out */
  --nav-text-color: var(--primary);
  --nav-active-color: var(--primary);

  /* Initial Top State (bg-transparent border-transparent) */
  --pill-bg: transparent;
  --pill-blur: 0px;
  --pill-border: transparent;
  --pill-shadow: none;

  position: fixed;
  top: 1.5rem;
  /* top-6 */
  left: 50%;
  /* left-1/2 */
  transform: translate3d(-50%, 0, 0);
  /* Force hardware acceleration */
  isolation: isolate;
  /* Fix Chromium backdrop-filter visual glitches with positioned children */
  width: 90%;
  /* w-[90%] */
  max-width: 1024px;
  /* max-w-5xl */
  z-index: 1000;
  /* z-50 */

  border-radius: var(--pill-radius);
  background: var(--pill-bg);
  backdrop-filter: blur(var(--pill-blur));
  -webkit-backdrop-filter: blur(var(--pill-blur));
  border: 1px solid var(--pill-border);
  box-shadow: var(--pill-shadow);
  padding: var(--pill-py) var(--pill-px);

  transition:
    background var(--pill-transition),
    box-shadow var(--pill-transition),
    border-color var(--pill-transition),
    padding var(--pill-transition),
    backdrop-filter var(--pill-transition),
    -webkit-backdrop-filter var(--pill-transition);
}

/* Scrolled = Glassmorphic Light (The Morphing effect) */
.header.scrolled {
  /* Scrolled State (bg-white/60 backdrop-blur-md border-moss/10 text-moss shadow-sm) */
  --pill-py: 0.5rem;
  /* py-2 to make it smaller as suggested */
  --pill-bg: rgba(255, 255, 255, 0.6);
  /* bg-white/60 */
  --pill-blur: 12px;
  /* backdrop-blur-md */
  --pill-border: rgba(46, 64, 54, 0.1);
  /* border-moss/10 fallback, using same moss opacity for elegant look */
  --pill-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  /* shadow-sm */

  --nav-text-color: var(--dark-text);
  /* gray text */
  --nav-active-color: var(--dark-text);
  /* gray active tab */
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: var(--pill-logo-h) !important;
  width: auto !important;
  max-height: none !important;
  transition: height var(--pill-transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.78;
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.01em;
  transition: opacity 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  background: var(--white);
  border-radius: 1px;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Explicit overrides for scrolled state to ensure color change */
.header.scrolled .nav-link {
  color: var(--dark-text) !important;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary) !important;
}

.header.scrolled .nav-link::after {
  background: var(--primary) !important;
}

/* CTA button ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â specificity must beat .magnetic-btn[data-variant] (0,2,0) */
.nav-cta.magnetic-btn {
  padding: 0.6rem 1.3rem !important;
  font-size: 0.85rem !important;
  border-radius: var(--pill-radius) !important;
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 2px 12px rgba(199, 168, 153, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  white-space: nowrap;
}

.nav-cta.magnetic-btn .btn-text {
  color: var(--white) !important;
}

.nav-cta.magnetic-btn .btn-fill {
  background: var(--accent-light) !important;
}

.nav-cta.magnetic-btn.is-hovered .btn-text {
  color: var(--dark-text) !important;
}

.nav-cta.magnetic-btn:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 4px 20px rgba(199, 168, 153, 0.5), 0 0 30px rgba(199, 168, 153, 0.2) !important;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--nav-text-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: 130px;
  /* Prevent header overlap on short screens */
  padding-bottom: 100px;
  /* Prevent bottom edge touching on short screens */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  transform: scale(1.14);
  transform-origin: center center;
  will-change: transform, opacity, filter;
  filter: blur(10px) saturate(0.88);
  animation: heroBgReveal 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(89, 89, 89, 0.95) 0%, rgba(89, 89, 89, 0.7) 100%);
  will-change: opacity;
  opacity: 0.96;
  animation: heroOverlayReveal 1.8s ease-out 0.1s both;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  perspective: 1200px;
}

.hero-badge {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(26px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
  animation: heroBadgeReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.08rem;
}

.hero-title-line-bright .hero-title-line-text {
  color: var(--white);
  white-space: nowrap;
}

.hero-title-line-bright .hero-title-line-text span {
  color: var(--white);
}

.hero-title-line-text {
  display: block;
  color: var(--accent-light);
  will-change: transform, opacity;
  transform-origin: center top;
  backface-visibility: hidden;
  padding-right: 0.08em;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translate3d(0, 82px, 0) skewY(2.4deg) scaleY(1.03);
  filter: none;
  animation: heroTitleReveal 1.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title > .hero-title-line:nth-of-type(1) .hero-title-line-text {
  animation-delay: 0.2s;
}

.hero-title > .hero-title-line:nth-of-type(2) .hero-title-line-text {
  animation-delay: 0.34s;
}

.hero-title > .hero-title-line:nth-of-type(3) .hero-title-line-text {
  animation-delay: 0.48s;
}

.hero-title > .hero-title-line:nth-of-type(4) .hero-title-line-text {
  animation-delay: 0.62s;
}

.hero-title span {
  color: var(--accent-light);
  position: relative;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 760px;
  opacity: 0;
  transform: translateY(32px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
  animation: heroBodyReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-divider {
  width: min(180px, 42vw);
  height: 1px;
  margin: 0 0 2.25rem;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.18) 100%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  opacity: 0.45;
  transform: scaleX(0);
  animation: heroDividerReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(38px) scale(0.96);
  filter: blur(8px);
  will-change: transform, opacity, filter;
  animation: heroButtonReveal 1.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-buttons .btn:nth-child(1) {
  animation-delay: 0.8s;
}

.hero-buttons .btn:nth-child(2) {
  animation-delay: 0.92s;
}

.hero-buttons .btn i {
  font-size: 1.4rem;
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

/* --- SERVICE CARDS --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  /* Slightly increased per user request */
  overflow-wrap: break-word;
  hyphens: auto;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.service-link:hover {
  gap: 0.75rem;
}

/* Service Card with Image */
.service-card-image {
  padding: 0;
  overflow: hidden;
}

.service-card-image .service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-card-image .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.service-card-image:hover .service-image img {
  transform: scale(1.08);
}

.service-card-image .service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-image h3 {
  margin-bottom: 0.5rem;
}

.service-card-image p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-card-image .service-link {
  margin-top: auto;
}

/* --- STATS STRIP --- */
.stats-strip {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 16% 30%, rgba(199, 168, 153, 0.14) 0%, transparent 24%),
    radial-gradient(circle at 84% 68%, rgba(226, 207, 199, 0.1) 0%, transparent 22%),
    var(--gradient-dark);
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.stats-strip .container {
  position: relative;
  z-index: 1;
}

.stats-shell {
  position: relative;
  padding: 1rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.stats-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 24%, transparent 76%, rgba(199, 168, 153, 0.06));
  pointer-events: none;
}

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

.stat-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2rem 1.25rem 1.7rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 56px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199, 168, 153, 0.82), transparent);
}

.stat-item::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 70%;
  background: radial-gradient(circle at 50% 100%, rgba(199, 168, 153, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 168, 153, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.16);
}

.stat-item:hover::after {
  opacity: 1;
}

.stat-item .stat-value {
  --stat-digit-step: 1.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08em;
  min-height: calc(var(--stat-digit-step) + 0.08em);
  margin-bottom: 0.85rem;
  padding: 0.04em 0;
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--accent-light);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  overflow: visible;
}

.stat-odometer {
  display: inline-flex;
  gap: 0.02em;
  align-items: center;
  padding-inline: 0.04em;
}

.stat-digit-window {
  position: relative;
  width: 0.84ch;
  height: var(--stat-digit-step);
  overflow: hidden;
}

.stat-digit-track {
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 0, 0);
  transition: transform 1.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--digit-delay, 0s);
  will-change: transform;
}

.stat-item.is-counted .stat-digit-track {
  transform: translate3d(0, calc(var(--digit-offset, 0) * -1 * var(--stat-digit-step)), 0);
}

.stat-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--stat-digit-step);
}

.stat-symbol {
  font-size: 0.7em;
  line-height: 1;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(0.12em);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--symbol-delay, 0s) + 0.35s);
}

.stat-item.is-counted .stat-symbol {
  opacity: 1;
  transform: translateY(0.02em);
}

.stat-item p {
  max-width: 16ch;
  margin: 0 auto;
  color: rgba(234, 230, 223, 0.86);
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- TESTIMONIALS CAROUSEL --- */
.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
  padding: 60px 20px;
  margin: -60px -20px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
}

@media (max-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px), (max-device-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .testimonials-carousel {
    flex-direction: column;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-prev {
    left: -10px;
  }

  .carousel-next {
    right: -10px;
  }
}

.testimonial-card-new {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  /* box-shadow: var(--shadow-sm); Removed per user request */
  /* border: 1px solid #eee; Removed per user request */
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.testimonial-card-new:hover {
  transform: translateY(-10px);
  background: var(--white);
  z-index: 10;
}

.testimonial-card-new .stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.15rem;
}

.testimonial-card-new .stars i {
  color: #FFD700;
}

.testimonial-card-new .quote-mark {
  color: var(--primary);
  font-size: 2rem;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.testimonial-card-new .testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-text);
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.testimonial-card-new .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-card-new .testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.8rem;
}

.testimonial-card-new .testimonial-avatar i {
  color: var(--primary);
}

.testimonial-card-new .testimonial-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  text-transform: none;
  letter-spacing: 0;
}

.testimonial-card-new .testimonial-info p {
  font-size: 0.8rem;
  color: var(--dark-text);
  opacity: 0.6;
  margin: 0;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn i {
  font-size: 1.25rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--primary);
}

.carousel-dot:hover {
  background: var(--primary-dark);
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(226, 207, 199, 0.12) 0%, transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(199, 168, 153, 0.14) 0%, transparent 32%),
    linear-gradient(180deg, #575757 0%, #3d3d3d 100%);
  padding: clamp(5rem, 8vw, 7.5rem) 0 clamp(4.8rem, 6.8vw, 6.4rem);
  text-align: left;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0%, transparent 36%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(360px, 0.74fr);
  gap: clamp(2.5rem, 4.5vw, 5rem);
  align-items: center;
}

.cta-story {
  max-width: 680px;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.82rem 1.45rem;
  margin-bottom: 1.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 207, 199, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 30px rgba(0, 0, 0, 0.08);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-kicker i {
  font-size: 1rem;
  color: var(--accent-light);
}

.cta-story h2 {
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.034em;
  margin-bottom: 1.2rem;
  max-width: 18ch;
}

.cta-headline-line {
  display: block;
}

.cta-lead {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: rgba(234, 230, 223, 0.92);
  font-size: clamp(1.05rem, 1.5vw, 1.38rem);
  line-height: 1.75;
  opacity: 1;
}

.cta-benefits {
  display: grid;
  gap: 1rem;
  margin: 0;
  max-width: 39rem;
}

.cta-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  position: relative;
  padding: 1rem 1.15rem;
  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  isolation: isolate;
}

.cta-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: rgba(199, 168, 153, 0.18);
  border: 1px solid rgba(226, 207, 199, 0.24);
  color: var(--accent-light);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.cta-benefit-copy {
  color: rgba(234, 230, 223, 0.98);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
}

.cta-divider {
  width: min(100%, 42rem);
  height: 1px;
  margin: 2rem 0 1.55rem;
  background: linear-gradient(90deg, rgba(226, 207, 199, 0.32) 0%, rgba(255, 255, 255, 0.1) 58%, transparent 100%);
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cta-proof-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  color: var(--accent-light);
  font-size: 1rem;
}

.cta-proof-copy strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.cta-proof-copy span {
  color: rgba(234, 230, 223, 0.76);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-card {
  position: relative;
  isolation: isolate;
  max-width: 430px;
  margin-left: auto;
  padding: clamp(2rem, 4vw, 2.9rem);
  border-radius: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(248, 246, 244, 0.98) 0%, rgba(234, 230, 223, 0.92) 100%);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 14%, rgba(199, 168, 153, 0.18) 0%, transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, transparent 54%);
  pointer-events: none;
}

.cta-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(199, 168, 153, 0.3);
}

.cta-card-icon i {
  font-size: 2rem;
}

.cta-card-eyebrow {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-card h3 {
  margin-bottom: 0.85rem;
  color: var(--bg-darker);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0.045em;
}

.cta-card>p {
  margin-bottom: 0;
  color: rgba(68, 68, 68, 0.78);
  font-size: 1.02rem;
  line-height: 1.8;
  opacity: 1;
}

.cta-card-button {
  justify-content: center;
  width: 100%;
  min-height: 64px;
  margin: 1.8rem 0 1.55rem;
  box-shadow: 0 18px 38px rgba(199, 168, 153, 0.28);
}

.cta-card-button .btn-text {
  width: 100%;
  justify-content: center;
  font-weight: 700;
}

.cta-card-button:hover {
  box-shadow: 0 22px 44px rgba(199, 168, 153, 0.34);
}

.cta-card-button:focus-visible {
  outline: 2px solid rgba(199, 168, 153, 0.34);
  outline-offset: 4px;
}

.cta-card-meta {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(61, 61, 61, 0.08);
  border-bottom: 1px solid rgba(61, 61, 61, 0.08);
}

.cta-card-meta-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  color: inherit;
  transition: transform 0.25s ease, color 0.25s ease;
}

a.cta-card-meta-item:hover,
a.cta-card-meta-item:focus-visible {
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.cta-card-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(199, 168, 153, 0.14);
  border: 1px solid rgba(199, 168, 153, 0.22);
  color: var(--primary-dark);
}

.cta-card-meta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.cta-card-meta-copy strong {
  color: var(--bg-darker);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-card-meta-copy span {
  color: rgba(68, 68, 68, 0.74);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cta-card-trust {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.35rem;
}

.cta-card-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(68, 68, 68, 0.08);
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.cta-card-trust-badge i {
  flex-shrink: 0;
}

@media (min-width: 960px) and (min-device-width: 960px) {
  .cta-headline-line {
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .cta-story {
    max-width: none;
  }

  .cta-card {
    max-width: none;
    margin-left: 0;
  }
}

/* --- FOOTER (PRO MAX) --- */
.footer {
  margin-top: -1px;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 168, 153, 0.14) 0%, transparent 34%),
    linear-gradient(180deg, #262626 0%, #171717 100%);
  padding: 4.85rem 0 2.15rem;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 18%),
    radial-gradient(circle at 20% 50%, rgba(199, 168, 153, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(199, 168, 153, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92vw, 1120px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(226, 207, 199, 0.56) 22%, rgba(255, 255, 255, 0.14) 50%, rgba(226, 207, 199, 0.56) 78%, transparent 100%);
  box-shadow: 0 0 28px rgba(199, 168, 153, 0.16);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

/* Footer Brand Column */
.footer-brand {
  text-align: left;
}

.footer-brand img {
  height: 80px !important;
  width: auto !important;
  display: block;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(199, 168, 153, 0.4);
}

.social-links a i {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.social-links a:hover i {
  color: white;
}

/* Footer Titles */
.footer-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  display: inline-block;
  padding: 4px 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-links a:hover::before {
  width: 100%;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.footer-contact i {
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

/* --- PROMO CARD (CONTACT) --- */
.promo-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* Subtle pattern overlay */
.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.promo-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.promo-card p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-whatsapp-large {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn-whatsapp-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #c5a392;
  /* Slightly darker shade of primary */
}

.promo-footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- CONTACT INFO (LEFT COLUMN) --- */
.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  padding: 1rem;
  border-radius: var(--radius-md);
  cursor: default;
}

.contact-item:hover {
  background: rgba(199, 168, 153, 0.05);
  /* Ultra subtle primary tint */
  transform: translateX(5px);
}

.contact-icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--gradient-primary);
  /* Use brand gradient instead of plain color */
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(199, 168, 153, 0.5);
}

.contact-details h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.contact-details p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Premium Social Links */
.social-links-premium {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-left: 1rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

/* Specific Social Colors but muted/elegant */
.social-btn.instagram {
  background: #C7A899;
}

/* Brand color for style */
.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.facebook {
  background: #C7A899;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  width: 100%;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.9;
}

.footer-bottom p {
  color: var(--white);
  margin: 0;
  opacity: 0.9;
}

.developer-logo {
  height: 28px;
  width: auto;
  vertical-align: middle;
  margin-left: 8px;
}

/* --- TRIAL / TREATMENT LIST (RIGHT COLUMN) --- */
.treatment-list-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.treatment-list-wrapper h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.treatment-tag {
  background: var(--white);
  border: 1px solid rgba(199, 168, 153, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--dark-text);
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.treatment-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.treatment-tag i {
  margin-right: 0.3rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* --- PAGE HEADER --- */
.page-header {
  background: var(--gradient-dark);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent-light);
}

.breadcrumb span {
  color: var(--text-light);
  opacity: 0.7;
}

.breadcrumb i {
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0.5;
}

/* --- FORMS --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(199, 168, 153, 0.15);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- FAQ ACCORDION --- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-slow);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* --- ANIMATIONS --- */
@keyframes heroBgReveal {
  from {
    opacity: 0.18;
    transform: scale(1.14);
    filter: blur(10px) saturate(0.88);
  }

  to {
    opacity: 0.3;
    transform: scale(1.08);
    filter: blur(0) saturate(1);
  }
}

@keyframes heroOverlayReveal {
  from {
    opacity: 0.96;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroBadgeReveal {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroTitleReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 82px, 0) skewY(2.4deg) scaleY(1.03);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) skewY(0.35deg) scaleY(0.995);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(0) scaleY(1);
  }
}

@keyframes heroBodyReveal {
  from {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroDividerReveal {
  from {
    opacity: 0.45;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes heroButtonReveal {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.96);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   MOBILE-FIRST PATCH - Clean & Solid
   Foco: celular perfeito + menos bugs
============================================ */

/* Estilos especÃƒÆ’Ã‚Â­ficos para MOBILE apenas */
@media (max-width: 767px), (max-device-width: 767px) {

  /* 1) VariÃƒÆ’Ã‚Â¡veis melhores pra mobile */
  :root {
    --header-h: 76px;
    --container-pad: 16px;
    --section-py: 64px;
    --radius-lg: var(--radius-2xl);
  }

  /* 2) Base geral mobile */
  .container {
    padding: 0 var(--container-pad);
  }

  .section {
    padding: var(--section-py) 0;
  }

  /* 3) Header fixo */
  .header {
    padding: 12px 0;
  }

  .nav-logo img {
    height: 40px;
  }

  /* 4) Hero */
  .hero {
    min-height: calc(100vh - var(--header-h));
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    letter-spacing: 0.03em;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  /* 5) BotÃƒÆ’Ã‚Âµes no mobile: largura total e toque fÃƒÆ’Ã‚Â¡cil */
  .btn {
    min-height: 48px;
    padding: 14px 22px;
    font-size: 1rem;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* 6) Grids: sempre 1 coluna no celular */
  .services-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  /* 7) Cards: padding ajustado */
  .service-card {
    padding: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  /* 8) Stats: 2 colunas no mobile */
  .stats-strip {
    padding: 4rem 0;
  }

  .stats-shell {
    padding: 0.85rem;
    border-radius: 30px;
  }

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

  .stat-item {
    padding: 1.5rem 1rem 1.35rem;
    border-radius: 24px;
  }

  .stat-item .stat-value {
    font-size: clamp(2rem, 8vw, 2.9rem);
    margin-bottom: 0.65rem;
  }

  /* 9) Carrossel: 1 card por vez no mobile */
  .testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .carousel-track-container {
    padding: 20px 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }

  /* BotÃƒÆ’Ã‚Âµes mais compactos e bem posicionados */
  .carousel-btn {
    width: 36px;
    height: 40px;
    font-size: 1rem;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 20;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  /* 10) Footer: alinhado ÃƒÆ’Ã‚Â  esquerda no mobile */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    text-align: left;
    gap: 0.95rem;
  }

  .footer-contact li {
    justify-content: flex-start;
  }

  .footer-panel {
    position: relative;
    overflow: hidden;
    padding: 1.1rem 1rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(199, 168, 153, 0.14);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
      rgba(11, 12, 15, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 16px 36px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
  }

  .footer-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(199, 168, 153, 0.68) 0%, rgba(255, 255, 255, 0.08) 65%, transparent 100%);
  }

  .footer-brand-panel {
    padding-bottom: 1.3rem;
  }

  .footer-brand-panel img {
    height: 56px !important;
    margin-bottom: 0.9rem;
  }

  .footer-brand-panel p {
    max-width: none;
    margin-bottom: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
  }

  .footer-brand-panel .social-links {
    margin-top: 0.25rem !important;
    gap: 0.65rem;
  }

  .footer-brand-panel .social-links a {
    width: 46px;
    height: 46px;
    border-color: rgba(199, 168, 153, 0.2);
    background: rgba(255, 255, 255, 0.04);
  }

  .footer-links-panel {
    background:
      linear-gradient(180deg, rgba(199, 168, 153, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%),
      rgba(11, 12, 15, 0.18);
  }

  .footer-links-panel .footer-title,
  .footer-treatments-panel .footer-title,
  .footer-contact-panel .footer-title {
    margin-bottom: 0.95rem;
    padding-bottom: 0.9rem;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    color: var(--white);
  }

  .footer-links-panel .footer-title::after,
  .footer-treatments-panel .footer-title::after,
  .footer-contact-panel .footer-title::after {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(199, 168, 153, 0.24) 100%);
  }

  .footer-links-panel .footer-links,
  .footer-treatments-panel .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-links-panel .footer-links li,
  .footer-treatments-panel .footer-links li {
    margin-bottom: 0;
  }

  .footer-links-panel .footer-links li + li,
  .footer-treatments-panel .footer-links li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-links-panel .footer-links a,
  .footer-treatments-panel .footer-links a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    min-height: 48px;
    padding: 0.78rem 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .footer-links-panel .footer-links a::before,
  .footer-treatments-panel .footer-links a::before {
    content: '';
    position: static;
    width: 12px;
    height: 1px;
    flex: 0 0 12px;
    background: rgba(199, 168, 153, 0.75);
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .footer-links-panel .footer-links a::after,
  .footer-treatments-panel .footer-links a::after {
    content: '';
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-top: 1px solid rgba(199, 168, 153, 0.55);
    border-right: 1px solid rgba(199, 168, 153, 0.55);
    transform: rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .footer-links-panel .footer-links a:hover,
  .footer-links-panel .footer-links a:focus-visible,
  .footer-treatments-panel .footer-links a:hover,
  .footer-treatments-panel .footer-links a:focus-visible {
    color: var(--white);
    padding-left: 0;
    transform: translateX(4px);
  }

  .footer-links-panel .footer-links a:hover::before,
  .footer-links-panel .footer-links a:focus-visible::before,
  .footer-treatments-panel .footer-links a:hover::before,
  .footer-treatments-panel .footer-links a:focus-visible::before {
    transform: scaleX(1.35);
    background: var(--primary);
  }

  .footer-links-panel .footer-links a:hover::after,
  .footer-links-panel .footer-links a:focus-visible::after,
  .footer-treatments-panel .footer-links a:hover::after,
  .footer-treatments-panel .footer-links a:focus-visible::after {
    transform: translateX(2px) rotate(45deg);
    border-color: var(--primary);
  }

  .footer-contact-panel .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
  }

  .footer-contact-panel .footer-contact li {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 0;
  }

  .footer-contact-panel .footer-contact li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.95rem;
  }

  .footer-contact-panel .footer-contact i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 168, 153, 0.12);
    border: 1px solid rgba(199, 168, 153, 0.18);
    color: var(--primary);
  }

  .footer-contact-panel .footer-contact span {
    font-size: 0.92rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    text-align: left;
  }

  .footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .developer-credit {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .developer-logo {
    height: 22px;
    max-width: min(46vw, 160px);
    object-fit: contain;
  }

  /* 11) Form: nÃƒÆ’Ã‚Â£o dÃƒÆ’Ã‚Â¡ zoom no iPhone */
  .form-input,
  .form-textarea,
  .form-select,
  input,
  textarea,
  select {
    font-size: 16px !important;
    min-height: 48px;
    padding: 12px 14px;
  }

  .form-textarea {
    min-height: 120px;
  }

  /* 12) WhatsApp */
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 18px;
    right: 18px;
  }

  /* ============================================
     13) PREMIUM MOBILE MENU
     ============================================ */

  /* --- Overlay --- */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 12, 0.74);
    backdrop-filter: blur(14px) saturate(0.82);
    -webkit-backdrop-filter: blur(14px) saturate(0.82);
    z-index: 11990;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  html.nav-open,
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    z-index: 11991;
    opacity: 0.03;
  }

  body.nav-open .header {
    transform: none !important;
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
    top: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none !important;
  }

  /* --- Menu Panel --- */
  .nav-menu {
    position: fixed;
    inset: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
    width: 100vw;
    max-width: none;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 1.5rem) clamp(1.4rem, 6vw, 2rem) calc(env(safe-area-inset-bottom, 0px) + 1.75rem);
    background-color: #1b1b1d;
    background-image:
      radial-gradient(circle at top left, rgba(199, 168, 153, 0.12) 0%, transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 24%, rgba(0, 0, 0, 0.1) 100%);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, visibility 0.28s ease;
    z-index: 12000;
    border: none;
    box-shadow: none;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: none;
    list-style: none;
  }

  .nav-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .nav-menu.active {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* --- Mobile Header (Logo + Close) --- */
  .mobile-nav-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 1.25rem;
    margin-bottom: clamp(1.1rem, 4vh, 1.75rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    width: 100%;
  }

  .mobile-nav-logo {
    display: flex;
    align-items: center;
  }

  .mobile-nav-logo img {
    height: 52px !important;
    width: auto !important;
    max-height: 52px !important;
    min-height: 52px !important;
    display: block !important;
  }

  .mobile-nav-close {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav-close i {
    font-size: 1.25rem;
  }

  .mobile-nav-close:hover,
  .mobile-nav-close:active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transform: scale(0.97);
  }

  /* --- Navigation Links --- */
  .mobile-nav-links {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    width: 100%;
  }

  .mobile-nav-links .nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.7rem 0;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 6vw, 1.7rem);
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.32s ease;
    opacity: 0;
    transform: translateY(18px);
  }

  .nav-menu.active .mobile-nav-links .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active .mobile-nav-links .nav-link:nth-child(1) { transition-delay: 0.08s; }
  .nav-menu.active .mobile-nav-links .nav-link:nth-child(2) { transition-delay: 0.12s; }
  .nav-menu.active .mobile-nav-links .nav-link:nth-child(3) { transition-delay: 0.16s; }
  .nav-menu.active .mobile-nav-links .nav-link:nth-child(4) { transition-delay: 0.2s; }
  .nav-menu.active .mobile-nav-links .nav-link:nth-child(5) { transition-delay: 0.24s; }
  .nav-menu.active .mobile-nav-links .nav-link:nth-child(6) { transition-delay: 0.28s; }

  .mobile-nav-links .nav-link:hover,
  .mobile-nav-links .nav-link:active {
    color: var(--white);
    background: transparent;
    border-left-color: transparent;
    border-bottom-color: rgba(199, 168, 153, 0.65);
  }

  .mobile-nav-links .nav-link.active {
    color: var(--white);
    border-left-color: transparent;
    border-bottom-color: rgba(199, 168, 153, 0.65);
    background: transparent;
    font-weight: 400;
  }

  /* Remove default ::after underline in mobile */
  .mobile-nav-links .nav-link::after {
    display: none;
  }

  /* --- CTA Wrapper --- */
  .desktop-nav-cta-wrapper {
    display: none !important;
  }

  .mobile-nav-cta-wrapper {
    display: block !important;
    padding: clamp(1.5rem, 5vh, 2.25rem) 0 0;
    width: 100%;
    flex-shrink: 0;
  }

  .mobile-nav-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.35rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(199, 168, 153, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    text-decoration: none;
    letter-spacing: 0.015em;
  }

  .mobile-nav-cta .btn-fill {
    display: none !important;
  }

  .mobile-nav-cta .btn-text {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    position: static !important;
    transform: none !important;
  }

  .mobile-nav-cta:hover,
  .mobile-nav-cta:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 14px 30px rgba(199, 168, 153, 0.28) !important;
  }

  /* --- Mobile Footer --- */
  .mobile-nav-footer {
    display: block !important;
    flex-shrink: 0;
    padding: clamp(2rem, 8vh, 4rem) 0 0;
    width: 100%;
  }

  .mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    margin-bottom: 1.35rem;
  }

  .mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.4rem;
  }

  .mobile-nav-contact-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.25s ease;
  }

  a.mobile-nav-contact-item:hover,
  a.mobile-nav-contact-item:active {
    color: var(--primary);
  }

  .mobile-nav-contact-item i {
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0.92;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
  }

  /* --- Social Icons --- */
  .mobile-nav-social {
    display: flex;
    gap: 0.85rem;
    padding-top: 0;
  }

  .mobile-nav-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .mobile-nav-social a:hover,
  .mobile-nav-social a:active {
    background: rgba(199, 168, 153, 0.18);
    color: var(--white);
    border-color: rgba(199, 168, 153, 0.4);
  }

  body.nav-open .whatsapp-float,
  body.nav-open .progress-bar-container,
  body.nav-open .nav-toggle {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* --- Hamburger Toggle --- */
  .nav-toggle {
    display: flex;
    z-index: 12020;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

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

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* 14) Ajustes para telas MUITO pequenas (360px) */
@media (max-width: 360px) {
  :root {
    --container-pad: 12px;
  }

  .nav-logo img {
    height: 36px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    /* em 360px, 1 coluna fica mais seguro */
  }

  .stats-shell {
    padding: 0.75rem;
  }
}

/* 15) Upgrade tablet+ (mobile-first com min-width) */
@media (min-width: 768px) and (min-device-width: 768px) {
  :root {
    --section-py: 90px;
    --container-pad: 20px;
  }

  .nav-logo img {
    height: var(--pill-logo-h);
  }

  .nav-toggle {
    display: none;
  }

  .nav-overlay,
  .mobile-nav-header,
  .mobile-nav-footer,
  .mobile-nav-cta-wrapper,
  .mobile-nav-divider {
    display: none !important;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    max-width: none;
    background: transparent;
    background-image: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1.6rem;
    border-left: none;
    overflow: visible;
    list-style: none;
  }

  .mobile-nav-links {
    display: contents;
  }

  .desktop-nav-cta-wrapper {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
  }

  .mobile-nav-links .nav-link {
    opacity: 1;
    transform: none;
    border-left: none;
    padding: 0.4rem 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .mobile-nav-links .nav-link::after {
    display: block;
  }

  .hero-buttons {
    flex-direction: row;
    width: auto;
  }

  .hero-buttons .btn {
    width: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    text-align: left;
  }

  .footer-contact li {
    justify-content: flex-start;
  }

.footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
} /* END OF @media (min-width: 768px) and (min-device-width: 768px) */

@media (max-width: 767px), (max-device-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 16) Desktop (1024px+) */
@media (min-width: 1024px) and (min-device-width: 1024px) {
  :root {
    --section-py: 100px;
    --container-pad: 24px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .testimonial-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
  }
}

/* 17) Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  .service-card:hover,
  .testimonial-card-new:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.98);
  }
}


/* --- MOBILE PHONES (480px) --- */
@media (max-width: 480px) {

  /* Container Extra Padding */
  .container {
    padding: 0 12px;
  }

  /* Hero Adjustments */
  .hero {
    min-height: 70vh;
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  /* Stats - 2 columns still */
  .stats-grid {
    gap: 1rem;
  }

  .stat-item .stat-value {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card-new {
    padding: 1.25rem;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 2rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  /* Forms */
  .form-group {
    margin-bottom: 1rem;
  }

  /* Page Header */
  .page-header {
    padding: 80px 0 30px;
  }

  .page-header h1 {
    font-size: 1.4rem;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.8rem;
  }

  /* About Section */
  .about-image {
    height: 250px;
  }

  /* CTA */
  .cta-section {
    padding: 4.35rem 0 4.6rem;
  }

  .cta-layout {
    gap: 1.85rem;
  }

  .cta-story h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    max-width: none;
    line-height: 1.02;
    letter-spacing: 0.03em;
  }

  .cta-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-benefits li {
    padding: 0.95rem 1rem;
    border-radius: 1.4rem;
  }

  .cta-benefit-copy {
    font-size: 0.96rem;
  }

  .cta-card {
    padding: 1.7rem;
    border-radius: 1.85rem;
  }

  .cta-card h3 {
    font-size: 1.75rem;
  }

  .cta-card > p {
    font-size: 0.96rem;
  }

  .cta-card-button {
    min-height: 60px;
  }

  .cta-card-trust {
    gap: 0.5rem;
  }

  .cta-card-trust-badge {
    min-height: 2.85rem;
    padding: 0.74rem 0.82rem;
    gap: 0.34rem;
    font-size: 0.7rem;
    letter-spacing: 0;
  }

  .footer {
    padding: 4.35rem 0 2rem;
  }
}

/* --- EXTRA SMALL PHONES (360px) --- */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .stat-item .stat-value {
    font-size: 1.9rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .footer-brand img {
    height: 36px;
  }

  .cta-card-trust-badge {
    padding: 0.66rem 0.7rem;
    font-size: 0.66rem;
    gap: 0.28rem;
  }
}

/* --- TOUCH DEVICE OPTIMIZATIONS --- */
@media (hover: none) and (pointer: coarse) {

  /* Remove hover effects on touch devices */
  .service-card:hover,
  .testimonial-card-new:hover {
    transform: none;
  }

  /* Larger touch targets */
  .nav-link {
    padding: 12px 16px;
  }

  .footer-links a {
    display: inline-block;
    padding: 8px 0;
  }

  /* Better tap feedback */
  .btn:active {
    transform: scale(0.98);
  }
}

/* --- LANDSCAPE MOBILE --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 60px 0 30px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .nav-menu {
    padding: 1rem;
    gap: 1rem;
  }
}

/* --- PRINT STYLES --- */
@media print {

  .header,
  .nav-toggle,
  .whatsapp-float,
  .cta-section {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  

}

/* --- TRATAMENTOS PRO MAX --- */
.treatment-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(199, 168, 153, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
  pointer-events: none;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(199, 168, 153, 0.2);
  border-color: rgba(199, 168, 153, 0.4);
}

.treatment-card:hover::before {
  left: 100%;
  transition: 0.7s;
}

.treatment-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 220px;
}

.treatment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-photo img {
  transform: scale(1.05);
}

.treatment-card h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
  position: relative;
  display: inline-block;
}

.treatment-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.treatment-list {
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none;
}

.treatment-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--dark-text);
}

.treatment-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.treatment-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* --- READING PROGRESS BAR --- */
.progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(199, 168, 153, 0.5);
}

/* --- COOKIE CONSENT BANNER --- */
/* --- COOKIE CONSENT MODAL (PRO MAX v2) --- */
.cookie-overlay {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  width: min(100vw - 32px, 620px);
  max-width: calc(100vw - 32px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cookie-overlay.visible {
  opacity: 1;
}

.cookie-modal {
  width: 100%;
  pointer-events: auto;
  background: rgba(248, 246, 244, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(199, 168, 153, 0.34);
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(61, 61, 61, 0.18), 0 8px 24px rgba(199, 168, 153, 0.14);
  padding: 1.5rem 1.5rem 1.25rem;
  transform: translateY(18px);
  transition: transform 0.22s ease, opacity 0.22s ease;
  max-height: min(540px, calc(100vh - 32px));
  overflow-y: auto;
}

.cookie-overlay.visible .cookie-modal {
  transform: translateY(0);
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-header h3 {
  margin: 0;
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-header-main {
  position: relative;
  justify-content: center;
  padding-right: 48px;
}

.cookie-header-prefs {
  justify-content: space-between;
}

.cookie-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(199, 168, 153, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--bg-dark);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.cookie-close:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(199, 168, 153, 0.7);
  transform: translateY(-1px);
}

.cookie-header-prefs .cookie-close {
  position: static;
  flex-shrink: 0;
}

.cookie-back {
  background: transparent;
  border: none;
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  padding: 0;
}

.cookie-body p {
  font-size: 0.98rem;
  color: rgba(68, 68, 68, 0.82);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.cookie-prefs-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.cookie-pref-item {
  border: 1px solid rgba(199, 168, 153, 0.24);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: rgba(255, 255, 255, 0.66);
}

.cookie-pref-item.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(199, 168, 153, 0.45);
}

.cookie-pref-header {
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  background: transparent;
}

.cookie-pref-header span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-text);
}

.cookie-pref-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-arrow {
  color: var(--primary);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.cookie-pref-item.active .cookie-arrow {
  transform: rotate(180deg);
}

.cookie-pref-desc {
  padding: 0 1.1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  font-size: 0.9rem;
  color: rgba(68, 68, 68, 0.78);
  line-height: 1.55;
  background: transparent;
}

.cookie-pref-item.active .cookie-pref-desc {
  max-height: 220px;
  padding-bottom: 1rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background-color: rgba(199, 168, 153, 0.35);
  transition: background-color 0.25s ease;
  border-radius: 999px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: transform 0.25s ease;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.18);
}

input:checked + .cookie-slider {
  background-color: var(--primary);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 0 3px rgba(199, 168, 153, 0.18);
}

input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

.cookie-always-active {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.cookie-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.cookie-footer-prefs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-btn {
  min-height: 52px;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
  font-family: var(--font-body);
}

.cookie-btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  border: 1px solid rgba(199, 168, 153, 0.55);
}

.cookie-btn-primary:hover {
  border-color: rgba(199, 168, 153, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(199, 168, 153, 0.22);
}

.cookie-btn-secondary,
.cookie-btn-outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--bg-dark);
  border: 1px solid rgba(199, 168, 153, 0.32);
}

.cookie-btn-secondary:hover,
.cookie-btn-outline:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(199, 168, 153, 0.55);
}

.cookie-policy-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  width: 100%;
}

.cookie-policy-link a {
  color: var(--primary-dark);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-policy-link a:hover {
  color: var(--primary);
}

@media (max-width: 720px) {
  .cookie-overlay {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
  }

  .cookie-modal {
    padding: 1.2rem;
    border-radius: 18px;
    max-height: min(78vh, calc(100vh - 24px));
  }

  .cookie-header-main {
    padding-right: 42px;
  }

  .cookie-header-prefs {
    flex-wrap: wrap;
  }

  .cookie-header-prefs h3 {
    order: -1;
    width: 100%;
  }

  .cookie-footer,
  .cookie-footer-prefs {
    grid-template-columns: 1fr;
  }
}

/* --- DEVELOPER CREDIT --- */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.developer-credit:hover {
  color: var(--white);
}

.developer-logo {
  height: 28px;
  width: auto;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.developer-credit:hover .developer-logo {
  transform: scale(1.05);
}

@media (max-width: 768px), (max-device-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   BLOG PAGE - Premium Redesign
   ============================================ */

/* --- Category Filter Pills --- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.blog-filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid rgba(199, 168, 153, 0.3);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(199, 168, 153, 0.08);
}

.blog-filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
}

/* --- Featured Post --- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  transition: all 0.4s ease;
  cursor: pointer;
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-featured-img {
  height: 100%;
  min-height: 380px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-featured-img i {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
}

.blog-featured:hover .blog-featured-img i {
  transform: scale(1.1);
  color: rgba(255, 255, 255, 0.5);
}

.blog-featured-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(199, 168, 153, 0.2) 0%, rgba(168, 142, 127, 0.4) 100%);
}

.blog-featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content .blog-badge {
  font-size: 0.75rem;
}

.blog-featured-content h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.72rem);
  margin-bottom: 1rem;
  line-height: 1.16;
  letter-spacing: 0.012em;
  text-transform: none;
  max-width: 17ch;
}

.blog-featured-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.blog-featured-content .blog-read-link {
  font-size: 0.95rem;
}

/* --- Blog Badge --- */
.blog-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(199, 168, 153, 0.15);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Blog Card --- */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.blog-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Blog card image helper (recommended upload: 1200x660) */
.blog-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--blog-card-image-position);
  border-radius: inherit;
}

.blog-card-img i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.blog-card:hover .blog-card-img i {
  transform: scale(1.15) rotate(5deg);
  color: rgba(255, 255, 255, 0.6);
}

/* Unique gradients per category */
.blog-card-img.cat-cuidados {
  background: linear-gradient(135deg, #C7A899 0%, #d4b8ab 50%, #E2CFC7 100%);
}

.blog-card-img.cat-estetica {
  background: linear-gradient(135deg, #b8a4c7 0%, #c9b8d7 50%, #ddd2e8 100%);
}

.blog-card-img.cat-infantil {
  background: linear-gradient(135deg, #a8c7b8 0%, #b8d4c5 50%, #d2e8dd 100%);
}

.blog-card-img.cat-implantes {
  background: linear-gradient(135deg, #8ca4b8 0%, #a0b8cc 50%, #bdd0e0 100%);
}

.blog-card-img.cat-ortodontia {
  background: linear-gradient(135deg, #c7b099 0%, #d4c1ab 50%, #e2d5c7 100%);
}

.blog-card-img.cat-prevencao {
  background: linear-gradient(135deg, #a8b8c7 0%, #99b3a8 50%, #c2d4c8 100%);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.35rem 1.5rem 1.55rem;
}

.blog-card-body h3 {
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  margin-bottom: 0.65rem;
  line-height: 1.14;
  letter-spacing: 0.01em;
  text-transform: none;
  text-wrap: balance;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-body h3 {
  color: var(--primary-dark);
}

.blog-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
  opacity: 0.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* --- Blog Meta --- */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--dark-text);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-meta i {
  font-size: 0.85rem;
}

/* --- Blog Read Link --- */
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.blog-card-body .blog-read-link {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.82rem 1.08rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(199, 168, 153, 0.24);
  background: rgba(199, 168, 153, 0.16);
  box-shadow: 0 10px 24px rgba(199, 168, 153, 0.12);
  color: var(--primary-dark);
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.blog-read-link:hover {
  gap: 0.55rem;
  color: var(--primary);
}

.blog-card-body .blog-read-link:hover {
  background: rgba(199, 168, 153, 0.24);
  border-color: rgba(199, 168, 153, 0.34);
  box-shadow: 0 14px 28px rgba(199, 168, 153, 0.18);
}

.blog-read-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.blog-read-link:hover i {
  transform: translateX(3px);
}

/* --- Blog Responsive --- */
@media (max-width: 992px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    min-height: 250px;
  }

  .blog-featured-content {
    padding: 2rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-filters {
    gap: 0.4rem;
  }

  .blog-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .blog-featured-content h2 {
    font-size: 1.3rem;
  }

  .blog-featured-content {
    padding: 1.5rem;
  }

  .blog-card-body {
    padding: 1.15rem 1.2rem 1.35rem;
  }
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* =========================================
  TREATMENTS PRO (SPLIT CAROUSEL LAYOUT)
========================================= */
.specialists-section {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(226, 207, 199, 0.34) 0%, transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(199, 168, 153, 0.18) 0%, transparent 26%),
    linear-gradient(180deg, #faf7f3 0%, #f4eee7 100%);
}

.specialists-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.42), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.58), transparent 54%);
  pointer-events: none;
}

.specialists-section .container {
  position: relative;
  z-index: 1;
}

.treatments-header-restore {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto 2.75rem;
  padding: 0;
  text-align: center;
}

.treatments-header-restore .treatments-pro-title {
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0.035em;
  text-wrap: balance;
}

.treatments-header-restore .title-dark {
  color: var(--bg-dark);
  font-weight: 400;
}

.treatments-header-restore .title-taupe {
  color: var(--primary);
  font-weight: 400;
  text-shadow: 0 12px 30px rgba(199, 168, 153, 0.16);
}

.treatments-header-restore .treatments-pro-desc {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.78;
  color: rgba(68, 68, 68, 0.78);
  font-weight: 400;
}

.treatments-pro-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.treatments-pro-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 1rem;
  z-index: 5;
  flex: 0 0 45%;
  max-width: 45%;
}

.pro-badge-beige {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--beige-light, #F6F3F0);
  color: var(--taupe-dark, #B89685);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(184, 150, 133, 0.2);
  margin-bottom: 1.5rem;
}

.treatments-pro-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  /* Scaled down for elegance */
  line-height: 1.1;
  font-weight: 400;
  /* Regular weight for premium look */
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  max-width: 100%;
  word-wrap: break-word;
}

.title-dark {
  color: #11243F;
  /* Or var(--primary) */
  font-weight: 600;
}

.title-taupe {
  color: var(--taupe, #CBAA9A);
  font-weight: 300;
  /* Thinner weight for contrast */
}

.treatments-pro-desc {
  font-size: 1.1rem;
  color: #667085;
  line-height: 1.6;
  max-width: 480px;
  font-weight: 300;
}

/* Premium Taupe Button */
.btn-taupe-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--taupe, #CBAA9A);
  color: #fff;
  padding: 10px 24px;
  /* Reduced padding from 14px 28px */
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  /* Reduced from 1rem */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(203, 170, 154, 0.3);
  align-self: flex-start;
  /* Ensure it doesn't stretch */
}

.btn-taupe-pill:hover {
  background: var(--taupe-dark, #B89685);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(203, 170, 154, 0.4);
}

/* Transparent Outline Button (White) */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 22px;
  /* Adjusted to account for the 2px border so it matches the 10x24px visual size of the solid button */
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-treatments-link i {
  transition: transform 0.3s ease;
}

.btn-treatments-link:hover i {
  transform: translateX(4px);
}

/* Controls */
/* Carousel controls (Left Sidebar) */
.treatments-carousel-ui-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.nav-prev-outline,
.nav-next-outline {
  width: 40px;
  /* Reduced from 48px */
  height: 40px;
  /* Reduced from 48px */
  border-radius: 50%;
  border: 1px solid rgba(203, 170, 154, 0.5);
  /* Taupe border */
  background: transparent;
  color: var(--taupe-dark, #B89685);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  /* Reduced from 1.2rem */
}

.nav-prev-outline:hover,
.nav-next-outline:hover {
  background: var(--taupe-light, #E8DCD5);
  border-color: var(--taupe-dark, #B89685);
  color: var(--taupe-dark, #B89685);
}

.nav-prev-outline:active,
.nav-next-outline:active {
  transform: scale(0.95);
}

.nav-fraction-taupe {
  font-weight: 500;
  color: var(--taupe-dark, #B89685);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

/* Track */
.treatments-pro-track-wrapper {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  min-height: 680px;
  min-width: 0;
  overflow: visible;
}

.treatments-cards-stage {
  position: relative;
  width: min(100%, 520px);
  height: 680px;
  perspective: 1200px;
  isolation: isolate;
  overflow: visible;
}

.treatments-pro-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Card - Base state (All cards overlaid) */
.treatments-cards-stage .pro-treatment-card {
  position: absolute;
  inset: 0;
  background: var(--taupe, #CBAA9A);
  border-radius: 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(110px, 18px, 0px) scale(.88);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  transition: transform .75s cubic-bezier(.22, 1, .36, 1),
    opacity .75s ease,
    box-shadow .75s ease;
}

/* ATIVO: na frente */
.pro-treatment-card.card-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 80px) scale(1);
  filter: blur(0px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

/* PRÃƒÆ’Ã¢â‚¬Å“XIMO: um pouco ÃƒÆ’Ã‚Â  direita e atrÃƒÆ’Ã‚Â¡s */
.pro-treatment-card.card-next {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  transform: translate3d(70px, 10px, 20px) scale(.94);
  filter: blur(.2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

/* TERCEIRO: mais atrÃƒÆ’Ã‚Â¡s ainda */
.pro-treatment-card.card-next2 {
  opacity: .35;
  pointer-events: none;
  transform: translate3d(110px, 18px, 0px) scale(.88);
  filter: none;
}

/* SAÃƒÆ’Ã‚ÂDA LATERAL (AvanÃƒÆ’Ã‚Â§ar): ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œvai pra direitaÃƒÂ¢Ã¢â€šÂ¬Ã‚Â e DESCE ficando MAIS PARA TRÃƒÆ’Ã‚ÂS (por baixo) */
.pro-treatment-card.card-leaving {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(170px, 26px, -80px) scale(.88) rotateZ(1deg);
  filter: blur(1px);
}

/* ENTRADA DO ANTERIOR (Voltar): vem da esquerda, atrÃƒÆ’Ã‚Â¡s, e sobe pra posiÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o */
.pro-treatment-card.card-entering-from-left {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-170px, 26px, -80px) scale(.88) rotateZ(-1deg);
  filter: blur(1px);
}

.pro-treatment-card.card-active:hover {
  transform: translate3d(0, -5px, 90px) scale(1.02);
  box-shadow: 0 40px 70px rgba(203, 170, 154, 0.4);
}

.treatments-cards-stage.is-animating .pro-treatment-card.card-active:hover {
  transform: translate3d(0, 0, 80px) scale(1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.treatments-cards-stage.is-animating .pro-treatment-card {
  filter: none !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .10) !important;
}

.treatments-cards-stage.is-animating .pro-card-content {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.pro-treatment-img {
  position: relative;
  width: 100%;
  height: 62%;
  flex: 0 0 62%;
  aspect-ratio: auto;
  overflow: hidden;
  background: #fff;
}

.pro-treatment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pro-treatment-card:hover .pro-treatment-img img {
  transform: scale(1.05);
}

.pro-treatment-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--taupe-dark, #B89685);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pro-card-content {
  height: 38%;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
  background: rgba(203, 170, 154, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pro-treatment-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  /* Thin, elegant font */
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.pro-treatment-desc {
  color: rgba(255, 255, 255, 0.9);
  /* More legible over taupe */
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 300;
  flex-grow: 1;
}

.pro-treatment-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
  .treatments-pro-layout {
    flex-direction: column;
    /* Stack vertically on mobile */
    gap: 3rem;
  }

  .treatments-pro-sidebar {
    flex: 1 1 100%;
    max-width: 100%;
    padding-right: 0;
    align-items: center;
    text-align: center;
  }

  .treatments-pro-track-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 620px;
  }

  .treatments-pro-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-taupe-pill {
    align-self: center;
  }

  .treatments-carousel-ui-left {
    justify-content: center;
    margin-top: 2rem;
  }

  .treatments-cards-stage {
    width: min(100%, 420px);
    height: 620px;
  }
}

@media (max-width: 575px) {
  .treatments-cards-stage {
    width: min(100%, 340px);
    height: 560px;
  }
}

/* ====== Treatments Section ====== */
.specialists {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.specialists__head {
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .specialists {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.specialists__head h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 12px;
}

.specialists__head p {
  margin: 0 0 18px;
  max-width: 52ch;
  opacity: .85;
}

.specialists__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .15);
  text-decoration: none;
  color: inherit;
}

.specialists-section .carousel {
  position: relative;
}

/* ====== Swiper: feel premium ====== */
.specialists-section .treatments-swiper {
  overflow: visible;
  padding: 8px 0 80px;
  /* Room for massive shadow */
}

/* timing organico do movimento */
.specialists-section .treatments-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(.19, 1, .22, 1) !important;
  display: flex !important;
  align-items: stretch;
}

/* slides: estados visuais (base) */
.specialists-section .card.swiper-slide {
  width: clamp(240px, 20vw, 320px);
  height: auto !important;
  flex-shrink: 0;
  border-radius: 18px;
  background: var(--primary);
  overflow: hidden;
  position: relative;
  cursor: pointer;

  opacity: 0.4;
  /* Opacidade base bem leve para os distantes */
  transition:
    opacity .85s cubic-bezier(.19, 1, .22, 1),
    background .25s ease,
    box-shadow .85s cubic-bezier(.19, 1, .22, 1);
}

.specialists-section .card.swiper-slide {
  margin: 0 -12%;
  /* FORÃƒÆ’Ã¢â‚¬Â¡AR SOBREPOSIÃƒÆ’Ã¢â‚¬Â¡ÃƒÆ’Ã†â€™O: puxa os cards uns sobre os outros */
  z-index: 1;
  /* Base z-index */
}

.specialists-section .card.swiper-slide:hover {
  background: var(--primary-dark);
}

/* vizinhos: ficam "perto" do ativo */
.specialists-section .card.swiper-slide-prev,
.specialists-section .card.swiper-slide-next {
  opacity: 0.85;
  z-index: 2;
  /* Vizinhos ficam por cima dos distantes */
}

/* ativo: foco total */
.specialists-section .card.swiper-slide-active {
  opacity: 1;
  z-index: 5;
  /* Card central tem que ficar no topo absoluto */
  box-shadow:
    0 40px 100px -15px rgba(0, 0, 0, 0.45),
    /* Sombra mais forte para separar do fundo */
    0 10px 30px -10px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  background: var(--primary-dark);
}

.specialists-section .card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: rgba(255, 255, 255, .08);
}

.specialists-section .card__


.specialists-section .card__body small {
  opacity: .85;
}

.specialists-section .card__body h3 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--white);
}

.specialists-section .card__body p {
  margin: 0;
  opacity: .9;
  line-height: 1.35;
  font-family: var(--font-body);
  color: var(--white);
}

.specialists-section .car-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
}

.specialists-section .car-btn i {
  font-size: 1.15rem;
}

.specialists-section .car-btn--prev {
  left: 6px;
}

.specialists-section .car-btn--next {
  right: 6px;
}

/* ====== Mobile ====== */
@media (max-width: 768px), (max-device-width: 768px) {
  .treatments-header-restore {
    margin-bottom: 2rem;
    padding: 0;
  }

  .treatments-header-restore .treatments-pro-title {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    margin-bottom: 1rem;
  }

  .treatments-header-restore .treatments-pro-desc {
    font-size: 0.98rem;
    line-height: 1.72;
    max-width: 30rem;
  }

  .specialists-section .treatments-swiper {
    padding: 8px 0 44px;
  }

  .specialists-section .card.swiper-slide {
    width: clamp(260px, 78vw, 340px);
  }

  .specialists-section .card img {
    height: 260px;
  }

  .specialists-section .car-btn {
    width: 40px;
    height: 40px;
    top: 42%;
  }
}

.specialists .car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px 0;
  gap: 14px;
}

.specialists .car-counter {
  font-variant-numeric: tabular-nums;
  opacity: .8;
}

.specialists .car-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.specialists .car-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .25);
  background: transparent;
  opacity: .5;
  cursor: pointer;
}

.specialists .car-dot.is-active {
  width: 22px;
  opacity: 1;
}

@media (max-width: 900px) {
  .specialists {
    grid-template-columns: 1fr;
  }

  .specialists .car-viewport {
    padding-inline: 18px;
  }

  .specialists .car-btn {
    display: none;
  }
}
