

/* ============================================================
   ORIGINAL SITE CSS (preservado integralmente)
============================================================ */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #ffffff;
    --cream-dark: #fdeef2;
    --cream-mid: #f5f5f5;
    --charcoal: #111111;
    --charcoal-soft: #2a2a2a;
    --rose: #c0607a;
    --rose-light: #d4849a;
    --rose-pale: #fde8ed;
    --text-muted: #999999;
    --text-body: #444444;
    --border: #e8e8e8;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1000;
  }

  /* Rose petal accent top right */
  #hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #fde8ed 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-cta {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--charcoal);
    padding: 10px 20px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--charcoal-soft); }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 120px 48px 80px;
    gap: 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .hero-left { max-width: 560px; }

  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
  }

  .hero-h1 em {
    font-style: italic;
    color: var(--rose);
  }

  .hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 420px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 64px;
  }

  .btn-primary {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--charcoal);
    padding: 16px 28px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover { background: #333; transform: translateY(-1px); }

  .btn-link {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .btn-link:hover { color: var(--charcoal); }

  .hero-badges {
    display: flex;
    gap: 32px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
  }

  .hero-badge {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    align-self: stretch;
  }

  .hero-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    overflow: visible;
    flex: 1;
  }

  .hero-photo {
    width: 100%;
    background: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .hero-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    background: transparent;
  }

  .hero-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }

  .hero-photo-placeholder span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  .hero-caption {
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 20px;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    border-left: none;
    position: relative;
  }

  .hero-caption::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 10px;
    opacity: 1;
  }

  .hero-caption strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
    font-style: italic;
  }

  .hero-caption p {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    text-transform: none;
  }

  /* ===== SECTION BASE ===== */
  section { padding: 100px 48px; }

  .section-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 24px;
  }

  .section-h2 em {
    font-style: italic;
    color: var(--rose);
  }

  /* ===== PAIN SECTION ===== */
  #pain {
    background: var(--cream-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  #pain .section-h2 { margin-bottom: 48px; }

  .pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
  }

  .pain-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .pain-item:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--border); }
  .pain-item:nth-child(even) { padding-left: 48px; }

  .pain-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    min-width: 24px;
    padding-top: 2px;
  }

  .pain-text {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.5;
  }

  .pain-quote {
    text-align: center;
    padding: 64px 0 20px;
  }

  .pain-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-style: italic;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.5;
  }

  .pain-quote em { color: var(--rose); font-style: italic; }

  /* ===== ERROR SECTION ===== */
  #error {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .error-items { display: flex; flex-direction: column; gap: 0; }

  .error-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }

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

  .error-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .error-item p {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .error-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
    border-left: 2px solid var(--rose);
    padding-left: 24px;
    margin-top: 40px;
  }

  /* ===== ABOUT SECTION ===== */
  #about {
    background: var(--white);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
  }

  .about-photo {
    width: 100%;
    background: var(--white);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .about-photo img { width: 100%; height: auto; object-fit: contain; object-position: center top; }

  .about-photo-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-align: center;
    padding: 20px;
  }

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

  .about-bio {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-bio em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--charcoal);
  }

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

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--charcoal);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* ===== AREAS ===== */
  #areas { background: var(--cream-mid); }

  .areas-intro {
    max-width: 680px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 64px;
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border: none;
    margin-top: 0;
  }

  .area-card {
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  }

  .area-card:hover {
    background: var(--rose-pale);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192,96,122,0.08);
  }

  .area-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: block;
  }

  .area-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .area-desc {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .areas-footer-quote {
    text-align: center;
    padding: 64px 0 0;
  }

  .areas-footer-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 16px;
  }

  .areas-footer-quote p em { color: var(--rose); }

  .areas-footer-quote small {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* ===== RESULTS ===== */
  #results {
    background: var(--white);
    padding-bottom: 0;
  }

  .results-header {
    margin-bottom: 48px;
  }

  .results-scroll-wrapper {
    position: relative;
  }

  .results-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 48px;
    cursor: grab;
  }

  .results-track:active { cursor: grabbing; }

  .results-track::-webkit-scrollbar { height: 3px; }
  .results-track::-webkit-scrollbar-track { background: var(--border); }
  .results-track::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 2px; }

  .result-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    min-width: calc(100vw - 96px);
    max-width: 1100px;
    scroll-snap-align: start;
    flex-shrink: 0;
    align-items: start;
    padding-right: 16px;
  }

  .result-card .result-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
  }

  .result-card .result-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }


  .results-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-bottom: 0;
  }

  .results-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--charcoal);
    font-size: 16px;
  }

  .results-nav-btn:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
  }

  .results-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .results-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.2s;
  }

  .results-dot.active {
    background: var(--rose);
    width: 18px;
    border-radius: 3px;
  }

  .result-photo img { width: 100%; height: auto; object-fit: contain; display: block; }

  .result-photo-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
  }

  .result-tag {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .result-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 20px;
  }

  .result-content p {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .result-block {
    margin-bottom: 24px;
  }

  .result-block-title {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
  }

  .result-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .result-list li {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .result-list li::before { content: '*'; color: var(--rose); }

  .result-italic {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
  }

  /* ===== TESTIMONIALS ===== */
  #testimonials { background: var(--cream-mid); }

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

  .testimonial-card {
    background: var(--white);
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: box-shadow 0.3s, transform 0.3s;
  }

  .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(192,112,128,0.12);
  }

  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    flex-shrink: 0;
  }

  .testimonial-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    display: block;
  }

  .testimonial-source {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }

  .testimonial-stars {
    color: #c8a870;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }

  .testimonial-time {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.8;
  }

  .testimonials-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }

  .testimonials-cta small {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .btn-outline {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.2s;
  }

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

  /* ===== METHOD ===== */
  #method { background: var(--cream-mid); }

  .method-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .method-step {
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .method-step:hover { background: var(--rose-pale); transform: translateY(-2px); }

  .method-step-header { display: flex; flex-direction: column; gap: 10px; }

  .step-body { display: flex; flex-direction: column; gap: 10px; }

  .step-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    display: block;
  }

  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.3;
  }

  .step-desc {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.75;
  }

  .step-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--charcoal);
    font-weight: 400;
    border-left: 2px solid var(--rose);
    padding-left: 14px;
    margin-top: 4px;
  }

  .method-footer {
    text-align: center;
    padding-top: 56px;
  }

  .method-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
  }

  .method-footer em { color: var(--rose); }

  /* ===== FOR WHO ===== */
  #forwhom { background: var(--white); }

  .forwhom-intro {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 48px;
    line-height: 1.4;
  }

  .forwhom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 56px;
  }

  .forwhom-card {
    padding: 40px 36px;
    border: 1px solid var(--border);
    border-radius: 16px;
  }

  .forwhom-card.dark {
    background: var(--charcoal);
    border-color: var(--charcoal);
  }

  .forwhom-card.accent {
    background: var(--rose-pale);
    border-color: #f0cdd5;
  }

  .forwhom-card-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: block;
  }

  .forwhom-card.dark .forwhom-card-label { color: rgba(255,255,255,0.4); }
  .forwhom-card.accent .forwhom-card-label { color: var(--rose); }

  .forwhom-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .forwhom-list li {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.55;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .forwhom-list li::before {
    content: '—';
    color: var(--rose);
    font-weight: 400;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .forwhom-card.dark .forwhom-list li { color: rgba(255,255,255,0.85); }
  .forwhom-card.dark .forwhom-list li::before { color: var(--rose-light); }

  .forwhom-card.accent .forwhom-list li::before { content: '✓'; color: var(--rose); font-size: 12px; }

  /* ===== CTA ===== */
  #cta {
    background: var(--charcoal);
    text-align: center;
    padding: 120px 48px;
  }

  #cta .section-label {
    text-align: center;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.35);
  }

  #cta .section-h2 {
    font-size: clamp(36px, 4.5vw, 58px);
    text-align: center;
    margin-bottom: 0;
    color: var(--white);
  }

  #cta .section-h2 em { color: var(--rose-light); }

  .cta-sub {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin: 16px 0 0;
    line-height: 1.7;
  }

  .cta-divider {
    width: 40px;
    height: 1px;
    background: var(--rose);
    margin: 36px auto;
    opacity: 0.6;
  }

  .cta-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-style: italic;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .btn-cta-main {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--white);
    padding: 18px 36px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border-radius: 0;
    border: 1px solid var(--charcoal);
  }

  .btn-cta-main:hover {
    background: var(--rose-pale);
    transform: translateY(-2px);
  }

  #cta small {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-top: 20px;
  }

  /* ===== CLINIC ===== */
  #clinic { background: var(--white); }

  .clinic-photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 48px;
  }

  .clinic-photo {
    overflow: hidden;
    background: var(--cream-mid);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .clinic-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .clinic-photo:hover img { transform: scale(1.02); }

  .clinic-photo-1 { grid-column: 1 / 3; }
  .clinic-photo-2 { grid-column: 3; }
  .clinic-photo-3 { grid-column: 1; }
  .clinic-photo-4 { grid-column: 2; }
  .clinic-photo-5 { grid-column: 3; }
  .clinic-photo-6 { grid-column: 1 / 4; }

  .clinic-caption {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 0;
  }

  .clinic-caption p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    max-width: 560px;
  }

  .clinic-caption small {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--cream-mid);
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-left .footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--charcoal);
    display: block;
    margin-bottom: 4px;
  }

  .footer-tagline {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .footer-left small {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .footer-right {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
  }

  /* ===== WHATSAPP FLOAT ===== */
  .whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--rose);
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 40px;
    box-shadow: 0 4px 24px rgba(192,112,128,0.35);
    transition: transform 0.2s, background 0.2s;
  }

  .whatsapp-float:hover { transform: translateY(-2px); background: var(--rose-light); }

  .whatsapp-float svg { width: 16px; height: 16px; }

  /* ===== INSTAGRAM FLOAT ===== */
  .instagram-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
    transition: transform 0.2s, background 0.2s;
  }

  .instagram-float:hover { transform: translateY(-2px); background: var(--charcoal-soft); }

  .instagram-float svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.25s; }
  .delay-3 { animation-delay: 0.4s; }
  .delay-4 { animation-delay: 0.55s; }

  /* ===== RESPONSIVE ===== */
  /* ===== MOBILE HAMBURGER ===== */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
    border-radius: 2px;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 61px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  .mobile-menu a:last-child { border-bottom: none; margin-top: 16px; }
  .mobile-menu .nav-cta {
    display: inline-block;
    text-align: center;
    padding: 14px 24px;
    color: var(--white);
    background: var(--charcoal);
  }

  @media (max-width: 900px) {
    /* NAV */
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    /* SECTIONS */
    section { padding: 64px 24px; }

    /* HERO */
    #hero {
      grid-template-columns: 1fr;
      padding: 100px 24px 60px;
      min-height: auto;
      overflow: hidden;
    }
    .hero-right { display: flex; align-items: stretch; }
    .hero-photo { aspect-ratio: unset; max-height: none; height: auto; overflow: visible; }
    .hero-photo img { width: 100%; height: auto; object-fit: contain; object-position: center top; }
    .hero-h1 { font-size: clamp(32px, 8vw, 48px); }
    .hero-sub { font-size: 14px; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn-primary { width: 100%; text-align: center; padding: 18px 24px; }
    .hero-badges { flex-wrap: wrap; gap: 16px; }

    /* PAIN */
    #pain .pain-grid { grid-template-columns: 1fr; }
    .pain-item { padding: 20px 0 !important; border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }

    /* ERROR */
    #error { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
    .error-quote { margin-top: 24px; font-size: 18px; }

    /* ABOUT */
    #about { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
    .about-photo { aspect-ratio: unset; max-height: none; height: auto; overflow: visible; }
    .about-photo img { width: 100%; height: auto; object-fit: contain; object-position: center top; }
    .about-stats { gap: 24px; flex-wrap: wrap; }

    /* AREAS */
    .areas-grid { grid-template-columns: 1fr; }
    .area-card { padding: 28px 24px; }

    /* RESULTS */
    #results { display: block; padding: 64px 0 0; }
    #results .results-header { padding: 0 24px; }
    #results .results-nav { padding: 0 24px 48px; }
    .results-track {
      padding-left: 0;
      padding-right: 0;
      gap: 0;
      padding-bottom: 48px;
    }
    .result-card {
      grid-template-columns: 1fr;
      min-width: 100vw;
      max-width: 100vw;
      width: 100vw;
      gap: 0;
      padding: 0 24px;
      box-sizing: border-box;
      height: auto;
    }
    .result-card .result-photo {
      min-height: unset;
      max-height: unset;
      height: auto;
      width: 100%;
      overflow: visible;
    }
    .result-card .result-photo img {
      height: auto;
      width: 100%;
      max-width: 100%;
      object-fit: contain;
      object-position: center top;
      display: block;
    }
    .result-content {
      padding: 28px 0 0;
      width: 100%;
      box-sizing: border-box;
    }
    .result-content h2 { font-size: 22px; }
    .result-content p { font-size: 13px; }
    .result-list li { font-size: 13px; }

    /* TESTIMONIALS */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* METHOD */
    .method-steps { grid-template-columns: 1fr; gap: 12px; }
    .method-step { padding: 24px 20px; }

    /* FOR WHOM */
    .forwhom-grid { grid-template-columns: 1fr; }
    .forwhom-card { padding: 28px 24px; }

    /* CTA */
    #cta { padding: 80px 24px; }
    #cta .section-h2 { font-size: clamp(30px, 8vw, 48px); }

    /* CLINIC */
    .clinic-photos { grid-template-columns: 1fr; }
    .clinic-photo-1,
    .clinic-photo-2,
    .clinic-photo-3,
    .clinic-photo-4,
    .clinic-photo-5,
    .clinic-photo-6 { grid-column: 1; }
    .clinic-photo { overflow: visible; }
    .clinic-photo img { width: 100%; height: auto; object-fit: contain; display: block; }
    .clinic-caption { grid-column: auto; flex-direction: column; gap: 12px; align-items: flex-start; }

    /* SECTION HEADINGS */
    .section-h2 { font-size: clamp(28px, 7vw, 44px); }

    /* FOOTER */
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; }

    /* WHATSAPP */
    .whatsapp-float { bottom: 16px; right: 16px; font-size: 11px; padding: 10px 16px; }
    .instagram-float { bottom: 16px; left: 16px; font-size: 11px; padding: 10px 16px; }
  }

  @media (max-width: 480px) {
    .hero-h1 { font-size: 30px; }
    .section-h2 { font-size: 26px; }
    #cta .section-h2 { font-size: 26px; }
    .hero-badges { gap: 12px; }
    .about-stats { gap: 20px; }
    .stat-num { font-size: 28px; }
    .result-card {
      min-width: 100vw;
      max-width: 100vw;
      width: 100vw;
      padding: 0 24px;
      box-sizing: border-box;
      height: auto;
    }
    .result-card .result-photo { min-height: unset; max-height: unset; height: auto; width: 100%; overflow: visible; }
    .result-card .result-photo img { height: auto; width: 100%; max-width: 100%; object-fit: contain; object-position: center top; display: block; }
    .result-content { padding: 24px 0 0; width: 100%; box-sizing: border-box; }
    .method-steps { grid-template-columns: 1fr; }
    nav { padding: 14px 20px; }
  }

/* ===== CLINICA GALLERY ===== */
#clinica-gallery {
  background: var(--charcoal);
  padding: 100px 48px;
  overflow: hidden;
}

#clinica-gallery .section-label { color: rgba(255,255,255,0.35); }
#clinica-gallery .section-h2 { color: var(--white); margin-bottom: 56px; }
#clinica-gallery .section-h2 em { color: var(--rose-light); }

.gallery-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
  margin-bottom: 12px;
}

.gallery-hero-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

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

.gallery-hero-side .gallery-item {
  flex: 1;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #1a1a1a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.88);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay strong {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  font-style: italic;
}

.gallery-item-overlay span {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

/* Hero main bigger overlay */
.gallery-hero-main .gallery-item-overlay {
  padding: 28px 32px;
}
.gallery-hero-main .gallery-item-overlay strong {
  font-size: 20px;
}
.gallery-hero-main .gallery-item-overlay span {
  font-size: 11px;
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border: none;
  display: block;
}
.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
}
.gallery-lightbox-close:hover { color: white; }

@media (max-width: 768px) {
  .gallery-hero { grid-template-columns: 1fr; }
  .gallery-hero-side { flex-direction: row; }
  .gallery-row { grid-template-columns: repeat(2, 1fr); }
}



/* ============================================================
   PRÉ-HOME: estilos adicionais (não conflitam com o original)
============================================================ */

/* Page switching */
.pg { display: none; overflow-x: hidden; }
.pg.active { display: block; }

/* ── Landing header ── */
.lnd-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.lnd-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 400; letter-spacing: 0.03em;
  color: var(--charcoal); cursor: pointer;
}
.lnd-crm {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ── Landing hero ── */
.lnd-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  padding: 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Coluna esquerda — foto */
.lnd-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.lnd-photo-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.lnd-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  animation: lndFadeIn 1s ease both 0.1s;
}

.lnd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.lnd-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #f0f0f0, #fde8ed);
  display: flex; align-items: center; justify-content: center;
}
.lnd-ph svg { width: 80px; height: 80px; color: #d4849a; opacity: .3; }

/* Coluna direita — conteúdo */
.lnd-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 100px 56px 64px 52px;
  text-align: left;
  align-items: flex-start;
  max-width: none;
  width: 100%;
  background: var(--white);
}

.lnd-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 400;
  color: var(--charcoal); line-height: 1.15; margin-bottom: 8px;
  animation: lndFadeUp 0.7s ease both 0.2s;
}
.lnd-meta {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 14px; flex-wrap: wrap; margin-bottom: 20px;
  animation: lndFadeUp 0.7s ease both 0.3s;
}
.lnd-meta-item {
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.lnd-meta-sep { width:3px; height:3px; border-radius:50%; background:#d4849a; }

.lnd-divider {
  width:44px; height:1px; background:var(--rose);
  margin:0 0 20px;
  animation: lndFadeIn 0.6s ease both 0.35s;
}
.lnd-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px,2vw,22px); font-weight:300; font-style:italic;
  color: var(--text-body); line-height:1.55; margin-bottom:44px; max-width:420px;
  animation: lndFadeUp 0.7s ease both 0.4s;
}

/* 4 buttons */
.lnd-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  animation: lndFadeUp 0.7s ease both 0.5s;
}

.lnd-btn {
  display: block;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  font-family: inherit;
  width: 100%;
  height: 88px;
}
.lnd-btn:hover {
  box-shadow: 0 16px 48px rgba(17,17,17,0.13);
  transform: translateY(-3px);
}

/* Imagem de fundo do botão */
.lnd-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lnd-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}
.lnd-btn:hover .lnd-img img { transform: scale(1.04); }

/* Overlay escuro sobre a imagem */
.lnd-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.62) 0%, rgba(17,17,17,0.35) 100%);
  z-index: 1;
  transition: background 0.3s;
}
.lnd-btn:hover .lnd-img::before {
  background: linear-gradient(to right, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.48) 100%);
}

/* Placeholder sem imagem */
.lnd-img-icon { display: none; }
.lnd-img img ~ .lnd-img-icon { display: none; }

/* Sem imagem: fundo charcoal sólido */
.lnd-img:not(:has(img)) {
  background: var(--charcoal);
}

/* Texto sobre a imagem */
.lnd-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 52px 0 22px;
  gap: 3px;
  pointer-events: none;
}

.lnd-bl {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
}

.lnd-bs {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  line-height: 1.3;
}

/* Seta à direita */
.lnd-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s, right 0.3s;
  pointer-events: none;
}
.lnd-arrow svg { width: 14px; height: 14px; }
.lnd-btn:hover .lnd-arrow { color: var(--rose-light); right: 14px; }

/* Linha rose no hover (borda esquerda) */
.lnd-btn::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--rose);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: 3;
  border-radius: 14px 0 0 14px;
}
.lnd-btn:hover::after { transform: scaleY(1); }

.lnd-btn.lnd-primary { background: none; border: none; }
.lnd-btn.lnd-wa { background: none; border: none; }
.lnd-btn::before { display: none; }
.lnd-bi { display: none; }

/* ── Localização ── */
.loc-section {
  padding: 72px 48px 80px; background: var(--cream-mid);
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.loc-lbl {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--rose); margin-bottom:12px;
}
.loc-title {
  font-family:'Playfair Display',serif; font-size:clamp(26px,4vw,38px);
  font-weight:400; color:var(--charcoal); margin-bottom:8px;
}
.loc-title em { font-style:italic; color:var(--rose); }
.loc-clinic {
  font-family:'Cormorant Garamond',serif; font-size:18px;
  font-weight:300; font-style:italic; color:var(--text-body); margin-bottom:6px;
}
.loc-addr {
  font-family:'Jost',sans-serif; font-size:13px; font-weight:300;
  color:var(--text-muted); letter-spacing:0.04em; line-height:1.9; margin-bottom:36px;
}
.loc-map {
  width:100%; max-width:840px; border-radius:4px; overflow:hidden;
  box-shadow:0 8px 40px rgba(17,17,17,0.1); margin-bottom:24px;
  border:1px solid var(--border);
}
.loc-map iframe { display:block; width:100%; height:380px; border:none; }
.loc-btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Jost',sans-serif; font-size:11px; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--white); background:var(--charcoal); padding:14px 24px;
  text-decoration:none; transition:background 0.2s;
}
.loc-btn:hover { background:var(--rose); }

/* ── Blog nav ── */
.blog-nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 48px;
  background:rgba(255,255,255,0.96); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.blog-nav-logo {
  font-family:'Cormorant Garamond',serif; font-size:15px; font-weight:400;
  letter-spacing:0.02em; color:var(--charcoal); cursor:pointer;
}
.blog-nav-links { display:flex; gap:32px; list-style:none; align-items:center; }
.blog-nav-links a {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--text-body);
  text-decoration:none; cursor:pointer; transition:color 0.2s;
}
.blog-nav-links a:hover { color:var(--charcoal); }
.blog-nav-cta {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--white); background:var(--charcoal); padding:10px 20px;
  text-decoration:none; transition:background 0.2s;
}
.blog-nav-cta:hover { background:var(--rose); }
.blog-ham {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none; padding:4px;
}
.blog-ham span { display:block; width:22px; height:1.5px; background:var(--charcoal); }
.blog-mob {
  display:none; position:fixed; top:61px; left:0; right:0;
  background:var(--white); border-bottom:1px solid var(--border);
  padding:24px; flex-direction:column; gap:20px; z-index:99;
}
.blog-mob.open { display:flex; }
.blog-mob a {
  font-family:'Jost',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--text-body);
  text-decoration:none; cursor:pointer; padding:8px 0;
  border-bottom:1px solid var(--border);
}

/* ── Blog sections ── */
.blog-hero-sec {
  padding:140px 48px 60px; background:var(--white);
  border-bottom:1px solid var(--border); position:relative; overflow:hidden;
}
.blog-hero-sec::after {
  content:''; position:absolute; top:0; right:-80px;
  width:320px; height:320px;
  background:radial-gradient(circle,#fde8ed 0%,transparent 65%);
  border-radius:50%; pointer-events:none;
}
.blog-hero-inner { max-width:720px; position:relative; z-index:1; }
.blog-sec-lbl {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--rose); margin-bottom:16px;
}
.blog-h1 {
  font-family:'Playfair Display',serif; font-size:clamp(32px,5vw,52px);
  font-weight:400; line-height:1.15; color:var(--charcoal); margin-bottom:14px;
}
.blog-h1 em { font-style:italic; color:var(--rose); }
.blog-hero-sub {
  font-family:'Cormorant Garamond',serif; font-size:19px;
  font-weight:300; font-style:italic; color:var(--text-body);
  line-height:1.6; max-width:520px;
}
.blog-main { padding:64px 48px 48px; max-width:1100px; margin:0 auto; }

/* filters */
.blog-controls { display:flex; flex-direction:column; gap:16px; margin-bottom:48px; }
.blog-filters { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.blog-search { display:flex; align-items:center; gap:10px; border-bottom:1px solid var(--border); padding-bottom:12px; transition:border-color 0.2s; }
.blog-search:focus-within { border-color:var(--charcoal); }
.blog-search svg { color:var(--text-muted); flex-shrink:0; }
.blog-search input { border:none; outline:none; font-family:'Cormorant Garamond',serif; font-size:16px; font-style:italic; font-weight:300; color:var(--charcoal); background:transparent; width:100%; letter-spacing:0.02em; }
.blog-search input::placeholder { color:var(--text-muted); }
#blogSearchBox { display:none; }
#blogSearchBox.visible { display:flex; }
.flt-lbl {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.15em; text-transform:uppercase; color:var(--text-muted); margin-right:4px;
}
.flt-tag {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted);
  padding:6px 14px; border:1px solid var(--border);
  background:none; cursor:pointer; transition:all 0.2s; text-decoration:none;
}
.flt-tag:hover, .flt-tag.act { color:var(--white); background:var(--charcoal); border-color:var(--charcoal); }

/* featured article */
.blog-feat {
  display:grid; grid-template-columns:1fr 1fr;
  border:1px solid var(--border); margin-bottom:48px;
  text-decoration:none; color:inherit; transition:box-shadow 0.3s;
}
.blog-feat:hover { box-shadow:0 12px 48px rgba(17,17,17,0.1); }
.feat-img {
  background:linear-gradient(145deg,var(--rose-pale) 0%,var(--cream-mid) 100%);
  min-height:300px; display:flex; align-items:center; justify-content:center;
}
.feat-img-ph { color:#d4849a; opacity:0.4; }
.feat-img-ph svg { width:48px; height:48px; }
.feat-body { padding:48px 40px; display:flex; flex-direction:column; justify-content:center; }
.ptag {
  display:inline-block; font-family:'Jost',sans-serif; font-size:9px;
  font-weight:500; letter-spacing:0.15em; text-transform:uppercase;
  padding:4px 10px; margin-bottom:16px;
}
.pt-m { color:#6366f1; border:1px solid #ede9fe; background:#ede9fe; }
.pt-e { color:var(--rose); border:1px solid var(--rose-pale); background:var(--rose-pale); }
.pt-h { color:#0ea5e9; border:1px solid #e0f2fe; background:#e0f2fe; }
.pt-n { color:#16a34a; border:1px solid #dcfce7; background:#dcfce7; }
.pt-l { color:#b45309; border:1px solid #fef3c7; background:#fef3c7; }
.pt-c { color:#7c3aed; border:1px solid #ede9fe; background:#f5f3ff; }

.ptitle {
  font-family:'Playfair Display',serif; font-size:clamp(20px,2.5vw,28px);
  font-weight:400; color:var(--charcoal); line-height:1.3; margin-bottom:12px;
}
.ptitle em { font-style:italic; color:var(--rose); }
.pexc {
  font-family:'Jost',sans-serif; font-size:14px; font-weight:300;
  color:var(--text-muted); line-height:1.7; margin-bottom:24px;
}
.pmeta { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:20px; }
.pauthor { display:flex; align-items:center; gap:8px; }
.pdot {
  width:26px; height:26px; border-radius:50%;
  background:var(--rose-pale); border:1px solid #d4849a;
  display:flex; align-items:center; justify-content:center;
}
.pdot svg { width:13px; height:13px; color:var(--rose); }
.paname { font-family:'Jost',sans-serif; font-size:11px; font-weight:400; color:var(--text-muted); }
.pdate { font-family:'Jost',sans-serif; font-size:11px; font-weight:300; color:var(--text-muted); }
.pread {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--charcoal);
  display:flex; align-items:center; gap:6px;
}
.pread svg { width:14px; height:14px; transition:transform 0.2s; }
.blog-feat:hover .pread svg { transform:translateX(4px); }

/* articles grid */
.arts-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.acard {
  border:1px solid var(--border); background:var(--white);
  text-decoration:none; color:inherit;
  display:flex; flex-direction:column; transition:box-shadow 0.3s,transform 0.3s;
}
.acard:hover { box-shadow:0 8px 32px rgba(17,17,17,0.08); transform:translateY(-3px); }
.acimg {
  background:linear-gradient(145deg,var(--cream-mid),var(--rose-pale));
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.acimg img { width:100%; height:auto; display:block; }
.acimg-ph { color:#d4849a; opacity:0.3; }
.acimg-ph svg { width:34px; height:34px; }
.acbody { padding:24px; display:flex; flex-direction:column; flex:1; }
.actitle {
  font-family:'Playfair Display',serif; font-size:18px;
  font-weight:400; color:var(--charcoal); line-height:1.35; margin-bottom:10px; margin-top:10px;
}
.actitle em { font-style:italic; color:var(--rose); }
.acexc {
  font-family:'Jost',sans-serif; font-size:13px; font-weight:300;
  color:var(--text-muted); line-height:1.65; margin-bottom:18px; flex:1;
}
.acfoot {
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid var(--border); padding-top:14px;
}
.acdate { font-family:'Jost',sans-serif; font-size:10px; font-weight:300; color:var(--text-muted); }
.acarr { display:flex; align-items:center; color:var(--charcoal); transition:transform 0.2s; }
.acarr svg { width:14px; height:14px; }
.acard:hover .acarr { transform:translateX(4px); }

/* newsletter */
.blog-nl {
  margin-top:0px; margin-bottom:0px; margin-left:auto; margin-right:auto;
  max-width:760px;
  padding:40px 48px; background:var(--charcoal);
  display:grid; grid-template-columns:1fr auto; align-items:center; gap:40px;
  border-radius: 16px;
}
.nl-lbl {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.2em; text-transform:uppercase; color:#d4849a; margin-bottom:10px;
}
.nl-title {
  font-family:'Playfair Display',serif; font-size:clamp(22px,3vw,30px);
  font-weight:400; color:var(--white); line-height:1.25;
}
.nl-title em { font-style:italic; color:#d4849a; }
.nl-sub {
  font-family:'Jost',sans-serif; font-size:13px; font-weight:300;
  color:rgba(255,255,255,0.5); margin-top:8px; line-height:1.6;
}
.nl-btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Jost',sans-serif; font-size:11px; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--charcoal); background:var(--white);
  padding:16px 28px; text-decoration:none; white-space:nowrap;
  transition:background 0.2s,color 0.2s;
}
.nl-btn:hover { background:var(--rose); color:var(--white); }

/* ── Animations ── */
@keyframes lndFadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes lndFadeIn {
  from { opacity:0; } to { opacity:1; }
}
.scr-up {
  opacity:0; transform:translateY(20px);
  transition:opacity 0.5s ease,transform 0.5s ease;
}
.scr-up.vis { opacity:1; transform:translateY(0); }

/* ── Responsive additions ── */
@media(max-width:900px){
  .lnd-header { padding:16px 24px; }
  .lnd-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
    padding: 0;
  }
  .lnd-photo-col {
    min-height: unset;
    width: 100%;
    aspect-ratio: unset;
    position: relative;
    overflow: visible;
  }
  .lnd-photo {
    position: relative;
    inset: unset;
    height: auto;
    width: 100%;
  }
  .lnd-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .lnd-inner { padding: 36px 24px 48px; align-items: center; text-align: center; }
  .lnd-meta { justify-content: center; }
  .lnd-divider { margin: 0 auto 20px; }
  .lnd-grid { grid-template-columns: repeat(2,1fr); max-width:100%; }
  .lnd-btn.lnd-wa { grid-column: auto; }

  .blog-nav { padding:18px 24px; }
  .blog-nav-links, .blog-nav-cta { display:none; }
  .blog-ham { display:flex; }

  .blog-hero-sec { padding:110px 24px 48px; }
  .blog-main { padding:48px 24px 80px; }
  .blog-feat { grid-template-columns:1fr; }
  .feat-img { min-height:200px; }
  .feat-body { padding:32px 24px; }
  .arts-grid { grid-template-columns:1fr 1fr; }
  .blog-nl { grid-template-columns:1fr; gap:24px; padding:40px 24px; }
  .blog-nl-home { width: calc(100% - 48px) !important; }

  .loc-section { padding:56px 24px 64px; }
  .loc-map iframe { height:280px; }
}
@media(max-width:600px){
  .lnd-grid { grid-template-columns: 1fr; max-width:100%; }
  .lnd-btn, .lnd-btn.lnd-wa { grid-column: auto; flex-direction: row; }  .lnd-btn .lnd-bs { display:none; }
  .arts-grid { grid-template-columns:1fr; }
}
/* ── Botões de navegação rápida (home) ── */
.hnav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 22px 16px;
  text-decoration: none; color: inherit;
  border: 1px solid var(--border); background: var(--white);
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s;
}
.hnav-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--charcoal);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s ease; z-index: 0;
}
.hnav-btn:hover { box-shadow: 0 8px 28px rgba(17,17,17,0.1); }
.hnav-btn:hover::before { transform: scaleY(1); }
.hnav-btn:hover .hnav-icon,
.hnav-btn:hover .hnav-label,
.hnav-btn:hover .hnav-sub { color: var(--white); }

.hnav-btn.hnav-wa {
  flex-direction: row; justify-content: center;
  border-color: #25d366; background: rgba(37,211,102,0.04);
  padding: 20px 32px;
}
.hnav-btn.hnav-wa::before { background: #25d366; }
.hnav-btn.hnav-wa .hnav-icon { color: #25d366; }
.hnav-btn.hnav-wa:hover .hnav-icon { color: var(--white); }

.hnav-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: color 0.3s; color: var(--charcoal);
}
.hnav-icon svg { width: 20px; height: 20px; }

.hnav-label {
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal);
  position: relative; z-index: 1; transition: color 0.3s; text-align: center;
}
.hnav-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 13px;
  font-weight: 300; font-style: italic; color: var(--text-muted);
  position: relative; z-index: 1; transition: color 0.3s; text-align: center;
}

@media (max-width: 900px) {
  #nav-rapida { padding: 40px 24px 36px !important; }
  #nav-rapida > p { margin-bottom: 20px !important; }
  #nav-rapida > div { grid-template-columns: repeat(2,1fr) !important; max-width: 100% !important; }
  .hnav-btn.hnav-wa { grid-column: 1/-1; }
}
@media (max-width: 500px) {
  #nav-rapida > div { grid-template-columns: 1fr !important; }
  .hnav-btn { flex-direction: row !important; padding: 18px 16px !important; gap: 14px !important; text-align: left !important; }
  .hnav-btn.hnav-wa { flex-direction: row !important; }
  .hnav-sub { display: none; }
}
/* Botão com foto inteira (Agendar Consulta) */
.lnd-btn.lnd-img-full {
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  position: relative;
}
.lnd-full-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.lnd-btn.lnd-img-full:hover .lnd-full-img { transform: scale(1.02); }

.lnd-full-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 52px 16px 22px;
  background: linear-gradient(to top, rgba(17,17,17,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lnd-btn.lnd-img-full .lnd-arrow {
  bottom: 18px;
  top: auto;
  transform: none;
}
.lnd-btn.lnd-img-full:hover .lnd-arrow { right: 14px; }

.lnd-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lnd-card-wrap .lnd-bl {
  display: block;
  padding-left: 4px;
  color: var(--charcoal);
}

.lnd-card-wrap .lnd-bs {
  display: block;
  padding-left: 4px;
}


/* ── Artigo ── */
.art-hero { width:100%; margin-top:61px; text-align:center; }
.art-hero img { width:auto; max-width:100%; max-height:380px; object-fit:contain; display:block; margin:0 auto; }
.art-body { max-width:720px; margin:0 auto; padding:64px 48px 48px; }
.art-meta { display:flex; align-items:center; gap:14px; margin-bottom:24px; flex-wrap:wrap; }
.art-date { font-family:'Jost',sans-serif; font-size:11px; font-weight:300; color:var(--text-muted); letter-spacing:0.06em; }
.art-title { font-family:'Playfair Display',serif; font-size:clamp(28px,4vw,44px); font-weight:400; line-height:1.2; color:var(--charcoal); margin-bottom:40px; }
.art-title em { font-style:italic; color:var(--rose); }
.art-text p { font-family:'Jost',sans-serif; font-size:16px; font-weight:300; color:var(--text-body); line-height:1.85; margin-bottom:20px; }
.art-signature { position:relative; margin-top:48px; margin-bottom:48px; border-radius:8px; overflow:hidden; display:grid; grid-template-columns:220px 1fr; min-height:220px; border:1px solid var(--border); }
.art-sig-photo { background-size:cover; background-position:center top; min-height:220px; }
.art-sig-overlay { padding:36px 36px; background:var(--white); display:flex; flex-direction:column; justify-content:center; gap:4px; }
.art-sig-name { display:block; font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:400; color:var(--charcoal); margin-bottom:4px; }
.art-sig-crm { display:block; font-family:'Jost',sans-serif; font-size:10px; letter-spacing:0.12em; color:var(--text-muted); text-transform:uppercase; margin-bottom:6px; }
.art-sig-sub { display:block; font-family:'Cormorant Garamond',serif; font-size:15px; font-style:italic; color:var(--text-muted); }
.art-cta { text-align:center; padding:48px 0 0; border-top:1px solid var(--border); display:flex; flex-direction:column; align-items:center; gap:16px; }
.art-cta-text { font-family:'Cormorant Garamond',serif; font-size:20px; font-style:italic; color:var(--charcoal); margin:0; }
.art-cta small { font-family:'Jost',sans-serif; font-size:10px; color:var(--text-muted); letter-spacing:0.08em; }
.art-section-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:400; color:var(--charcoal); margin:48px 0 16px; }
.art-list { list-style:none; padding:0; margin:0 0 20px 0; display:flex; flex-direction:column; gap:8px; }
.art-list li { font-family:'Jost',sans-serif; font-size:16px; font-weight:300; color:var(--text-body); line-height:1.6; padding-left:20px; position:relative; }
.art-list li::before { content:'—'; position:absolute; left:0; color:var(--rose); font-weight:400; }
.art-text em { font-style:italic; color:var(--rose); font-family:'Cormorant Garamond',serif; font-size:18px; }
@media(max-width:768px){ .art-body { padding:40px 24px 60px; } .art-signature { grid-template-columns:120px 1fr; min-height:120px; } .art-sig-photo { min-height:120px; } }
.post-hidden { display:none !important; }

/* ============================================================
   CORREÇÕES MOBILE FINAIS
============================================================ */

/* Previne overflow horizontal global */
html, body { max-width: 100%; overflow-x: hidden; }

/* Landing page — botões em coluna única no mobile pequeno */
@media (max-width: 600px) {
  .lnd-inner { padding: 28px 20px 40px; }
  .lnd-grid { max-width: 100%; }
  .lnd-btn { height: 76px; }
  .lnd-tagline { font-size: 16px; margin-bottom: 28px; }
}

/* Blog newsletter — empilha no mobile */
@media (max-width: 600px) {
  .blog-nl { padding: 32px 20px; }
  .nl-title { font-size: 22px; }
  .nl-btn { width: 100%; justify-content: center; }
}

/* Blog artigos grid — 1 coluna no mobile pequeno */
@media (max-width: 480px) {
  .blog-hero-sec { padding: 90px 20px 40px; }
  .blog-main { padding: 36px 20px 60px; }
  .blog-filters { gap: 6px; }
  .flt-tag { padding: 5px 10px; font-size: 9px; }
}

/* Artigo — assinatura empilhada no mobile */
@media (max-width: 600px) {
  .art-body { padding: 32px 20px 48px; }
  .art-signature { grid-template-columns: 120px 1fr; min-height: 120px; }
  .art-sig-photo { min-height: 120px; }
  .art-sig-overlay { padding: 20px 16px; }
  .art-title { font-size: clamp(24px, 6vw, 36px); margin-bottom: 24px; }
  .art-text p { font-size: 15px; }
}

/* Seção localização — mobile */
@media (max-width: 480px) {
  .loc-section { padding: 48px 20px 56px; }
  .loc-map iframe { height: 240px; }
  .loc-btn { width: 100%; justify-content: center; }
}

/* Clínica gallery — mobile */
@media (max-width: 768px) {
  #clinica-gallery { padding: 64px 20px; }
}

/* Forwhom cards — texto não corta */
.forwhom-list li { word-break: break-word; }

/* Result content — padding lateral garantido */
@media (max-width: 900px) {
  .result-content p,
  .result-content h2,
  .result-block,
  .result-list,
  .result-italic { max-width: 100%; word-break: break-word; }
  .result-tag { margin-bottom: 10px; }
  .results-scroll-wrapper { overflow: hidden; }
}

/* Pain quote — não corta texto no mobile */
@media (max-width: 768px) {
  .pain-quote { padding: 40px 0 10px; }
  .pain-quote p { font-size: clamp(17px, 4.5vw, 24px); }
  .areas-footer-quote p { font-size: clamp(16px, 4vw, 22px); }
}

/* Mobile menu — garante que cobre bem */
@media (max-width: 900px) {
  .mobile-menu { top: 57px; }
  .mobile-menu a { font-size: 11px; letter-spacing: 0.1em; }
}

/* Floats — apenas ícone em telas pequenas para não colidir */
@media (max-width: 480px) {
  .whatsapp-float span,
  .instagram-float span { display: none; }
  .whatsapp-float,
  .instagram-float { padding: 13px; gap: 0; }
  .whatsapp-float svg,
  .instagram-float svg { width: 18px; height: 18px; }
}

/* ============================================================
   FOTOS INTEIRAS NO MOBILE — cobertura global
============================================================ */
@media (max-width: 900px) {
  /* Hero */
  .hero-photo { aspect-ratio: unset !important; max-height: none !important; height: auto !important; overflow: visible !important; }
  .hero-photo img { width: 100% !important; height: auto !important; object-fit: contain !important; object-position: center top !important; }

  /* About */
  .about-photo { aspect-ratio: unset !important; max-height: none !important; height: auto !important; overflow: visible !important; }
  .about-photo img { width: 100% !important; height: auto !important; object-fit: contain !important; object-position: center top !important; }

  /* Clínica photos */
  .clinic-photo { overflow: visible !important; height: auto !important; }
  .clinic-photo img { width: 100% !important; height: auto !important; object-fit: contain !important; display: block !important; }

  /* Resultados */
  .result-card .result-photo { overflow: visible !important; height: auto !important; }
  .result-card .result-photo img { width: 100% !important; height: auto !important; object-fit: contain !important; object-position: center top !important; display: block !important; }

  /* Blog cards */
  .acimg { aspect-ratio: unset !important; overflow: visible !important; height: auto !important; }
  .acimg img { width: 100% !important; height: auto !important; object-fit: contain !important; display: block !important; }

  /* Artigo hero */
  .art-hero { max-height: none !important; overflow: visible !important; }
  .art-hero img { width: 100% !important; height: auto !important; display: block !important; }

  /* Artigo assinatura */
  .art-sig-photo { background-size: cover !important; background-position: center top !important; }

  /* Gallery da clínica */
  .gallery-item { overflow: visible !important; height: auto !important; }
  .gallery-item img { width: 100% !important; height: auto !important; object-fit: contain !important; display: block !important; }

  /* Landing foto principal */
  .lnd-photo-col { overflow: visible !important; }
  .lnd-photo img { width: 100% !important; height: auto !important; object-fit: contain !important; object-position: center top !important; }

  /* Landing botão foto inteira */
  .lnd-full-img { width: 100% !important; height: auto !important; object-fit: contain !important; }
}

/* ── Botões flutuantes ─────────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  z-index: 9999;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  pointer-events: all;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.float-wa { background: var(--rose, #c9707a); }
.float-ig { background: #111; }
