/* ===========================
   STUDIO ÓR — style.css
   =========================== */

/* ===== FONT FACES ===== */
@font-face {
    font-family: 'Melodrama';
    src: url('Melodrama-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Melodrama';
    src: url('Melodrama-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Melodrama';
    src: url('Melodrama-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Melodrama';
    src: url('Melodrama-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Melodrama';
    src: url('Melodrama-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'NeueHaas';
    src: url('Neue%20Haas%20Display%20Pro.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gallietta';
    src: url('Jalliestha_DEMO%5B1%5D.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== VARIÁVEIS DE COR ===== */
:root {
    --primary:            #C17A55;
    --primary-dark:       #9E6043;
    --primary-light:      #E8C4AD;
    --primary-ultra:      #FBF0E8;
    --nav-accent:         #8D2A00;
    --nav-accent-dark:    #6E2100;
    --secondary:          #4A5E3E;
    --secondary-dark:     #2E3A27;
    --secondary-light:    #7A8E6A;
    --warmwhite:          #FAF8F3;
    --offwhite:           #F2EDE5;
    --cream:              #EDE6DA;
    --gray-100:           #E8E2D9;
    --gray-200:           #D8D2C8;
    --gray-300:           #C5BDB2;
    --gray-500:           #948880;
    --text-dark:          #2C2420;
    --text-medium:        #5A4E48;
    --text-light:         #8C7E78;
    --bg-soft:            #FAF8F3;
}

/* ===== RESET BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'NeueHaas', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--warmwhite);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TIPOGRAFIA ===== */
.font-display  { font-family: 'Melodrama', Georgia, serif; }
.font-body     { font-family: 'NeueHaas', 'Helvetica Neue', sans-serif; }
.font-accent   { font-family: 'Gallietta', cursive; }
h1, h2, h3     { font-family: 'Melodrama', Georgia, serif; font-weight: 300; line-height: 1.12; }
p              { font-family: 'NeueHaas', 'Helvetica Neue', sans-serif; line-height: 1.75; }

.section-label {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
}

/* ===========================
   NAVBAR
   =========================== */
#main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.5s ease, box-shadow 0.45s ease;
    background: rgba(141,42,0,0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#nav-inner {
    transition: padding 0.35s ease;
    padding: 1.75rem 3rem;
}

#main-nav.nav-scrolled {
    background: var(--nav-accent);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.14), 0 6px 30px rgba(0,0,0,0.18);
}

#main-nav.nav-scrolled #nav-inner {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
}

/* Links desktop */
.navbar-link {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}
.navbar-link:hover { color: white; }
.navbar-link:hover::after { width: 100%; }

#main-nav.nav-scrolled .navbar-link { color: rgba(255,255,255,0.82); }
#main-nav.nav-scrolled .navbar-link:hover { color: white; }

/* CTA nav */
.nav-cta {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    text-decoration: none;
    padding: 0.625rem 1.375rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background: transparent;
}
.nav-cta:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.65);
}
#main-nav.nav-scrolled .nav-cta {
    background: white;
    border-color: white;
    color: var(--nav-accent);
}
#main-nav.nav-scrolled .nav-cta:hover {
    background: var(--primary-ultra);
    border-color: var(--primary-ultra);
}

/* Hamburger */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px; height: 38px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 6px;
}
.hamburger-line {
    display: block;
    width: 22px; height: 1.5px;
    background: rgba(255,255,255,0.88);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
}
#main-nav.nav-scrolled .hamburger-line { background: rgba(255,255,255,0.9); }

.hamburger-btn.is-open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
    background: rgba(250,248,243,0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--gray-100);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.is-open { max-height: 520px; }

.mobile-nav-link {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-medium);
    text-decoration: none;
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s ease, padding-left 0.25s ease;
}
.mobile-nav-link:hover { color: var(--nav-accent); padding-left: 0.5rem; }

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
    padding: 0.9rem 1.5rem;
    background: var(--nav-accent);
    color: white;
    border-radius: 100px;
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}
.mobile-cta-btn:hover { background: var(--nav-accent-dark); }

@media (max-width: 767px) {
    #nav-inner { padding: 1.25rem 1.25rem; }
    nav a[href*="wa.me"], nav a[href*="whatsapp.com"] { display: none !important; }
    .mobile-cta-btn { display: flex !important; }
}

/* ===========================
   HERO
   =========================== */
.hero-bg {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}
@media (min-width: 768px) {
    .hero-bg {
        padding-top: 6.5rem;
    }
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    will-change: transform;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(20, 14, 10, 0.65);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
    width: 1px; height: 2.5rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===========================
   BOTÕES
   =========================== */
.btn-primary {
    background: var(--primary);
    color: white;
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2.25rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(193,122,85,0.28);
}

.btn-secondary {
    background: transparent;
    color: white;
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2.25rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.38);
    cursor: pointer;
    box-sizing: border-box;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-terra-outline {
    background: transparent;
    color: var(--primary);
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid var(--primary);
    cursor: pointer;
    box-sizing: border-box;
}
.btn-terra-outline:hover { background: var(--primary); color: white; }

/* ===========================
   SOBRE
   =========================== */
.section-sobre {
    background-color: #ffffff;
    background-image: radial-gradient(rgba(44,36,32,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
}

.stat-number {
    font-family: 'Melodrama', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    display: block;
}
.stat-label {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 0.4rem;
    display: block;
}

/* ===========================
   SERVIÇOS
   =========================== */
.section-servicos { background: var(--offwhite); }

.service-card {
    background: white;
    padding: 2rem 1.75rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(44,36,32,0.07);
    border-color: var(--gray-200);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 2rem; height: 2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    stroke-width: 1.2;
}
.service-title {
    font-family: 'Melodrama', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.service-desc {
    font-size: 0.8375rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===========================
   DIFERENCIAIS
   =========================== */
.section-diferenciais {
    background-color: var(--secondary-dark);
    background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    position: relative;
    overflow: hidden;
}
.section-diferenciais::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -8%;
    width: 42rem;
    height: 42rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193,122,85,0.22) 0%, transparent 65%);
    filter: blur(72px);
    pointer-events: none;
    z-index: 0;
}
.section-diferenciais::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -6%;
    width: 36rem;
    height: 36rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,142,106,0.25) 0%, transparent 65%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.section-diferenciais > div {
    position: relative;
    z-index: 1;
}

.diferencial-item {
    padding: 1.375rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform 0.3s ease;
    cursor: default;
}
.diferencial-item:last-child { border-bottom: none; }
.diferencial-item:hover { transform: translateX(6px); }

.dif-num {
    font-family: 'Melodrama', Georgia, serif;
    font-size: 0.95rem;
    color: var(--primary-light);
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 2px;
    min-width: 1.5rem;
}
.dif-text {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* ===========================
   PROCESSO / TIMELINE
   =========================== */
.section-processo { background: var(--cream); }

.processo-item {
    position: relative;
    padding-left: 3.5rem;
    padding-bottom: 2.75rem;
}
.processo-item:last-child { padding-bottom: 0; }
.processo-item::before {
    content: '';
    position: absolute;
    left: 0.9375rem;
    top: 2.25rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary-light), transparent);
}
.processo-item:last-child::before { display: none; }

.processo-num {
    position: absolute;
    left: 0; top: 0;
    width: 1.875rem; height: 1.875rem;
    border-radius: 50%;
    border: 1px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Melodrama', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--primary);
    background: var(--cream);
}
.processo-title {
    font-family: 'Melodrama', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}
.processo-desc {
    font-size: 0.975rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   PROJETOS / GALERIA
   =========================== */
.section-projetos { background: var(--warmwhite); }

.project-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
    .project-tab { width: 100%; text-align: center; }
}
.project-tab {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    color: var(--text-medium);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}
.project-tab:hover, .project-tab.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-ultra);
}

.project-block { display: none; }
.project-block.active { display: block; }

.project-name {
    font-family: 'Melodrama', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.project-count {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}
@media (max-width: 1023px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.25rem; } }

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-100);
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,rgba(28,22,18,0.55) 0%,transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0.75rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-zoom {
    width: 2rem; height: 2rem;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-item.span-2 { grid-column: span 2; aspect-ratio: 8/3; }
@media (max-width: 639px) { .gallery-item.span-2 { grid-column: span 2; aspect-ratio: 4/3; } }

.gallery-video-wrap {
    position: relative;
    overflow: hidden;
    background: var(--secondary-dark);
    aspect-ratio: 16/9;
    border-radius: 2px;
}
.gallery-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* ===========================
   MODAL GALERIA
   =========================== */
#gallery-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    background: rgba(20,15,12,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
#gallery-modal.is-open {
    opacity: 1;
    pointer-events: all;
}
#modal-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#modal-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}
#modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 2.5rem; height: 2.5rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    background: none;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    line-height: 1;
}
#modal-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); color: white; }

#modal-prev, #modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem; height: 3rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
#modal-prev { left: 1.5rem; }
#modal-next { right: 1.5rem; }
#modal-prev:hover, #modal-next:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.45);
    color: white;
}

#modal-counter {
    position: absolute;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    font-family: 'NeueHaas','Helvetica Neue',sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 639px) {
    #modal-prev { left: 0.75rem; }
    #modal-next { right: 0.75rem; }
    #modal-prev, #modal-next { width: 2.5rem; height: 2.5rem; }
}

/* ===========================
   DEPOIMENTOS
   =========================== */
.section-depoimentos { background: var(--offwhite); }

.depo-card {
    background: white;
    padding: 2.5rem 2.25rem;
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all 0.35s ease;
}
.depo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(44,36,32,0.07);
}
.depo-quote {
    font-family: 'Melodrama', Georgia, serif;
    font-size: 2.75rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.4;
}
.depo-text {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.depo-author {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    display: block;
}
.depo-location {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
}

/* ===========================
   CTA
   =========================== */
.section-cta {
    background-color: var(--nav-accent);
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.06) 0px,
            rgba(255,255,255,0.06) 1px,
            transparent 1px,
            transparent 26px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.06) 0px,
            rgba(255,255,255,0.06) 1px,
            transparent 1px,
            transparent 26px
        );
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -8%;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
    filter: blur(72px);
    pointer-events: none;
    z-index: 0;
}
.section-cta::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -6%;
    width: 36rem;
    height: 36rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44,36,32,0.22) 0%, transparent 65%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.section-cta > div {
    position: relative;
    z-index: 1;
}
.cta-accent {
    font-family: 'Gallietta', cursive;
    font-size: 1.75rem;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 0.75rem;
}

/* ===========================
   CONTATO
   =========================== */
.section-contato { background: var(--warmwhite); }

.contato-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contato-icon {
    width: 1.125rem; height: 1.125rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}
.contato-link {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}
.contato-link:hover { color: var(--primary); }

/* ===========================
   FOOTER
   =========================== */
#footer { background: var(--nav-accent); }

@media (max-width: 767px) {
    #footer .grid > div {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer-link {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: color 0.2s ease;
}
.footer-link:hover { color: var(--primary-light); }

.footer-heading {
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
    display: block;
}

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.is-visible { opacity: 1; transform: none; }

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.is-visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.34s; }
.reveal-delay-5 { transition-delay: 0.42s; }
.reveal-delay-6 { transition-delay: 0.5s; }
.reveal-delay-7 { transition-delay: 0.58s; }
.reveal-delay-8 { transition-delay: 0.66s; }
.reveal-delay-9 { transition-delay: 0.74s; }
.reveal-delay-10 { transition-delay: 0.82s; }

/* ===========================
   DIVISORES / DECORATIVOS
   =========================== */
.or-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.or-line::before {
    content: '';
    width: 2.5rem; height: 1px;
    background: var(--primary-light);
    display: block;
}

/* ===========================
   FAQ
   =========================== */
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-content.open { max-height: 400px; }

/* ===========================
   PROTEÇÃO GLOBAL
   =========================== */
button, input[type="button"], input[type="submit"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
}
a[href*="wa.me"], a[href*="whatsapp.com"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
    text-decoration: none;
}
section, footer, nav { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
#whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 990;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.875rem 1.375rem 0.875rem 1.125rem;
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.32), 0 2px 8px rgba(0,0,0,0.12);
    font-family: 'NeueHaas', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.35s ease;
    overflow: hidden;
    max-width: 14rem;
}
#whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37,211,102,0.38), 0 4px 12px rgba(0,0,0,0.14);
}
#whatsapp-float-label {
    max-width: 9rem;
    overflow: hidden;
    transition: max-width 0.35s ease, opacity 0.3s ease;
    display: inline-block;
}

@media (max-width: 767px) {
    #whatsapp-float {
        width: 3.25rem;
        height: 3.25rem;
        padding: 0;
        border-radius: 50%;
        max-width: none;
        justify-content: center;
        align-items: center;
    }
    #whatsapp-float-label {
        display: none;
    }
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--warmwhite); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
