/* =============================================================
   Hera Odonto & Face — styles.css
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F2EDE6;
    --taupe: #B5A898;
    --gold: #C9A96E;
    --gold-light: #E2C896;
    --charcoal: #2C2823;
    --white: #FDFAF6;
    --mid: #7A6E65;
    --section-gap: 100px;
  }

  html { scroll-behavior: smooth; }

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

  /* NAV */
  nav {
    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(189, 176, 158, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(181,168,152,0.2);
    transition: padding 0.3s;
  }
  nav.scrolled { padding: 12px 48px; }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
  }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mid); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-cta {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 8px 8px;
    background: var(--gold);
    color: var(--white);
    border: none; border-radius: 2px;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, transform 0.1s;
  }
  .nav-cta:hover { background: var(--charcoal); transform: translateY(-1px); }
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.3s; }


  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 88px;
  }
  .hero-text {
    padding: 80px 64px 80px 0;
  }
  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
  }
  .hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 300; line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 28px;
  }
  .hero-heading em {
    font-style: italic; color: var(--gold);
  }
  .hero-sub {
    font-size: 0.95rem; font-weight: 300; line-height: 1.8;
    color: var(--mid); max-width: 420px; margin-bottom: 48px;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 16px 36px;
    background: var(--gold); color: var(--white);
    border: none; border-radius: 2px; cursor: pointer; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); }
  .btn-outline {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 15px 36px;
    background: transparent; color: var(--charcoal);
    border: 1px solid var(--taupe); border-radius: 2px; cursor: pointer; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-image {
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  .hero-image img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
  }
  .hero-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 20%);
  }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 56px; padding-top: 40px;
    border-top: 1px solid rgba(181,168,152,0.3);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--mid); margin-top: 4px;
  }

  /* DIVIDER */
  .gold-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; padding: 0 80px;
  }
  .gold-divider span {
    display: block; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--taupe));
  }
  .gold-divider span:last-child {
    background: linear-gradient(to left, transparent, var(--taupe));
  }
  .gold-divider i {
    width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg);
  }

  /* SECTION COMMONS */
  section { padding: var(--section-gap) 80px; }
  .section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 300; line-height: 1.15; color: var(--charcoal);
  }
  .section-heading em { font-style: italic; color: var(--gold); }

  /* SOBRE */
  .sobre-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-top: 60px;
  }
  .sobre-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
  }
  .sobre-carousel {
    position: relative;
    width: 100%; height: 100%;
  }
  .sobre-slide {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
  .sobre-slide.active { opacity: 1; }
  .sobre-img-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 60%; height: 60%;
    border: 2px solid var(--gold);
    pointer-events: none; z-index: -1;
  }
  .sobre-text p {
    font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--mid);
    margin-bottom: 20px;
  }
  .sobre-text p strong { color: var(--charcoal); font-weight: 500; }
  .sobre-detail {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.8rem; letter-spacing: 0.08em; color: var(--taupe); margin-top: 32px;
  }
  .sobre-detail::before {
    content: ''; display: block; width: 20px; height: 1px; background: var(--gold);
  }

  /* RESULTADOS / ANTES E DEPOIS */
  #resultados { position: relative; }
  .ba-panel {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    gap: 12px;
  }
  .ba-photo-stage {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 5;
    min-height: 420px;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
  }
  .ba-photo-stage > img,
  .ba-slide-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
  }
  .ba-slide-num {
    font-size: 0.75rem; letter-spacing: 0.15em; color: var(--gold-light);
    display: block; margin-bottom: 10px; margin-top: 20px;
  }
  .ba-slide-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400; margin-bottom: 10px; color: var(--white);
  }
  .ba-slide-text p {
    font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: rgba(181,168,152,0.85);
  }
  .ba-arrow {
    flex: 0 0 auto;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent; color: var(--white);
    font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s;
  }
  .ba-arrow:hover { border-color: var(--gold); color: var(--gold); }
  .ba-photo-dots {
    display: flex; justify-content: center; gap: 10px; margin-top: 24px;
  }
  .ba-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; background: rgba(255,255,255,0.2); cursor: pointer; padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .ba-dot.active { background: var(--gold); transform: scale(1.3); }

  /* GRID PROCEDIMENTOS */
  .procedimentos-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 64px;
    align-items: start;
  }
  .procedimentos-intro-col {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 120px;
  }
  .procedimentos-intro-col .proc-intro {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--mid);
    margin-top: 16px;
  }
  .procedimentos-cta-wrap {
    margin-top: 32px;
  }
  .proc-list {
    display: flex; flex-direction: column; gap: 8px;
    width: 100%;
  }
  .proc-item {
    background: var(--charcoal);
    border: 1px solid rgba(181,168,152,0.25);
    border-radius: 6px;
    padding: 20px 26px;
    display: flex; align-items: center; gap: 18px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    text-decoration: none; cursor: pointer;
  }
  .proc-item:hover {
    background: #1c1916;
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .proc-item .proc-icon { font-size: 1.3rem; color: var(--gold); flex: 0 0 auto; }
  .proc-item .proc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--white); margin-bottom: 3px; }
  .proc-item .proc-desc { font-size: 0.83rem; color: rgba(242, 237, 230, 0.75); line-height: 1.5; }

  @media (max-width: 992px) {
    .procedimentos-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .procedimentos-intro-col {
      position: static;
    }
  }

  /* Placeholder para resultados de antes/depois ainda sem foto */
  .ba-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px;
    aspect-ratio: 4/5;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(201,169,110,0.4);
    border-radius: 4px;
    color: var(--gold-light);
  }
  .ba-placeholder-icon { font-size: 2rem; opacity: 0.6; }
  .ba-placeholder-text {
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(226,200,150,0.7);
  }
  .ba-wrap {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px 24px;
    background: rgba(255,255,255,0.02);
  }
  .ba-wrap-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; color: var(--white);
    text-align: center; margin-bottom: 20px;
  }
  .ba-wrap-label em { font-style: italic; color: var(--gold); }

  /* PROCEDIMENTOS */
  #procedimentos { background: var(--charcoal); }
  #procedimentos .section-heading { color: var(--white); }
  #procedimentos .section-label { color: var(--gold-light); }
  .proc-intro {
    font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--taupe);
    max-width: 520px; margin-top: 16px;
  }
  .proc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .proc-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  }
  .proc-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px 28px 28px;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    cursor: default;
  }
  .proc-card:hover {
    background: rgba(201,169,110,0.12);
    border-color: rgba(201,169,110,0.35);
    transform: translateY(-4px);
  }
  .proc-icon {
    font-size: 1.6rem; margin-bottom: 16px;
  }
  .proc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400; color: var(--white);
    margin-bottom: 10px; line-height: 1.3;
  }
  .proc-desc {
    font-size: 0.78rem; font-weight: 300; line-height: 1.7; color: rgba(181,168,152,0.8);
  }

  /* DIFERENCIAIS */
  .dif-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px;
  }
  .dif-card {
    padding: 40px 32px;
    border: 1px solid rgba(181,168,152,0.25);
    position: relative;
    transition: border-color 0.2s;
  }
  .dif-card:hover { border-color: var(--gold); }
  .dif-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300;
    color: rgba(201,169,110,0.15);
    position: absolute; top: 16px; right: 20px; line-height: 1;
  }
  .dif-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; margin-bottom: 12px; color: var(--charcoal);
  }
  .dif-desc {
    font-size: 0.85rem; font-weight: 300; line-height: 1.8; color: var(--mid);
  }

  /* AGENDAMENTO - FORMULÁRIO */
  #agendamento {
    background: #6E675F;
    padding: var(--section-gap) 80px;
  }
  #agendamento .section-heading { color: var(--white); }
  #agendamento .section-label { color: var(--gold-light); }
  .form-wrap {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; margin-top: 56px;
  }
  .form-side-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem; font-weight: 300; line-height: 1.9;
  }
  .form-side-text strong { color: var(--white); font-weight: 500; }
  .form-contact-info {
    margin-top: 40px; display: flex; flex-direction: column; gap: 16px;
  }
  .form-contact-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.85rem; color: rgba(255,255,255,0.7);
  }
  .form-contact-item span { font-size: 1.1rem; }
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.8);
  }
  .contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
  }
  .local-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
  }
  .local-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
  }
  .booking-form { display: flex; flex-direction: column; gap: 0; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field-group { margin-bottom: 20px; }
  .field-group label {
    display: block; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 8px;
  }
  .field-group input {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.9rem;
    border-radius: 2px; outline: none; transition: border-color 0.2s, background 0.2s;
    appearance: none;
  }
  .field-group select {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.9rem;
    border-radius: 2px; outline: none; transition: border-color 0.2s, background 0.2s;
  }
  .field-group input::placeholder { color: rgba(255,255,255,0.4); }
  .field-group input:focus, .field-group select:focus {
    border-color: var(--gold-light); background: rgba(255,255,255,0.18);
  }
  .field-group select option { background: var(--charcoal); color: var(--white); }
  .select-wrap {
    position: relative;
    display: block;
  }
  .select-wrap select {
    width: 100%;
    padding-right: 40px;
    cursor: pointer;
  }
  .select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
  }
  .select-arrow svg {
    width: 16px;
    height: 16px;
  }
  .period-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* CALENDAR */
  .calendar-section { margin-bottom: 20px; }
  .calendar-section label {
    display: block; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 12px;
  }
  .cal-container {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px; padding: 20px;
  }
  .cal-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
  }
  .cal-month {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white);
  }
  .cal-nav {
    background: none; border: none; color: rgba(255,255,255,0.6);
    cursor: pointer; font-size: 1.1rem; padding: 4px 10px;
    transition: color 0.2s;
  }
  .cal-nav:hover { color: var(--gold-light); }
  .cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  }
  .cal-day-label {
    font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    text-align: center; padding: 4px 0;
  }
  .cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; color: rgba(255,255,255,0.7);
    cursor: pointer; border-radius: 2px; border: 1px solid transparent;
    transition: all 0.15s;
  }
  .cal-day:hover:not(.cal-empty):not(.cal-past) {
    background: rgba(201,169,110,0.25); border-color: var(--gold-light); color: var(--white);
  }
  .cal-day.cal-selected {
    background: var(--gold); color: var(--white); border-color: var(--gold);
  }
  .cal-day.cal-past { color: rgba(255,255,255,0.2); cursor: default; }
  .cal-day.cal-empty { cursor: default; }
  .cal-day.cal-today { border-color: rgba(201,169,110,0.5); color: var(--gold-light); }

  .period-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px;
  }
  .period-btn {
    padding: 10px; font-family: 'Jost', sans-serif;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px; cursor: pointer; transition: all 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .period-btn:hover, .period-btn.active {
    background: rgba(201,169,110,0.3); border-color: var(--gold-light); color: var(--white);
  }

  .submit-btn {
    margin-top: 24px;
    width: 100%; padding: 18px;
    background: var(--gold); color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    border: none; border-radius: 2px; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .submit-btn:hover { background: var(--charcoal); transform: translateY(-2px); }

  .form-success {
    display: none; text-align: center; padding: 60px 40px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(201,169,110,0.4);
    border-radius: 2px;
  }
  .form-success.visible { display: block; }
  .form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--white); margin-bottom: 12px;
  }
  .form-success p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

  /* LOCALIZAÇÃO */
  .local-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; margin-top: 56px;
  }
  .local-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 400; margin-bottom: 24px;
  }
  .local-detail {
    display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
  }
  .local-detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
  .local-detail-text { font-size: 0.88rem; line-height: 1.7; color: var(--mid); }
  .local-detail-text strong { display: block; color: var(--charcoal); font-weight: 500; margin-bottom: 2px; }
  .map-frame {
    border-radius: 2px; overflow: hidden;
    border: 1px solid rgba(181,168,152,0.3);
  }
  .map-frame iframe { display: block; }

  /* FOOTER */
  footer {
    background: var(--charcoal); color: rgba(255,255,255,0.5);
    padding: 56px 80px 32px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 48px;
  }
  .footer-brand img { height: 44px; filter: brightness(0) invert(1) opacity(0.7); margin-bottom: 20px; }
  .footer-brand p { font-size: 0.82rem; line-height: 1.8; }
  .footer-col h4 {
    font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
    font-size: 0.72rem;
  }
  .footer-cro { color: rgba(255,255,255,0.3); }

  /* WHATSAPP FLOAT */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  }
  .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  .whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

  /* MOBILE */
  @media (max-width: 900px) {
    :root { --section-gap: 64px; }
    nav { padding: 14px 24px; }
    .nav-links, .nav-cta { display: none; }

    .nav-cta { margin-top: 8px !important; }

    .nav-cta-hidden { display: none; }

     .proc-intro {
      display: none;
    } 

    .hero-image::after {
    background: linear-gradient(to right, var(--cream) 0%, transparent 0%);
  }
   
    .hamburger { display: block; }
    nav.menu-open .nav-links {
      display: flex; flex-direction: column; gap: 0;
      position: fixed; top: 72px; left: 0; right: 0;
      background: var(--cream); padding: 20px 0;
      border-bottom: 1px solid rgba(181,168,152,0.2);
    }
    nav.menu-open .nav-links li { padding: 0 24px; }
    nav.menu-open .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(181,168,152,0.15); font-size: 0.9rem; }
    nav.menu-open .nav-cta { display: block; margin: 4px 24px 8px; }
    .hero { grid-template-columns: 1fr; }
    /* .hero-image { display: none; } */
    .hero-text { padding: 40px 24px 60px; }
    section { padding: var(--section-gap) 24px; }
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .proc-grid { grid-template-columns: repeat(2, 1fr); }
    .dif-grid { grid-template-columns: 1fr; gap: 20px; }
    .form-wrap { grid-template-columns: 1fr; gap: 40px; }
    .local-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    #agendamento { padding: var(--section-gap) 24px; }
    footer { padding: 48px 24px 24px; }
    .gold-divider { padding: 0 24px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .proc-result-grid { grid-template-columns: 1fr; gap: 40px; }
    .ba-photo-stage { min-height: auto; }
    .ba-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
  }

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

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
  }