﻿@font-face {
    font-family: 'StackSansText';
    src: url('fonts/StackSansText-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'StackSansNotch';
    src: url('fonts/StackSansNotch-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'StackSansText', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #0a0a0a;
}

.hero {
    width: 100%;
    height: 100vh;
    background: #0000008b;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 60px 80px;
    box-shadow: 4px 4px 12px #000000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    height: 40px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-subtitle {
    font-family: 'StackSansText', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'StackSansText', sans-serif;
    font-size: 48px;
    font-weight: 400;
    background: linear-gradient(to bottom, #128077, #0f9689);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
}

.hero-title em {
    font-family: 'StackSansNotch', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    background: linear-gradient(to right, #128077, #0f9689, #128077);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.hero-highlight {
    font-family: 'StackSansNotch', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 54px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.hero-subtitle em {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(to right, #128077, #0f9689, #128077);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.hero-cta {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-top: 10px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-stats {
    position: relative;
    width: 320px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.stats-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.stats-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}
.stats-slide:nth-child(1) {
    animation: statsFade 9s infinite;
    animation-delay: 0s;
}
.stats-slide:nth-child(2) {
    animation: statsFade 9s infinite;
    animation-delay: 3s;
}
.stats-slide:nth-child(3) {
    animation: statsFade 9s infinite;
    animation-delay: 6s;
}

@keyframes statsFade {
    0% { opacity: 0; transform: translateY(20px); }
    5% { opacity: 1; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(0); }
    35% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.hero-stats-number {
    font-family: 'StackSansText', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.hero-stats-label {
    font-family: 'StackSansText', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.4;
}

.hero-microcopy {
    font-family: 'StackSansText', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* BotÃ£o hero */
.hero-btn {
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(135deg, #128077, #10ac9d);
    border: none;
    padding: 18px 40px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 128, 119, 0.4);
}

.hero-btn:hover {
    background: linear-gradient(135deg, #0f6b63, #128077);
    box-shadow: 0 6px 20px rgba(18, 128, 119, 0.6);
    transform: translateY(-2px);
}

/* SeÃ§Ã£o TransiÃ§Ã£o */
.transicao {
    width: 100%;
    height: 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #10ac9d;
    overflow: hidden;
    padding: 0 24px;
}

.transicao-texto {
    font-family: 'StackSansText', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.9);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.transicao-rotator {
    position: relative;
    display: inline-block;
    height: 1.4em;
    overflow: hidden;
    vertical-align: bottom;
}

.transicao-frase {
    display: block;
    font-family: 'StackSansNotch', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 700;
    color: #46a59b;
    line-height: 1.4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    animation: fraseRotate 8s infinite;
}

.transicao-frase:nth-child(1) { animation-delay: 0s; }
.transicao-frase:nth-child(2) { animation-delay: 2s; }
.transicao-frase:nth-child(3) { animation-delay: 4s; }
.transicao-frase:nth-child(4) { animation-delay: 6s; }

@keyframes fraseRotate {
    0%   { opacity: 0; transform: translateY(100%); }
    5%   { opacity: 1; transform: translateY(0); }
    20%  { opacity: 1; transform: translateY(0); }
    25%  { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; transform: translateY(-100%); }
}

@media (max-width: 768px) {
    .transicao {
        height: 80px;
        padding: 0 16px;
    }

    .transicao-texto {
        font-size: 13px;
        flex-direction: column;
        gap: 2px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .transicao-rotator {
        height: 1.3em;
    }
}

/* SeÃ§Ã£o IdentificaÃ§Ã£o da Dor */
.dor {
    position: relative;
    padding: 60px 0;
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.dor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url('images/at-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.dor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgb(211, 211, 211));
    z-index: 1;
}

.dor > * {
    position: relative;
    z-index: 2;
}


.dor-headline {
    font-family: 'StackSansText', sans-serif;
    font-size: 56px;
    font-weight: 400;
    background: linear-gradient(to bottom, #212121, #454545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
}

.dor-headline em {
    font-family: 'StackSansNotch', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(to right, #128077, #10ac9d, #128077);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.dor-subtitulo {
    font-family: 'StackSansText', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    letter-spacing: 0.3px;
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 32px;
}

.dor-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.dor-checklist-wrapper {
    position: relative;
    width: auto;
    display: inline-block;
    /* background: rgba(70, 165, 155, 0.9); */
    /* box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); */
    /* border: 1px solid rgba(70, 165, 155, 0.5); */
    z-index: 1;
}

.dor-cta-btn {
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(135deg, #128077, #10ac9d);
    border: none;
    padding: 18px 40px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(18, 128, 119, 0.4);
}

.dor-cta-btn:hover {
    background: linear-gradient(135deg, #0f6b63, #128077);
    box-shadow: 0 6px 20px rgba(18, 128, 119, 0.6);
    transform: translateY(-2px);
}

.dor-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dor-promo {
    font-family: 'StackSansText', sans-serif;
    font-size: 11px;
    font-weight: 400;
    font-style: italic;
    color: #555;
    max-width: 240px;
    text-align: center;
    line-height: 1.4;
}

.dor-video-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.dor-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dor-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(211, 211, 211), rgba(211, 211, 211, 0.7));
    z-index: 1;
}

.dor-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(0, 0, 0, 0.15);
}



.dor-checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkbox-container {
    display: block;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
}

.task-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

.checkbox-label {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    color: #1f2937;
    font-weight: 400;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 8px;
}

.checkbox-label:hover {
    background: rgba(16, 185, 129, 0.05);
    color: #111827;
}

.checkbox-box {
    position: relative;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    margin-right: 12px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: visible;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.checkbox-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 4px;
    opacity: 0;
}

.checkmark {
    position: relative;
    z-index: 2;
    opacity: 0;
    -webkit-transform: scale(0.3) rotate(20deg);
    transform: scale(0.3) rotate(20deg);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.check-icon {
    width: 14px;
    height: 14px;
    fill: white;
    display: block;
    -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.success-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(70, 165, 155, 0.4);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.checkbox-text {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-text::after {
    content: "";
    display: none;
}

.checkbox-label:hover .checkbox-box {
    border-color: #46a59b;
    box-shadow: 0 0 0 2px rgba(70, 165, 155, 0.1);
}

.checkbox-container.checked .checkbox-box {
    border-color: #ef4444;
    background: #ef4444;
    -webkit-box-shadow:
        0 4px 12px rgba(239, 68, 68, 0.3),
        0 0 0 2px rgba(239, 68, 68, 0.2);
    box-shadow:
        0 4px 12px rgba(239, 68, 68, 0.3),
        0 0 0 2px rgba(239, 68, 68, 0.2);
}

.checkbox-container.checked .checkbox-fill {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.checkbox-container.checked .checkmark {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-animation: checkPop 0.3s ease-out 0.2s;
    animation: checkPop 0.3s ease-out 0.2s;
}

.checkbox-container.checked .success-ripple {
    -webkit-animation: rippleSuccess 0.6s ease-out;
    animation: rippleSuccess 0.6s ease-out;
}

.checkbox-container.checked .checkbox-text {
    color: #ef4444;
}

.checkbox-container.checked .checkbox-text::after {
    width: 100%;
}

.checkbox-label:active .checkbox-box {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

@-webkit-keyframes checkPop {
    0% { -webkit-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); }
    50% { -webkit-transform: scale(1.2) rotate(-5deg); transform: scale(1.2) rotate(-5deg); }
    100% { -webkit-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); }
}
@keyframes checkPop {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@-webkit-keyframes rippleSuccess {
    0% { width: 0; height: 0; opacity: 0.6; }
    70% { width: 50px; height: 50px; opacity: 0.3; }
    100% { width: 60px; height: 60px; opacity: 0; }
}
@keyframes rippleSuccess {
    0% { width: 0; height: 0; opacity: 0.6; }
    70% { width: 50px; height: 50px; opacity: 0.3; }
    100% { width: 60px; height: 60px; opacity: 0; }
}

.dor-fechamento {
    font-family: 'StackSansText', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 36px;
    letter-spacing: 0.5px;
}

.dor-fechamento em {
    font-family: 'StackSansNotch', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    color: #46a59b;
    font-weight: 700;
}

@media (max-width: 768px) {
    .dor {
        padding: 60px 24px;
          
    }

    .dor::before {
        width: 100%;
        background-image: none;
    }

    .dor::after {
        width: 100%;
        height: 60%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgb(211, 211, 211));
   
    }

    .dor-headline {
        font-size: 36px;
    }

    .dor-content {
        padding: 0;
        flex-direction: column;
        align-items: center;
    }

    .dor-video-bg {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
    }

    .dor-video-overlay {
        background: linear-gradient(to bottom, rgb(211, 211, 211), rgba(211, 211, 211, 0.9));
    }

    .dor-cta-btn {
        font-size: 16px;
        padding: 24px 32px;
    }

    .dor-promo {
        max-width: 100%;
    }

    .dor-divider {
        width: auto;
        height: 1px;
        align-self: auto;
    }

    .dor-fechamento {
        font-size: 30px;
    }
}

/* ========== VIRADA / SOLUÃ‡ÃƒO ========== */
.virada {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: center;
    position: relative;
    box-shadow: 4px 4px 12px #0000008b;
    overflow: hidden;
}

.virada-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.virada::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.virada-inner {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 16px;
    padding: 0 40px;
    box-sizing: border-box;
}

.virada-tag {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #46a59b;
    letter-spacing: 3px;
}

.virada-headline {
    font-family: 'StackSansText', sans-serif;
    font-size: 52px;
    font-weight: 400;
    background: linear-gradient(to bottom, #EBEBEB, #DEDEDE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
}

.virada-headline em {
    font-family: 'StackSansNotch', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    background: linear-gradient(to right, #128077, #0f9689, #128077);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.virada-sub {
    font-family: 'StackSansText', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.virada-checks {
    list-style: none;
    padding: 40px 40px;
    margin: 40px 0px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 4px 4px 96px #ffffff47;
    background-color: rgba(211, 211, 211, 0.3);
    backdrop-filter: blur(4px);
    gap: 12px;
    width: 100%;
    align-self: stretch;
    position: relative;
    z-index: 2;
}

.virada-checks li {
    font-family: 'StackSansText', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 10px;
}

.virada-check-icon {
    color: #10ac9d;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.virada-btn {
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(135deg, #128077, #10ac9d);
    border: none;
    padding: 18px 40px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(18, 128, 119, 0.4);
}

.virada-btn:hover {
    background: linear-gradient(135deg, #0f6b63, #128077);
    box-shadow: 0 6px 20px rgba(18, 128, 119, 0.6);
    transform: translateY(-2px);
}

.virada-line {
    width: 60px;
    height: 2px;
    background: #46a59b;
    margin-top: 12px;
}

/* ========== DIFERENCIAIS ========== */
.diferenciais {
    background: rgba(239, 239, 239, 0.4);
    padding: 80px 40px 60px;
    overflow: hidden;
    position: relative;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/projects/estrutura-concreto-armado.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.diferenciais::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #e8e8e8, #ffffffd0);
    z-index: -1;
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 48px;
}

.diferenciais-tag {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
    background: #128077;
    padding: 12px 40px;
    margin-left: -40px;
    margin-right: -40px;
    text-align: center;
}

.diferenciais-headline {
    font-family: 'StackSansText', sans-serif;
    font-size: 40px;
    font-weight: 400;
    background: linear-gradient(to bottom, #212121, #454545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 12px;
    margin-top: 40px;
}

.diferenciais-headline em {
    font-family: 'StackSansNotch', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    background: linear-gradient(to right, #128077, #0f9689, #128077);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
    margin-right: -0.15em;
        font-size: 56px;
}

.diferenciais-sub {
    font-family: 'StackSansText', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444;
}

.diferenciais-content {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.diferenciais-cards {
    flex: 0 0 50%;
    max-width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    align-content: start;
}



.dif-card {
    background: rgba(70, 165, 155, 0.06);
    border: 1px solid rgba(70, 165, 155, 0.25);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.dif-card:hover {
    border-color: #46a59b;
    background: rgba(70, 165, 155, 0.1);
    box-shadow: 0 4px 12px rgba(70, 165, 155, 0.15), 0 0 0 2px rgba(70, 165, 155, 0.1);
}

.dif-card-body {
    padding: 24px;
}

.dif-card-number {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #46a59b;
    letter-spacing: 2px;
}

.dif-card-body h3 {
    font-family: 'StackSansText', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #111;
    margin: 8px 0;
}

.dif-card-body p {
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

.dif-bonus {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #128077, #10ac9d);
    padding: 18px 24px;
    border-left: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(18, 128, 119, 0.35);
}

.dif-bonus-tag {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.dif-bonus-text {
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
}

.dif-bonus-text strong {
    font-weight: 700;
}

.diferenciais-modelo {
    flex: 0 0 calc(50% - 32px);
    max-width: calc(50% - 32px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.modelo-sketchfab-block {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    width: 100%;
    flex: 1;
}

.diferenciais-modelo .sketchfab-embed-wrapper {
    flex: 1;
    min-height: 300px;
}

.sketchfab-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    background: #128077;
    color: #fff;
}

.sketchfab-hint-text {
    font-family: 'StackSansText', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.sketchfab-hint-arrows {
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    top: 1px;
    animation: sketchfab-bounce 1.4s ease-in-out infinite;
}

@keyframes sketchfab-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.modelo-qrcode {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modelo-qrcode a {
    flex-shrink: 0;
}

.modelo-qrcode img {
    width: 80px;
    height: 80px;
    display: block;
    transition: opacity 0.3s ease;
}

.modelo-qrcode a:hover img {
    opacity: 0.8;
}

.modelo-qrcode-legenda {
    font-family: 'StackSansText', sans-serif;
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: #666;
    line-height: 1.5;
}

.diferenciais-letreiro {
    background: #128077;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.letreiro-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    animation: letreiro-scroll 20s linear infinite;
}

.letreiro-item {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    text-transform: uppercase;
    flex-shrink: 0;
}

.letreiro-star {
    width: 28px;
    height: 28px;
    color: #fff;
    flex-shrink: 0;
}

@keyframes letreiro-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .diferenciais-letreiro {
        padding: 6px 0;
    }

    .letreiro-item {
        font-size: 28px;
    }

    .letreiro-star {
        width: 20px;
        height: 20px;
    }
}

.sketchfab-embed-wrapper {
    width: 100%;
    height: 100%;
}

.sketchfab-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .virada {
        padding: 70px 24px;
    }

    .virada-headline {
        font-size: 34px;
    }

    .virada-checks {
        padding: 16px 24px;
        align-items: flex-start;
    }

    .virada-checks li {
        align-items: flex-start;
        text-align: left;
    }

    .virada-check-icon {
        line-height: 1.4;
        min-width: 18px;
    }

    .diferenciais {
        padding: 60px 24px 40px;
    }

    .diferenciais-tag {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .diferenciais-headline {
        font-size: 28px;
    }

    .diferenciais-content {
        flex-direction: column;
        gap: 24px;
    }

    .diferenciais-cards {
        flex: none;
        max-width: 100%;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .diferenciais-modelo {
        flex: none;
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }

    .modelo-sketchfab-block {
        flex: none;
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
    }

    .diferenciais-modelo .sketchfab-embed-wrapper {
        flex: none;
        min-height: 0;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 24px;
    }

    .hero-logo {
        top: 20px;
        left: 24px;
        height: 54px;
    }

    .hero-title {
        font-size: clamp(36px, 12vw, 46px);
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 12px 24px;
        text-align: center;
        width: 100%;
    }

    .hero-stats {
        width: 100%;
    }
}

/* ========== AVALIAÃ‡Ã•ES GOOGLE ========== */
.avaliacoes {
    padding: 80px 40px 60px;
    background: #111;
    overflow: hidden;
}

.avaliacoes-header {
    text-align: center;
    margin-bottom: 48px;
}

.avaliacoes-tag {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #46a59b;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.avaliacoes-headline {
    font-family: 'StackSansText', sans-serif;
    font-size: 40px;
    font-weight: 400;
    background: linear-gradient(to bottom, #EBEBEB, #DEDEDE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 16px;
}

.avaliacoes-headline em {
    font-family: 'StackSansNotch', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    background: linear-gradient(to right, #128077, #0f9689, #128077);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.avaliacoes-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.avaliacoes-stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 22px;
    height: 22px;
}

.star-icon.filled {
    fill: #FBBC04;
}

.avaliacoes-nota {
    font-family: 'StackSansText', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.avaliacoes-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.avaliacoes-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollTrack 30s linear infinite;
}

.avaliacoes-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.avaliacao-card {
    flex-shrink: 0;
    width: 340px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.3s;
}

.avaliacao-card:hover {
    border-color: rgba(70, 165, 155, 0.4);
}

.avaliacao-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avaliacao-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #46a59b, #128077);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'StackSansText', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    flex-shrink: 0;
}

.avaliacao-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.avaliacao-nome {
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #eee;
}

.avaliacao-stars-sm {
    display: flex;
    gap: 1px;
}

.star-sm {
    width: 14px;
    height: 14px;
    fill: #FBBC04;
}

.avaliacao-texto {
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .avaliacoes {
        padding: 60px 16px 40px;
    }

    .avaliacoes-headline {
        font-size: 28px;
    }

    .avaliacao-card {
        width: 280px;
        padding: 20px;
    }

    .avaliacao-texto {
        font-size: 13px;
    }
}

/* ========== WHATSAPP WIDGET ========== */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

/* ========== CTA FINAL ========== */
.cta-final {
    padding: 100px 40px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.cta-final-inner {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-final-sub {
    font-family: 'StackSansText', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #aaa;
    line-height: 1.6;
    max-width: 560px;
}

.cta-final-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-final-caption {
    font-family: 'StackSansText', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.5px;
}

.cta-final-headline {
    font-family: 'StackSansText', sans-serif;
    font-size: 48px;
    font-weight: 400;
    background: linear-gradient(to bottom, #EBEBEB, #DEDEDE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cta-final-btn {
    font-family: 'StackSansText', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(135deg, #128077, #10ac9d);
    border: none;
    padding: 18px 40px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 128, 119, 0.4);
}

.cta-final-btn:hover {
    background: linear-gradient(135deg, #0f6b63, #128077);
    box-shadow: 0 6px 20px rgba(18, 128, 119, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-final {
        padding: 70px 24px;
    }

    .cta-final-headline {
        font-size: 30px;
    }

    .cta-final-btn {
        font-size: 13px;
        padding: 14px 28px;
        width: 100%;
        text-align: center;
    }
}

/* ========== BLOCO FINAL ========== */
.bloco-final {
    padding: 0 0 0;
    background: #f0f0f0;
    overflow: hidden;
    isolation: isolate;
    position: relative;
}

.bloco-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/ateng-logo-green.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.bloco-final > * {
    position: relative;
    z-index: 1;
}

.bloco-final-header {
    padding: 80px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bloco-final-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bloco-final-logo {
    height: 36px;
    margin-bottom: 8px;
    filter: invert(1);
}

.bloco-final-titulo {
    font-family: 'StackSansText', sans-serif;
    font-size: 40px;
    font-weight: 400;
    background: linear-gradient(to bottom, #212121, #454545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.bloco-final-subtitulo {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #46a59b;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.bloco-final-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 40px 40px 80px;
    border: 1px solid #128077;
    background: rgba(240, 240, 240, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: relative;
}

/* .bloco-final-inner::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 20%;
    background: linear-gradient(135deg, #128077, #0f9689, #46a59b);
    z-index: -1;
} */

/* ESQUERDA — Contato */
.bloco-final-contato {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bloco-final-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bloco-final-info-label {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #46a59b;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bloco-final-info-value {
    font-family: 'StackSansText', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.bloco-final-info-value a {
    color: inherit;
    text-decoration: none;
}

.bloco-final-btn {
    font-family: 'StackSansText', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(135deg, #128077, #10ac9d);
    border: none;
    padding: 16px 32px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 8px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(18, 128, 119, 0.4);
}

.bloco-final-btn:hover {
    background: linear-gradient(135deg, #0f6b63, #128077);
    box-shadow: 0 6px 20px rgba(18, 128, 119, 0.6);
    transform: translateY(-2px);
}

/* CENTRO — Sobre */
.bloco-final-sobre {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 40px;
}

.bloco-final-nome {
    font-family: 'StackSansText', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #111;
}

.bloco-final-cargo {
    font-family: 'StackSansNotch', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #46a59b;
    letter-spacing: 1px;
}

.bloco-final-bio {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.bloco-final-bio p {
    font-family: 'StackSansText', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

.bloco-final-stats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding: 0;
}

.bloco-final-stats li {
    font-family: 'StackSansText', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.bloco-final-stats li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #46a59b;
    border-radius: 50%;
}

.bloco-final-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.bloco-final-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bloco-final-social:hover {
    border-color: #46a59b;
    color: #46a59b;
}

.social-icon {
    width: 18px;
    height: 18px;
}

/* DIREITA — Foto */
.bloco-final-foto {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    margin-bottom: -80px;
}

.bloco-final-foto img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .bloco-final-header {
        padding: 60px 24px 24px;
    }

    .bloco-final-titulo {
        font-size: 28px;
    }

    .bloco-final-inner {
        flex-direction: column;
        padding: 24px 24px 60px;
        gap: 40px;
    }

    .bloco-final-sobre {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 24px 0;
    }

    .bloco-final-btn {
        align-self: stretch;
    }

    .bloco-final-foto {
        order: 3;
    }

    .bloco-final-foto img {
        max-width: 220px;
    }

    .bloco-final-socials {
        justify-content: center;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: #0a0a0a;
    padding: 32px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    height: 28px;
}

.footer-copy {
    font-family: 'StackSansText', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer {
        padding: 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--up {
    transform: translateY(60px);
}

.reveal--down {
    transform: translateY(-40px);
}

.reveal--left {
    transform: translateX(-80px);
}

.reveal--right {
    transform: translateX(80px);
}

.reveal--scale {
    transform: scale(0.85);
}

.reveal--fade {
    transform: none;
}

.reveal--visible {
    opacity: 1 !important;
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


