body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0a0e1a;
    color: #e8eaf6;
    line-height: 1.6;
    overflow-x: hidden;
    /* Evita scroll horizontal */
}

* {
    box-sizing: border-box;
    /* Garante que padding/border sejam incluídos na largura */
}

html {
    overflow-x: hidden;
    /* Evita scroll horizontal */
}

header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e0e0e0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 101;
}

/* Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #ffd700;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #ffd700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.nav-links a:hover,
.nav-links .insta-link:hover {
    color: #fbc02d;
}

.nav-links .insta-link img {
    filter: invert(1) brightness(1.5);
}

/* Garantir que o menu inicie fechado no mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100% !important;
        /* Force que sempre inicie fechado */
        width: 100%;
        height: 100vh;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.3s ease;
        font-size: 1.2rem;
        z-index: 100;
        overflow: hidden;
    }

    .nav-links.active {
        right: 0 !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0e1a;
    margin-top: 0;
    /* Remove qualquer margem */
}

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.25;
        z-index: 1;
        will-change: auto;
        transform: translateZ(0);
    }

    /* Fallback background para quando o vídeo não carrega */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0a0e1a 0%, #1a237e 50%, #2c387e 100%);
        z-index: 0;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(10, 14, 26, 0.8) 0%, rgba(26, 35, 126, 0.6) 50%, rgba(251, 192, 45, 0.2) 100%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 900px;
        padding: 2rem;
        color: #e8eaf6;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        color: #e8eaf6;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        font-weight: 700;
    }

    .destaque {
        color: #0a0e1a;
        background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
        padding: 0.2em 0.8em;
        border-radius: 8px;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        color: #c5cae9;
        font-weight: 500;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin: 2rem 0;
        flex-wrap: wrap;
    }

    .stat {
        text-align: center;
        background: rgba(26, 35, 126, 0.2);
        padding: 1.5rem;
        border-radius: 10px;
        border: 1px solid rgba(251, 192, 45, 0.3);
        backdrop-filter: blur(10px);
    }

    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: bold;
        color: #ffd700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .stat-label {
        font-size: 0.9rem;
        color: #c5cae9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-btn {
        background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
        color: #0a0e1a;
        padding: 1.2rem 3rem;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        margin: 1rem 0;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
        background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    }

    .hero-tagline {
        font-size: 1.1rem;
        color: #9fa8da;
        font-style: italic;
        margin-top: 1rem;
    }

    /* Animação de digitação - otimizada */
    .typewriter {
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        will-change: width;
    }

    .typewriter.typing {
        border-right: 3px solid #ffd700;
        animation: blink-caret 0.75s step-end infinite;
    }

    @keyframes blink-caret {

        from,
        to {
            border-color: transparent;
        }

        50% {
            border-color: #ffd700;
        }
    }

    /* Animação do botão CTA - simplificada */
    .cta-btn {
        background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
        color: #0a0e1a;
        padding: 1.2rem 3rem;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        margin: 1rem 0;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        will-change: transform, box-shadow;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
        background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    }

    .cta-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .cta-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    /* Contador animado */
    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: bold;
        color: #ffd700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        transition: all 0.3s ease;
    }

    .stat:hover .stat-number {
        transform: scale(1.1);
        text-shadow: 0 4px 8px rgba(255, 215, 0, 0.5);
    }

    /* Efeito ripple para botões */
    .ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transform: scale(0);
        animation: ripple-animation 0.6s linear;
        pointer-events: none;
    }

    @keyframes ripple-animation {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    /* Melhorias nas animações dos stats */
    .stat {
        text-align: center;
        background: rgba(26, 35, 126, 0.2);
        padding: 1.5rem;
        border-radius: 10px;
        border: 1px solid rgba(251, 192, 45, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .stat:hover {
        transform: translateY(-5px);
        border-color: #ffd700;
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    }

    .hero-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 2rem 0;
    }

    .hero-list li {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        font-size: 1.08rem;
        margin-bottom: 0.7rem;
        color: #fbc02d;
        font-weight: 500;
    }

    .hero-list .icon {
        height: 22px;
        width: 22px;
        filter: brightness(1.2) drop-shadow(0 0 2px #0008);
    }

    /* Removido bloco duplicado da hero-img e hero-content para evitar conflito de estilos */
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #fbc02d;
        font-family: 'Merriweather', serif;
    }

    .destaque {
        color: #fff;
        background: #fbc02d;
        padding: 0.1em 0.5em;
        border-radius: 6px;
        font-weight: bold;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: #e0e0e0;
    }

    .cta-btn {
        background: #fbc02d;
        color: #181a1b;
        padding: 0.9rem 2.2rem;
        border: none;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        box-shadow: 0 2px 8px rgba(251, 192, 45, 0.08);
    }

    .cta-btn:hover {
        background: #fff;
        color: #181a1b;
    }

    .hero-img {
        flex: 1 1 250px;
        text-align: center;
    }

    .hero-img img {
        max-width: 300px;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(251, 192, 45, 0.10);
        border: 2px solid #232526;
    }

    .servicos {
        max-width: 1200px;
        margin: 4rem auto 0 auto;
        padding: 3rem 1rem;
        background: rgba(26, 35, 126, 0.05);
        border-radius: 20px;
        box-sizing: border-box;
    }

    .servicos h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #ffd700;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .cards {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        align-items: stretch;
        max-width: 100%;
    }

    .card {
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(10, 14, 26, 0.8) 100%);
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        color: #e8eaf6;
        border: 1px solid rgba(251, 192, 45, 0.2);
        backdrop-filter: blur(10px);
        flex: 0 1 300px;
        min-width: 280px;
        max-width: 350px;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .card-img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 1.5rem;
        border: 3px solid #ffd700;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    .card h3 {
        color: #ffd700;
        margin-bottom: 1rem;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        border-color: #ffd700;
    }

    .diferenciais {
        background: #181a1b;
        padding: 2.5rem 1rem 2rem 1rem;
        margin: 2rem auto 0 auto;
        border-radius: 12px;
        box-shadow: 0 2px 16px rgba(251, 192, 45, 0.04);
        max-width: 1200px;
        box-sizing: border-box;
    }

    .diferenciais h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #fbc02d;
        font-family: 'Merriweather', serif;
    }

    .diferenciais-content {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        max-width: 100%;
    }

    .diferencial-item {
        background: #232526;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(251, 192, 45, 0.04);
        padding: 2rem 1.5rem;
        flex: 1 1 220px;
        max-width: 280px;
        min-width: 200px;
        text-align: center;
        color: #fff;
        border: 1px solid #333;
        transition: box-shadow 0.2s, border 0.2s;
        box-sizing: border-box;
    }

    .diferencial-item h4 {
        color: #fbc02d;
        margin-bottom: 0.7rem;
    }

    .diferencial-item .icon {
        width: 58px;
        height: 58px;
        margin-bottom: 0.7rem;
        filter: brightness(1.2) drop-shadow(0 0 2px #ffd700);
    }

    .diferencial-item:hover {
        box-shadow: 0 6px 24px rgba(251, 192, 45, 0.10);
        border-color: #fbc02d;
    }

    .sobre {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        max-width: 1200px;
        margin: 4rem auto 0 auto;
        padding: 3rem 1rem;
        gap: 3rem;
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(10, 14, 26, 0.6) 100%);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        box-sizing: border-box;
    }

    .sobre-content {
        flex: 1 1 400px;
        min-width: 300px;
    }

    .sobre-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: #ffd700;
        font-weight: 700;
    }

    .sobre-content ul {
        margin: 1.5rem 0 0 0;
        padding: 0;
        color: #e8eaf6;
        list-style: none;
    }

    .sobre-content li {
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }

    .sobre-icons {
        margin-top: 2rem;
        display: flex;
        gap: 1.5rem;
    }

    .sobre-icons .icon {
        width: 45px;
        filter: brightness(1.3) drop-shadow(0 0 1px rgba(255, 215, 0, 0.5));
    }

    .quote {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(26, 35, 126, 0.2);
        border-left: 4px solid #ffd700;
        border-radius: 8px;
        font-style: italic;
        color: #c5cae9;
        font-size: 1.1rem;
    }

    .sobre-img {
        flex: 1 1 300px;
        text-align: center;
    }

    .sobre-img img {
        max-width: 280px;
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        border: 3px solid #ffd700;
        filter: brightness(1.1) contrast(1.1);
    }

    /* Seção WhatsApp */
    .whatsapp-section {
        margin: 3rem 0;
        text-align: center;
    }

    .whatsapp-btn {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        color: white;
        padding: 1.5rem 3rem;
        border: none;
        border-radius: 50px;
        font-size: 1.3rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        margin: 1rem 0;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .whatsapp-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
        background: linear-gradient(135deg, #2ded75 0%, #16a085 100%);
    }

    .whatsapp-btn i {
        font-size: 1.8rem;
    }

    .whatsapp-info {
        color: #c5cae9;
        font-size: 1.1rem;
        margin-top: 1rem;
        font-style: italic;
    }

    /* Formulário - Melhorias adicionais */
    .contato {
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.2) 0%, rgba(10, 14, 26, 0.8) 100%);
        padding: 4rem 1rem;
        margin: 4rem auto 0 auto;
        text-align: center;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(251, 192, 45, 0.2);
        max-width: 1200px;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }

    .contato::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
        animation: rotate 20s linear infinite;
        z-index: 0;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .contato>* {
        position: relative;
        z-index: 1;
    }

    #contatoForm {
        max-width: 600px;
        margin: 0 auto 3rem auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contato-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .info-item {
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.3) 0%, rgba(10, 14, 26, 0.8) 100%);
        padding: 1.5rem 2rem;
        border-radius: 15px;
        border: 1px solid rgba(251, 192, 45, 0.4);
        color: #e8eaf6;
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .info-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
        border-color: #ffd700;
    }

    .info-item strong {
        color: #ffd700;
        display: block;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .contato h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #ffd700;
        font-weight: 700;
    }

    .contato-subtitle {
        font-size: 1.2rem;
        color: #c5cae9;
        margin-bottom: 2rem;
    }

    .contato-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .info-item {
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.3) 0%, rgba(10, 14, 26, 0.8) 100%);
        padding: 1.5rem 2rem;
        border-radius: 15px;
        border: 1px solid rgba(251, 192, 45, 0.4);
        color: #e8eaf6;
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .info-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
        border-color: #ffd700;
    }

    .info-item strong {
        color: #ffd700;
        display: block;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    /* Mapa e Localização - Estilização Avançada */
    .localizacao {
        max-width: 1200px;
        margin: 4rem auto 0 auto;
        padding: 0;
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(10, 14, 26, 0.8) 100%);
        border-radius: 25px;
        backdrop-filter: blur(15px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(251, 192, 45, 0.2);
        overflow: hidden;
        box-sizing: border-box;
    }

    .localizacao h2 {
        text-align: center;
        font-size: 2.5rem;
        margin: 0;
        padding: 3rem 1rem 2rem 1rem;
        color: #ffd700;
        font-weight: 700;
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.3) 0%, rgba(10, 14, 26, 0.9) 100%);
    }

    .mapa-container {
        position: relative;
        margin: 0;
        box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
        background: #0a0e1a;
    }

    .mapa-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%, rgba(26, 35, 126, 0.05) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .mapa-container iframe {
        filter: grayscale(0.3) brightness(0.8) contrast(1.2);
        transition: filter 0.4s ease;
    }

    .mapa-container:hover iframe {
        filter: grayscale(0.1) brightness(0.9) contrast(1.1);
    }

    .endereco-info {
        text-align: center;
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.3) 0%, rgba(10, 14, 26, 0.9) 100%);
        padding: 3rem 2rem;
        margin: 0;
        border: none;
        position: relative;
    }

    .endereco-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #ffd700, transparent);
        border-radius: 2px;
    }

    .endereco-info h3 {
        color: #ffd700;
        margin-bottom: 2rem;
        font-size: 1.8rem;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .endereco-info p {
        color: #c5cae9;
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }

    .endereco-info strong {
        color: #ffd700;
        font-weight: 700;
    }

    /* Seção de Testemunhos */
    .testemunhos {
        max-width: 1200px;
        margin: 4rem auto 0 auto;
        padding: 4rem 1rem;
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(10, 14, 26, 0.7) 100%);
        border-radius: 25px;
        backdrop-filter: blur(15px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(251, 192, 45, 0.2);
        box-sizing: border-box;
    }

    .testemunhos h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #ffd700;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .testemunhos-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        align-items: stretch;
        justify-content: center;
        max-width: 100%;
    }

    .testemunho {
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.2) 0%, rgba(10, 14, 26, 0.9) 100%);
        border-radius: 20px;
        padding: 2.5rem 2rem;
        border: 1px solid rgba(251, 192, 45, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        flex: 1 1 300px;
        min-width: 280px;
        max-width: 350px;
        display: flex;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    .testemunho::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 6rem;
        color: rgba(255, 215, 0, 0.2);
        font-family: serif;
        line-height: 1;
    }

    .testemunho:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
        border-color: #ffd700;
    }

    .testemunho-content p {
        color: #e8eaf6;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        font-style: italic;
        position: relative;
        z-index: 2;
    }

    .testemunho-autor {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .testemunho-autor strong {
        color: #ffd700;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .testemunho-autor span {
        color: #c5cae9;
        font-size: 0.95rem;
        opacity: 0.8;
    }

    /* Seção de Vídeo Vertical */
    .video-section {
        max-width: 1200px;
        margin: 4rem auto 0 auto;
        padding: 4rem 1rem;
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(10, 14, 26, 0.7) 100%);
        border-radius: 25px;
        backdrop-filter: blur(15px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        border: 1px solid rgba(251, 192, 45, 0.2);
        box-sizing: border-box;
        text-align: center;
    }

    .video-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #ffd700;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    /* Carrossel de Vídeos */
    .video-carousel {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
    }

    .carousel-container {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 400%; /* 4 vídeos × 100% */
    }

    .video-slide {
        flex: 0 0 25%; /* Cada slide ocupa 25% da largura total */
        position: relative;
    }

    .video-container {
        position: relative;
        display: block;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        border: 3px solid #ffd700;
    }

    .video-vertical {
        width: 100%;
        height: auto;
        aspect-ratio: 9/16; /* Formato vertical */
        object-fit: cover;
        display: block;
        background: #0a0e1a;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .video-container:hover .video-overlay {
        opacity: 0.7;
    }

    .video-play-btn {
        background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
        color: #0a0e1a;
        border: none;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
    }

    .video-play-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
        background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    }

    .video-play-btn i {
        margin-left: 3px; /* Ajuste visual para centralizar o ícone play */
    }

    /* Quando o vídeo estiver reproduzindo, esconder o overlay */
    .video-container.playing .video-overlay {
        opacity: 0;
        pointer-events: none;
    }

    /* Controles do Carrossel */
    .carousel-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        padding: 0 20px;
        pointer-events: none;
    }

    .carousel-btn {
        background: rgba(10, 14, 26, 0.8);
        border: 2px solid #ffd700;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        color: #ffd700;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        pointer-events: auto;
    }

    .carousel-btn:hover {
        background: rgba(255, 215, 0, 0.2);
        border-color: #ffeb3b;
        color: #ffeb3b;
        transform: scale(1.1);
    }

    .carousel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
    }

    /* Dots/Indicadores */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid #ffd700;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active,
    .dot:hover {
        background: #ffd700;
        transform: scale(1.2);
    }

    /* Animação suave para elementos interativos */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    footer {
        background: rgba(10, 14, 26, 0.95);
        text-align: center;
        padding: 3rem 0 2rem 0;
        margin-top: 4rem;
        color: #e8eaf6;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-insta {
        color: #ffd700;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .footer-insta:hover {
        color: #ffeb3b;
        transform: translateY(-2px);
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #9fa8da;
        margin-top: 1rem;
        max-width: 600px;
        line-height: 1.5;
    }

    @media (max-width: 1100px) {
        .hero {
            height: 80vh;
        }

        .hero-content h1 {
            font-size: 2.8rem;
        }

        .hero-stats {
            gap: 1.5rem;
        }

        .stat {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {

        /* Header e Menu Hambúrguer */
        .navbar {
            padding: 1rem;
            min-height: 70px;
            /* Altura mínima consistente */
        }

        .hamburger {
            display: flex;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(10, 14, 26, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            transition: right 0.3s ease;
            font-size: 1.2rem;
            z-index: 100;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            color: #e0e0e0;
            font-size: 1.3rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 1rem 2rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            transform: scale(1.05);
        }

        /* Hero Section Mobile */
        .hero {
            height: 100vh;
            margin-top: 0;
            /* Remove margem para evitar sobreposição */
        }

        .hero-content {
            padding: 2rem 1rem;
            margin-top: 0;
            /* Remove margem extra */
            /* Ajuste para o header fixo */
            padding-top: calc(2rem + 70px);
            /* Espaço para o header */
        }

        .hero-content h1 {
            font-size: 2.2rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1rem;
        }

        .stat {
            max-width: 300px;
            margin: 0 auto;
        }

        /* Cards responsivos */
        .cards {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .card {
            max-width: 100%;
            width: 100%;
            min-width: unset;
            margin: 0;
        }

        /* Testemunhos responsivos - CORRIGIDO */
        .testemunhos-container {
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }

        .testemunho {
            min-width: unset;
            max-width: 100%;
            width: 100%;
            flex: none;
            margin: 0;
            padding: 2rem 1.5rem;
        }

        /* Seção de Vídeo Responsiva */
        .video-section {
            margin-top: 2rem;
            padding: 2rem 1rem;
            margin-left: 1rem;
            margin-right: 1rem;
            max-width: calc(100% - 2rem);
        }

        .video-section h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .video-carousel {
            max-width: 300px;
        }

        .carousel-controls {
            padding: 0 10px;
        }

        .carousel-btn {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }

        .video-container {
            max-width: 100%;
            margin: 0 auto;
            flex: none;
        }

        .video-play-btn {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .carousel-dots {
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .dot {
            width: 10px;
            height: 10px;
        }

        /* Seção sobre responsiva */
        .sobre {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
        }

        .sobre-img {
            order: -1;
        }

        .sobre-img img {
            max-width: 250px;
            width: 100%;
        }

        /* Contato responsivo */
        .contato-info {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .info-item {
            text-align: center;
            max-width: 100%;
            width: 100%;
        }

        /* WhatsApp Button Mobile */
        .whatsapp-btn {
            font-size: 1.1rem;
            padding: 1.2rem 2rem;
            width: auto;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Diferenciais responsivo */
        .diferenciais-content {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .diferencial-item {
            max-width: 100%;
            width: 100%;
            min-width: unset;
        }

        /* Footer responsivo */
        .footer-content {
            padding: 0 1rem;
        }

        /* Ajustes de espaçamento geral - CORRIGIDO */
        .servicos,
        .diferenciais,
        .sobre,
        .contato,
        .testemunhos,
        .localizacao {
            margin-top: 2rem;
            padding: 2rem 1rem;
            margin-left: 1rem;
            margin-right: 1rem;
            max-width: calc(100% - 2rem);
        }

        /* Mapa responsivo */
        .mapa-container iframe {
            height: 250px;
            width: 100%;
        }

        .endereco-info {
            padding: 2rem 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 1.8rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .cta-btn {
            font-size: 1rem;
            padding: 1rem 2rem;
        }

        .whatsapp-btn {
            font-size: 1rem;
            padding: 1rem 1.5rem;
            flex-direction: column;
            gap: 0.5rem;
        }

        .logo {
            font-size: 1.2rem;
        }

        .logo img {
            width: 45px !important;
        }

        .navbar {
            padding: 0.8rem;
        }

        .servicos h2,
        .diferenciais h2,
        .sobre h2,
        .contato h2,
        .testemunhos h2,
        .localizacao h2,
        .video-section h2 {
            font-size: 2rem;
        }

        /* Seção de Vídeo para telas pequenas */
        .video-carousel {
            max-width: 250px;
        }

        .carousel-btn {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }
        
        .video-container {
            max-width: 100%;
        }

        .video-play-btn {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .carousel-dots {
            gap: 0.3rem;
            margin-top: 1rem;
        }

        .dot {
            width: 8px;
            height: 8px;
        }
    }

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2ded75 0%, #16a085 100%);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* Animação de pulso para chamar atenção */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 20px rgba(37, 211, 102, 0.3);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .whatsapp-float i {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .whatsapp-float i {
        font-size: 1.4rem;
    }
}