/* =========================================================
   Transforma Saude-Estetica - Estilos do site publico
   Estilo: Glassmorphism + Premium
   ========================================================= */

:root {
  --color-primary: #c98597;
  --color-primary-dark: #9c566b;
  --color-primary-light: #efd2db;
  --color-secondary: #7d665f;
  --color-secondary-light: #d7c8c2;
  --color-gold: #b99968;
  --color-bg: #fffafb;
  --color-bg-alt: rgba(252, 239, 243, .58);
  --color-text: #3c2c32;
  --color-text-light: #75636a;
  --color-border: rgba(96, 61, 72, .11);

  --glass-bg: rgba(255, 255, 255, .5);
  --glass-bg-strong: rgba(255, 255, 255, .68);
  --glass-border: rgba(255, 255, 255, .65);
  --glass-blur: 20px;

  --radius: 22px;
  --shadow-soft: 0 10px 30px rgba(53, 48, 44, .08);
  --shadow-premium: 0 28px 75px rgba(126, 66, 84, .18);
  --shadow: var(--shadow-soft);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fundo "aurora": manchas de cor desfocadas fixas, base do efeito glass */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(680px circle at 6% 8%, rgba(232, 181, 196, .3), transparent 62%),
    radial-gradient(620px circle at 94% 12%, rgba(246, 216, 224, .42), transparent 60%),
    radial-gradient(700px circle at 24% 92%, rgba(238, 203, 212, .32), transparent 62%),
    radial-gradient(520px circle at 88% 82%, rgba(185, 153, 104, .1), transparent 60%),
    var(--color-bg);
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; color: var(--color-text-light); }

.eyebrow {
  display: inline-block;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .6em;
}

.gradient-text {
  background: linear-gradient(122deg, #5d3a46 5%, var(--color-primary-dark) 52%, #bd8896 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #d497a8, var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(156, 86, 107, .28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(156, 86, 107, .38); }
.btn-outline {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  color: var(--color-text);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary-dark); transform: translateY(-3px); background: var(--glass-bg-strong); }
.btn-block { width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 251, .68);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(255, 250, 251, .92); box-shadow: var(--shadow-soft); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--color-text); }
.brand-mark { width: 54px; height: 54px; overflow: hidden; border-radius: 50%; background: #fff; box-shadow: 0 7px 20px rgba(107,52,69,.09); flex: 0 0 auto; }
.logo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .08em; font-size: 1.12rem; font-weight: 700; }
.brand-copy small { display: flex; align-items: center; gap: 6px; margin-top: 6px; text-transform: uppercase; letter-spacing: .22em; font-size: .56rem; font-weight: 600; color: var(--color-primary-dark); }
.brand-copy i { width: 3px; height: 3px; border-radius: 50%; background: var(--color-gold); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: .95rem;
}
.main-nav a:hover { color: var(--color-primary-dark); }
.nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(150, 105, 77, .28);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(150, 105, 77, .36); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; }

/* ---------- Flash messages ---------- */
.flash { padding: 14px 0; text-align: center; font-weight: 500; }
.flash-success { background: #e5f2ea; color: #2f6b47; }
.flash-error { background: #fbe7e5; color: #a83b30; }

/* ---------- Hero dividido (estilo apresentação SaaS) ---------- */
.hero { position: relative; padding: 100px 0 118px; overflow: hidden; }
.hero::after { content: ''; position: absolute; width: 340px; height: 340px; left: -190px; top: 34%; border: 1px solid rgba(201,133,151,.22); border-radius: 50%; box-shadow: 0 0 0 38px rgba(201,133,151,.035), 0 0 0 76px rgba(201,133,151,.025); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero-content { opacity: 0; animation: heroFadeUp 1s cubic-bezier(.2,.75,.25,1) .05s forwards; }
.hero-content h1 { max-width: 590px; font-size: clamp(3rem, 5.25vw, 5rem); letter-spacing: -.045em; line-height: 1.02; margin-bottom: .34em; }
.hero-lead { font-size: 1.08rem; line-height: 1.82; max-width: 540px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.hero-eyebrow i { width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--color-primary)); }
.hero-eyebrow i:last-child { transform: scaleX(-1); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 30px 0 34px; }

.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  padding: 9px 15px 9px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.hero-badge strong { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #fae8ed; color: var(--color-primary-dark); font-family: var(--font-heading); font-size: .68rem; }

.hero-visual { position: relative; opacity: 0; animation: heroFadeUp 1s cubic-bezier(.2,.75,.25,1) .24s forwards; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -50px;
  z-index: -1;
  filter: blur(60px);
  background:
    radial-gradient(circle at 25% 20%, rgba(222, 154, 174, .48), transparent 60%),
    radial-gradient(circle at 80% 85%, rgba(246, 207, 218, .52), transparent 60%);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Carousel (card dentro do hero) ---------- */
.carousel {
  position: relative;
  overflow: hidden;
  height: 510px;
  border-radius: 34px 34px 130px 34px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, .4);
}
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, transform 1.15s cubic-bezier(.2,.75,.25,1);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.carousel-slide::before { content: ''; position: absolute; width: 360px; height: 360px; right: -80px; top: -80px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.05), 0 0 0 70px rgba(255,255,255,.035); }
.carousel-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.carousel-slide:not(.is-active) { transform: scale(1.035); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(71,35,47,.03) 22%, rgba(60,30,40,.76) 100%); }
.slide-content { position: relative; z-index: 2; color: #fff; padding: 48px 44px; max-width: 90%; }
.slide-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; letter-spacing: -.025em; margin-bottom: .24em; opacity: 0; transform: translateY(22px); }
.slide-content p { color: rgba(255,255,255,.88); font-size: .98rem; margin-bottom: 1.2em; opacity: 0; transform: translateY(18px); }
.slide-content .btn { opacity: 0; transform: translateY(14px); }
.carousel-slide.is-active .slide-content h2 { animation: slideTextIn .7s ease .18s forwards; }
.carousel-slide.is-active .slide-content p { animation: slideTextIn .7s ease .3s forwards; }
.carousel-slide.is-active .slide-content .btn { animation: slideTextIn .7s ease .42s forwards; }
@keyframes slideTextIn { to { opacity: 1; transform: translateY(0); } }
.btn-sm-hero { padding: 10px 22px; font-size: .85rem; }

.gradient-1 { background-image: radial-gradient(circle at 78% 18%, rgba(255,255,255,.28), transparent 28%), linear-gradient(145deg, #e8b6c4, #b96882 58%, #754052); }
.gradient-2 { background-image: radial-gradient(circle at 22% 12%, rgba(255,255,255,.3), transparent 30%), linear-gradient(145deg, #eed5dc, #c9899b 52%, #8f5d6b); }
.gradient-3 { background-image: radial-gradient(circle at 78% 22%, rgba(255,255,255,.32), transparent 29%), linear-gradient(145deg, #e7cad2, #b8798c 55%, #6e4553); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  z-index: 3;
  transition: background .2s ease;
}
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }
.carousel-arrow:hover { background: rgba(255, 255, 255, .55); }

.carousel-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.55); border: none; cursor: pointer; padding: 0; }
.dot.is-active { background: #fff; }

/* Cartoes flutuantes de vidro (toque "produto SaaS premium") */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 14px 20px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--shadow-premium);
  z-index: 4;
}
.floating-card span { font-size: 1.15rem; }
.floating-card-1 { top: -18px; right: 8%; animation: floatCard 4.6s ease-in-out infinite; }
.floating-card-2 { bottom: -18px; left: 6%; animation: floatCard 5.2s ease-in-out .8s infinite; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-heading { text-align: center; max-width: 620px; margin: 0 auto 56px; }

/* ---------- Animacao de entrada ao rolar ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.services-grid .reveal:nth-child(2), .testimonials-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3), .testimonials-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5) { transition-delay: .32s; }
.services-grid .reveal:nth-child(6) { transition-delay: .4s; }

/* Quem somos */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-highlights { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.highlight { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.highlight span { font-size: 1.4rem; }
.highlight p { margin: 0; color: var(--color-text); }
.about-visual {
  position: relative;
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, .35);
}
.about-photo-card { height: 430px; max-width: 480px; margin-left: auto; padding: 0; background: #f4d7df; }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.about-photo-card::before { display: none; }
.about-photo-card::after { pointer-events: none; }
.about-visual::before {
  content: '';
  position: absolute;
  inset: -40px;
  z-index: -1;
  filter: blur(55px);
  background: radial-gradient(circle at 30% 30%, rgba(111, 143, 127, .4), transparent 65%);
}
.about-emoji { font-size: 5rem; }
.about-badge { bottom: -16px; right: -16px; top: auto; left: auto; }

/* Servicos */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-premium); background: var(--glass-bg-strong); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: .4em; }
.service-price { display: inline-block; font-size: .85rem; font-weight: 600; color: var(--color-secondary); margin-bottom: 10px; }
.service-link { display: block; text-decoration: none; color: var(--color-primary-dark); font-weight: 600; margin-top: 8px; }

/* Depoimentos */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-premium); background: var(--glass-bg-strong); }
.testimonial-stars { color: var(--color-gold); letter-spacing: 3px; font-size: 1rem; margin-bottom: 14px; }
.testimonial-message { font-style: italic; color: var(--color-text); font-size: .96rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.testimonial-author strong { display: block; font-size: .92rem; }
.testimonial-author span { font-size: .78rem; color: var(--color-text-light); }

/* Formularios (agendar / contato) */
.form-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.card-form {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-premium);
}
.form-row { margin-bottom: 18px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(53, 48, 44, .14);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: rgba(255, 255, 255, .55);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(180, 136, 107, .15);
  background: rgba(255, 255, 255, .85);
}
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #2c2924, #211e1a);
  color: #d9d2ca;
  padding-top: 64px;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-secondary));
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(500px circle at 15% 0%, rgba(180, 136, 107, .12), transparent 60%),
    radial-gradient(500px circle at 85% 100%, rgba(111, 143, 127, .12), transparent 60%);
}
.site-footer .footer-grid, .site-footer .footer-bottom .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; color: #d9d2ca; text-decoration: none; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-col p { color: #b7ada2; margin-bottom: 8px; }
.footer-logo .brand-mark { width: 58px; height: 58px; }
.footer-logo .brand-copy strong { color: #fff; }
.footer-logo .brand-copy small { color: #eac7d1; }
.social-links { display: flex; gap: 14px; margin-top: 14px; }
.social-links a { margin: 0; }
.footer-bottom { position: relative; border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .85rem; color: #9a9086; }
.footer-bottom .container { display: flex; justify-content: space-between; width: 100%; flex-wrap: wrap; gap: 10px; }
.admin-link { color: #9a9086 !important; text-decoration: underline !important; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2fce6c, #25d366);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  z-index: 50;
  border: 1px solid rgba(255, 255, 255, .4);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); }

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
}

@media (max-width: 900px) {
  .about-grid, .form-grid { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 72px; }
  .carousel { height: 340px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy small { font-size: .48rem; }
  .floating-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content, .hero-visual, .reveal, .floating-card, .slide-content h2, .slide-content p, .slide-content .btn { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Direcao visual 2026 — consultorio farmaceutico premium
   ========================================================= */
:root {
  --color-primary: #c97991;
  --color-primary-dark: #7d3f52;
  --color-primary-light: #f5dce3;
  --color-secondary: #705b55;
  --color-secondary-light: #e7d8d2;
  --color-gold: #b69366;
  --color-bg: #fffaf9;
  --color-bg-alt: #fbf1f3;
  --color-text: #34272b;
  --color-text-light: #75666a;
  --color-border: rgba(92, 51, 64, .12);
  --glass-bg: rgba(255, 252, 251, .78);
  --glass-bg-strong: rgba(255, 253, 252, .94);
  --glass-border: rgba(255, 255, 255, .82);
  --radius: 18px;
  --shadow-soft: 0 14px 42px rgba(85, 48, 59, .07);
  --shadow-premium: 0 28px 70px rgba(94, 49, 62, .14);
}

body {
  background: #fffaf9;
  letter-spacing: -.005em;
}

body::before {
  background:
    radial-gradient(700px circle at -5% 6%, rgba(237, 191, 203, .3), transparent 64%),
    radial-gradient(560px circle at 105% 36%, rgba(244, 217, 223, .36), transparent 63%),
    linear-gradient(180deg, #fffaf9 0%, #fffdfc 55%, #fff8f8 100%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .24;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(125,63,82,.08) 0 1px, transparent 1.2px),
    radial-gradient(circle at 75% 65%, rgba(182,147,102,.07) 0 1px, transparent 1.2px);
  background-size: 26px 26px, 31px 31px;
}

h1, h2, h3, h4 { font-weight: 600; }
h2 { font-size: clamp(2.15rem, 4vw, 3.5rem); letter-spacing: -.035em; }
p { line-height: 1.75; }

.container { max-width: 1220px; }

.eyebrow {
  position: relative;
  padding-left: 42px;
  letter-spacing: .18em;
  font-size: .7rem;
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
}

.gradient-text {
  background: linear-gradient(128deg, #39282e 8%, #713e4e 55%, #bb7188 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn {
  padding: 14px 27px;
  border-radius: 8px;
  font-size: .9rem;
  letter-spacing: .02em;
}

.btn-primary {
  background: linear-gradient(135deg, #b9627d, #823f54);
  box-shadow: 0 12px 26px rgba(130, 63, 84, .22);
}

.btn-primary:hover { box-shadow: 0 17px 36px rgba(130, 63, 84, .3); }

.btn-outline {
  background: rgba(255,255,255,.44);
  border: 1px solid rgba(125,63,82,.25);
  color: var(--color-primary-dark);
}

.site-header {
  background: rgba(255,250,249,.82);
  border-bottom: 1px solid rgba(125,63,82,.08);
}

.site-header.is-scrolled { background: rgba(255,250,249,.96); }
.header-inner { height: 78px; }
.brand-mark { box-shadow: none; background: transparent; }
.brand-copy strong { font-size: 1.06rem; letter-spacing: .12em; }
.brand-copy small { color: var(--color-primary-dark); }
.main-nav { gap: 25px; }
.main-nav a { font-size: .84rem; letter-spacing: .015em; }
.nav-cta { border-radius: 7px; padding: 11px 18px; box-shadow: 0 10px 24px rgba(125,63,82,.18); }

.hero { padding: 92px 0 110px; }

.hero::before {
  content: 'T';
  position: absolute;
  right: -1vw;
  top: -80px;
  color: rgba(179, 109, 130, .035);
  font-family: var(--font-heading);
  font-size: min(42vw, 590px);
  line-height: 1;
  pointer-events: none;
}

.hero::after { border-color: rgba(182,147,102,.18); }
.hero-grid { grid-template-columns: .95fr 1.05fr; gap: 76px; }
.hero-content h1 { font-size: clamp(3.35rem, 5.5vw, 5.25rem); line-height: .99; }
.hero-lead { font-size: 1.04rem; max-width: 570px; }
.hero-eyebrow { display: inline-block; }
.hero-eyebrow i { display: none; }
.hero-actions { margin: 33px 0 39px; }

.hero-badges { gap: 8px 18px; }
.hero-badge {
  background: transparent;
  backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 18px 0 0;
  color: #68565b;
  font-size: .76rem;
  border-right: 1px solid rgba(125,63,82,.14);
}
.hero-badge:last-child { border-right: 0; }
.hero-badge strong {
  width: 25px;
  height: 25px;
  background: #f7e6ea;
  font-family: var(--font-body);
  font-size: .58rem;
}

.carousel {
  height: 570px;
  border-radius: 160px 18px 18px 18px;
  box-shadow: 0 35px 80px rgba(84, 43, 56, .19);
  border: 8px solid rgba(255,255,255,.7);
}

.carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: inherit;
}

.slide-overlay { background: linear-gradient(180deg, rgba(53,30,38,.02) 20%, rgba(48,25,33,.76) 100%); }
.slide-content { padding: 52px 46px; max-width: 92%; }
.slide-content h2 { font-size: clamp(2rem, 3vw, 3rem); }
.gradient-1 { background-image: radial-gradient(circle at 75% 16%, rgba(255,255,255,.3), transparent 26%), linear-gradient(150deg, #e8bdc9, #bf748a 56%, #673a49); }
.gradient-2 { background-image: radial-gradient(circle at 22% 14%, rgba(255,255,255,.28), transparent 27%), linear-gradient(150deg, #efd9df, #c9879a 54%, #76505c); }
.gradient-3 { background-image: radial-gradient(circle at 74% 19%, rgba(255,255,255,.29), transparent 25%), linear-gradient(150deg, #e7cbd3, #ae6d81 58%, #54323d); }

.floating-card {
  border-radius: 10px;
  padding: 13px 17px;
  font-size: .78rem;
  background: rgba(255,253,252,.88);
}
.floating-card > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f7e2e8;
  color: var(--color-primary-dark);
  font-size: .9rem;
}
.floating-card small { display: block; color: var(--color-text-light); font-size: .62rem; font-weight: 500; letter-spacing: .04em; }
.floating-card-1 { top: 34px; right: -22px; }
.floating-card-2 { bottom: 30px; left: -30px; }

.trust-strip {
  border-top: 1px solid rgba(125,63,82,.08);
  border-bottom: 1px solid rgba(125,63,82,.08);
  background: rgba(255,255,255,.45);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; padding: 25px 27px; border-right: 1px solid rgba(125,63,82,.08); }
.trust-grid p:first-child { padding-left: 0; }
.trust-grid p:last-child { border-right: 0; }
.trust-grid strong { display: block; margin-bottom: 3px; color: var(--color-primary-dark); font-family: var(--font-heading); font-size: .98rem; }
.trust-grid span { display: block; font-size: .72rem; line-height: 1.45; color: var(--color-text-light); }

.section { padding: 112px 0; }
.section-alt { background: linear-gradient(180deg, rgba(251,241,243,.72), rgba(254,248,248,.85)); }
.section-heading { max-width: 700px; margin-bottom: 62px; }
.section-heading p { max-width: 620px; margin: 0 auto; }

.about-grid { gap: 86px; }
.about-text > p { max-width: 620px; }
.about-highlights { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid rgba(125,63,82,.12); }
.highlight { padding: 13px 0; border-bottom: 1px solid rgba(125,63,82,.12); }
.highlight span { min-width: 36px; color: var(--color-gold); font-family: var(--font-heading); font-size: .72rem; }
.highlight p { font-size: .88rem; }

.about-visual {
  height: 510px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 38%, rgba(255,255,255,.44), transparent 24%),
    linear-gradient(145deg, #ecd0d8, #ca8599 57%, #7e4557);
  border-radius: 18px 130px 18px 18px;
}
.about-visual::before { background: radial-gradient(circle at 30% 30%, rgba(196,112,137,.25), transparent 66%); }
.about-monogram { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; color: #fff; text-align: center; }
.about-monogram span { display: grid; place-items: center; width: 78px; height: 78px; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; font-family: var(--font-heading); font-size: 2.3rem; font-weight: 300; margin-bottom: 19px; }
.about-monogram strong { font-family: var(--font-heading); font-size: 1.7rem; letter-spacing: .04em; }
.about-monogram small { margin-top: 4px; text-transform: uppercase; letter-spacing: .18em; font-size: .57rem; color: rgba(255,255,255,.8); }
.about-line { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.about-line-one { width: 330px; height: 330px; }
.about-line-two { width: 430px; height: 430px; }
.about-badge { right: -18px; bottom: 28px; }

.services-grid { gap: 18px; }
.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  background: rgba(255,253,252,.74);
  border-color: rgba(125,63,82,.1);
  border-radius: 13px;
}
.service-card::before { height: 2px; background: linear-gradient(90deg, var(--color-gold), var(--color-primary)); }
.service-card:hover { transform: translateY(-6px); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: #faeaee; font-size: 1.25rem; }
.service-card h3 { font-size: 1.3rem; }
.service-card p { font-size: .87rem; }
.service-price { margin-top: auto; color: var(--color-gold); }
.service-link { font-size: .8rem; letter-spacing: .04em; }

.section-heading-left { text-align: left; max-width: 780px; margin-left: 0; }
.care-journey { background: #56343f; color: #fff; position: relative; overflow: hidden; }
.care-journey::after { content: '+'; position: absolute; right: -40px; bottom: -200px; font-family: var(--font-heading); font-size: 36rem; line-height: 1; color: rgba(255,255,255,.025); }
.care-journey .eyebrow { color: #efcbd5; }
.care-journey .eyebrow::before { background: #c7a77f; }
.care-journey h2 { color: #fff; max-width: 760px; }
.journey-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.14); }
.journey-step { padding: 39px 42px 10px 0; margin-right: 42px; border-right: 1px solid rgba(255,255,255,.14); }
.journey-step:last-child { border-right: 0; margin-right: 0; }
.journey-step > span { color: #d9b386; font-family: var(--font-heading); font-size: .78rem; }
.journey-step h3 { color: #fff; margin: 18px 0 10px; font-size: 1.35rem; }
.journey-step p { color: rgba(255,255,255,.66); font-size: .87rem; }

.testimonial-card { background: rgba(255,253,252,.72); border-color: rgba(125,63,82,.1); border-radius: 13px; }
.testimonial-message { font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.7; }

.form-grid { gap: 84px; }
.form-intro { position: sticky; top: 150px; }
.form-assurance { display: flex; gap: 13px; align-items: flex-start; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(125,63,82,.12); }
.form-assurance > span { display: grid; place-items: center; min-width: 30px; height: 30px; border-radius: 50%; background: #f5e1e7; color: var(--color-primary-dark); font-size: .75rem; }
.form-assurance p { font-size: .78rem; line-height: 1.5; }
.form-assurance strong { display: block; color: var(--color-text); }
.card-form { border-radius: 13px; padding: 42px; box-shadow: 0 28px 70px rgba(94,49,62,.12); border-color: rgba(125,63,82,.1); }
.form-row label { font-size: .75rem; letter-spacing: .02em; }
.form-row input, .form-row select, .form-row textarea { border-radius: 7px; border-color: rgba(83,49,59,.16); background: rgba(255,255,255,.76); padding: 13px 14px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { box-shadow: 0 0 0 4px rgba(201,121,145,.12); }

.site-footer { background: linear-gradient(145deg, #35252a, #24191d); }
.site-footer::before { background: linear-gradient(90deg, var(--color-gold), var(--color-primary), var(--color-gold)); height: 1px; }
.footer-tagline { max-width: 370px; margin-top: 18px; }
.whatsapp-float { width: 54px; height: 54px; font-size: 1.45rem; }

@media (max-width: 1080px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: .78rem; }
  .hero-grid { gap: 44px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid p:nth-child(2) { border-right: 0; }
  .trust-grid p:nth-child(3), .trust-grid p:nth-child(4) { border-top: 1px solid rgba(125,63,82,.08); }
}

@media (max-width: 960px) {
  .hero { padding-top: 70px; }
  .hero-content { text-align: left; }
  .hero-lead { margin-left: 0; }
  .hero-actions, .hero-badges { justify-content: flex-start; }
  .carousel { height: 500px; }
}

@media (max-width: 900px) {
  .about-grid, .form-grid { gap: 52px; }
  .form-intro { position: static; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); margin-right: 0; padding-right: 0; padding-bottom: 28px; }
  .journey-step:last-child { border-bottom: 0; }
}

@media (max-width: 720px) {
  .main-nav { top: 78px; background: rgba(255,250,249,.97); }
  .hero { padding: 48px 0 72px; }
  .hero-content h1 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .hero-badge { width: 100%; border-right: 0; }
  .carousel { height: 410px; border-radius: 90px 14px 14px 14px; border-width: 5px; }
  .slide-content { padding: 38px 28px; }
  .trust-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .trust-grid p, .trust-grid p:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(125,63,82,.08); }
  .trust-grid p:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 42px; }
  .about-visual { height: 400px; border-radius: 14px 90px 14px 14px; }
  .card-form { padding: 27px 20px; }
}

/* =========================================================
   Evolucao futurista — soft-tech healthcare
   ========================================================= */
:root {
  --color-primary: #e47f9d;
  --color-primary-dark: #682c43;
  --color-primary-light: #ffe3ec;
  --color-gold: #d5ae78;
  --color-bg: #fff9fb;
  --color-bg-alt: #fdf0f5;
  --color-text: #261d22;
  --color-text-light: #706168;
  --font-heading: 'Sora', Arial, sans-serif;
  --font-body: 'Manrope', Arial, sans-serif;
  --radius: 24px;
  --neon-pink: #ff8caf;
  --deep-wine: #3b1725;
  --line-pink: rgba(216, 101, 137, .15);
  --glow-pink: 0 22px 70px rgba(221, 98, 137, .18);
}

body {
  background: #fff9fb;
  font-size: 15px;
}

body::before {
  background:
    radial-gradient(900px circle at 82% 6%, rgba(255, 162, 191, .2), transparent 62%),
    radial-gradient(720px circle at -8% 32%, rgba(231, 135, 164, .15), transparent 63%),
    linear-gradient(180deg, #fff9fb 0%, #fffefe 48%, #fff6f9 100%);
}

body::after {
  opacity: .34;
  background-image:
    linear-gradient(rgba(175, 76, 106, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 76, 106, .038) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

h1, h2, h3, h4 { letter-spacing: -.045em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.65rem); }

.site-header {
  background: rgba(255, 249, 251, .72);
  border-bottom: 1px solid rgba(135, 52, 79, .09);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,113,149,.45), transparent);
}

.header-inner { height: 84px; }
.brand-mark { width: 48px; height: 48px; }
.brand-copy strong { font-family: var(--font-heading); font-size: .98rem; font-weight: 700; }
.brand-copy small { font-size: .5rem; }
.main-nav a { font-weight: 600; font-size: .78rem; }

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.35);
  background: linear-gradient(135deg, #e17295, #7a304a);
  box-shadow: 0 12px 28px rgba(126, 46, 72, .2), inset 0 1px rgba(255,255,255,.28);
}

.hero {
  min-height: calc(100vh - 84px);
  padding: 80px 0 96px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  width: 620px;
  height: 620px;
  right: -250px;
  top: -140px;
  border: 1px solid rgba(219, 105, 141, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(219,105,141,.025), 0 0 0 140px rgba(219,105,141,.018);
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -150px;
  top: 62%;
  border-color: rgba(219,105,141,.13);
  box-shadow: 0 0 0 44px rgba(219,105,141,.024), 0 0 0 88px rgba(219,105,141,.016);
}

.hero-grid { grid-template-columns: .92fr 1.08fr; gap: 72px; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(200,78,116,.13);
  border-radius: 999px;
  color: #8d4960;
  background: rgba(255,255,255,.56);
  box-shadow: inset 0 1px rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .56rem;
  font-weight: 700;
}

.hero-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ea779a;
  box-shadow: 0 0 0 5px rgba(234,119,154,.12), 0 0 18px rgba(234,119,154,.6);
  animation: statusPulse 2.1s ease-in-out infinite;
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 0 8px rgba(234,119,154,.04), 0 0 24px rgba(234,119,154,.72); }
}

.hero-eyebrow { margin-bottom: 13px; }
.hero-content h1 {
  font-size: clamp(3.25rem, 5.2vw, 5.1rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.065em;
}

.gradient-text {
  background: linear-gradient(115deg, #261b20 8%, #59283a 53%, #dd7193 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead { font-size: 1rem; max-width: 560px; }

.btn {
  border-radius: 12px;
  padding: 15px 25px;
  font-size: .82rem;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, #df7193, #743047);
  box-shadow: 0 14px 36px rgba(132, 49, 75, .24), inset 0 1px rgba(255,255,255,.32);
}

.btn-outline {
  background: rgba(255,255,255,.5);
  border-color: rgba(126,46,72,.16);
  box-shadow: inset 0 1px rgba(255,255,255,.9);
}

.hero-badges { gap: 13px; }
.hero-badge {
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(130,49,76,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.42);
  box-shadow: inset 0 1px rgba(255,255,255,.8);
}
.hero-badge:last-child { border: 1px solid rgba(130,49,76,.08); }
.hero-badge strong { border-radius: 7px; background: linear-gradient(145deg, #ffe4ec, #f6ccd8); }

.hero-proof {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  align-items: start;
  max-width: 470px;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid rgba(126,46,72,.1);
}
.hero-proof > span { color: #d66d8e; font-family: var(--font-heading); font-size: .65rem; font-weight: 700; }
.hero-proof p { margin: 0; font-size: .72rem; line-height: 1.55; }
.hero-proof strong { display: block; color: var(--color-text); font-size: .78rem; }

.hero-visual { padding: 20px 20px 20px 0; }
.hero-visual::before { inset: -70px; filter: blur(75px); opacity: .72; }

.carousel {
  height: 590px;
  border-radius: 34px 160px 34px 34px;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(255,255,255,.4);
  box-shadow: 0 38px 90px rgba(94,38,56,.2), inset 0 0 0 8px rgba(255,255,255,.24);
}

.carousel::before {
  content: '';
  position: absolute;
  inset: 14px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px 142px 24px 24px;
}

.carousel-slide { border-radius: inherit; }
.slide-overlay { background: linear-gradient(180deg, rgba(39,17,25,.04), rgba(43,17,27,.78)); }
.slide-content { padding: 58px 52px; }
.slide-content h2 { font-weight: 500; letter-spacing: -.045em; }
.carousel-dots { bottom: 25px; }
.dot { width: 22px; height: 3px; border-radius: 3px; }

.floating-card {
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 14px;
  background: rgba(255, 249, 251, .77);
  box-shadow: 0 20px 55px rgba(84,37,52,.16), inset 0 1px rgba(255,255,255,.9);
}
.floating-card > span { border-radius: 10px; background: linear-gradient(145deg, #ffe5ed, #f1bdcd); box-shadow: inset 0 1px rgba(255,255,255,.7); }
.floating-card-1 { top: 70px; right: -14px; }
.floating-card-2 { bottom: 74px; left: -34px; }

.visual-orbit {
  position: absolute;
  right: -36px;
  bottom: 6px;
  width: 112px;
  height: 112px;
  z-index: 4;
  border: 1px solid rgba(208,94,130,.18);
  border-radius: 50%;
  animation: orbitRotate 14s linear infinite;
}
.visual-orbit::before { content: ''; position: absolute; inset: 17px; border: 1px dashed rgba(208,94,130,.23); border-radius: 50%; }
.visual-orbit i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #e57598; box-shadow: 0 0 16px rgba(229,117,152,.7); }
.visual-orbit i:nth-child(1) { top: -4px; left: 51px; }
.visual-orbit i:nth-child(2) { right: 9px; bottom: 15px; width: 5px; height: 5px; }
.visual-orbit i:nth-child(3) { left: 7px; bottom: 20px; width: 4px; height: 4px; }
@keyframes orbitRotate { to { transform: rotate(360deg); } }

.trust-strip { border: 0; background: transparent; margin-top: -28px; position: relative; z-index: 8; }
.trust-grid {
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(145,52,82,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 18px 55px rgba(90,39,56,.08), inset 0 1px rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
}
.trust-grid p, .trust-grid p:first-child {
  position: relative;
  padding: 18px 19px 18px 38px;
  border-right: 1px solid rgba(125,63,82,.08);
}
.trust-grid p::before { content: ''; position: absolute; left: 17px; top: 25px; width: 8px; height: 8px; border-radius: 3px; background: #e6799a; box-shadow: 0 0 0 5px rgba(230,121,154,.09); }
.trust-grid strong { font-family: var(--font-heading); font-size: .82rem; }

.section { padding: 124px 0; }
.section-alt {
  position: relative;
  background:
    radial-gradient(600px circle at 100% 0%, rgba(235,130,163,.11), transparent 65%),
    linear-gradient(180deg, rgba(252,239,244,.72), rgba(255,249,251,.82));
}
.section-heading h2 { font-weight: 500; }
.eyebrow { font-size: .63rem; }

.about-grid { gap: 90px; }
.about-visual {
  height: 530px;
  border-radius: 38px 150px 38px 38px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.28), transparent 24%),
    linear-gradient(145deg, #ffd9e5 0%, #d97896 52%, #522238 100%);
  box-shadow: 0 34px 90px rgba(102,39,59,.2), inset 0 1px rgba(255,255,255,.42);
}
.about-visual::after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 27px 133px 27px 27px; }
.about-interface { position: absolute; z-index: 4; top: 38px; left: 38px; right: 52px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.76); font-size: .47rem; letter-spacing: .14em; font-weight: 700; }
.about-interface i { flex: 1; height: 1px; background: rgba(255,255,255,.25); }
.about-monogram span { border: 1px solid rgba(255,255,255,.5); box-shadow: 0 0 0 12px rgba(255,255,255,.05), 0 0 70px rgba(255,255,255,.18); }
.about-monogram strong { font-family: var(--font-heading); font-weight: 500; }
.about-pulse { position: absolute; z-index: 5; bottom: 38px; left: 38px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.74); text-transform: uppercase; letter-spacing: .12em; font-size: .48rem; }
.about-pulse i { width: 7px; height: 7px; border-radius: 50%; background: #ffd2df; box-shadow: 0 0 15px rgba(255,210,223,.75); }
.about-badge { right: -25px; }

.about-highlights { border-top: 0; gap: 9px; }
.highlight {
  padding: 13px 15px;
  border: 1px solid rgba(125,46,72,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.44);
}
.highlight span { color: #d76f90; }

.services-grid { grid-template-columns: repeat(12, 1fr); gap: 16px; counter-reset: service; }
.service-card { grid-column: span 4; min-height: 300px; border-radius: 20px; border-color: rgba(139,48,78,.09); background: rgba(255,255,255,.64); box-shadow: inset 0 1px rgba(255,255,255,.9); }
.service-card:nth-child(1), .service-card:nth-child(5) { grid-column: span 5; }
.service-card:nth-child(2), .service-card:nth-child(6) { grid-column: span 3; }
.service-card:nth-child(3), .service-card:nth-child(4) { grid-column: span 4; }
.service-card { counter-increment: service; }
.service-card::after { content: '0' counter(service); position: absolute; right: 22px; top: 20px; color: rgba(116,48,71,.22); font-size: .6rem; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(213,100,135,.25); box-shadow: var(--glow-pink); }
.service-icon { border-radius: 13px; background: linear-gradient(145deg, #ffeaf0, #f5cbd8); box-shadow: inset 0 1px #fff; }
.service-card h3 { font-family: var(--font-heading); font-weight: 600; }

.care-journey {
  background:
    radial-gradient(650px circle at 95% 18%, rgba(234,112,149,.2), transparent 60%),
    linear-gradient(135deg, #32131f, #5b2639 65%, #32151f);
}
.care-journey::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 54px 54px; }
.care-journey::after { color: rgba(255,255,255,.018); }
.journey-grid { border-top-color: rgba(255,255,255,.11); }
.journey-step { position: relative; padding-top: 46px; }
.journey-step::before { content: ''; position: absolute; left: 0; top: -4px; width: 8px; height: 8px; border-radius: 3px; background: #ef86a6; box-shadow: 0 0 0 7px rgba(239,134,166,.08), 0 0 22px rgba(239,134,166,.4); }
.journey-step h3 { font-family: var(--font-heading); font-weight: 500; }

.testimonial-card, .card-form {
  border-radius: 20px;
  background: rgba(255,255,255,.62);
  border-color: rgba(139,48,78,.09);
  box-shadow: inset 0 1px rgba(255,255,255,.9);
}
.testimonial-card:hover { box-shadow: var(--glow-pink); border-color: rgba(213,100,135,.2); }
.testimonial-message { font-family: var(--font-body); font-size: .94rem; }
.testimonial-avatar-initial { background: linear-gradient(145deg, #e87d9e, #733047); }

.card-form { box-shadow: 0 30px 80px rgba(99,36,57,.11), inset 0 1px rgba(255,255,255,.95); }
.form-row input, .form-row select, .form-row textarea { border-radius: 11px; background: rgba(255,255,255,.7); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: #df7b99; box-shadow: 0 0 0 4px rgba(224,113,147,.11), 0 8px 24px rgba(158,62,92,.08); }

.site-footer { background: linear-gradient(145deg, #2e111b, #190c11); }
.whatsapp-float { border-radius: 17px; }

@media (max-width: 1080px) {
  .hero-grid { gap: 46px; }
  .service-card, .service-card:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 600px; }
  .trust-strip { margin-top: 0; }
}

@media (max-width: 720px) {
  .header-inner { height: 76px; }
  .main-nav { top: 76px; }
  .hero { padding-top: 42px; }
  .hero-status { font-size: .48rem; letter-spacing: .09em; }
  .hero-content h1 { font-size: clamp(2.7rem, 13vw, 3.8rem); }
  .hero-visual { padding-right: 0; }
  .carousel { height: 430px; border-radius: 26px 90px 26px 26px; }
  .carousel::before { border-radius: 18px 76px 18px 18px; }
  .visual-orbit { display: none; }
  .trust-grid { padding: 10px 20px; border-radius: 18px; }
  .trust-grid p, .trust-grid p:first-child { padding-left: 30px; }
  .trust-grid p::before { left: 8px; }
  .service-card, .service-card:nth-child(n) { grid-column: span 12; }
  .about-visual { border-radius: 28px 90px 28px 28px; }
  .about-photo-card { width: 100%; height: 350px; max-width: none; }
  .about-interface { left: 26px; right: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-status i, .visual-orbit { animation: none !important; }
}
