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

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background:
        radial-gradient(circle at top left, rgba(30, 58, 138, 0.08), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

header {
    background-color: #000000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header img {
    max-height: 50px;
}

/* Menu normal (desktop) */
.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #1EC965;
}

/* Hamburger menu (mobile) */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.9rem !important;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /* Mostra o hamburger */
    .hamburger {
        display: block;
    }

    /* Esconde o menu normal */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 50vh;
        background-color: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.2rem;
        padding: 2rem;
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    /* Menu aberto */
    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 0;
    }

    .lightbox-prev, .lightbox-next {
        font-size: 2rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* Restante do CSS (mantido igual) */
.hero {
    background: #060f14;
background: linear-gradient(90deg, rgba(6, 15, 20, 1) 7%, rgba(3, 41, 74, 1) 50%, rgba(2, 7, 43, 1) 93%);
    color: #ffffff;
    text-align: center;
    padding: 180px 5% 100px;
    margin-top: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background-color: #1EC965;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30,201,101,0.4);
}

.cta-btn:hover {
    background-color: #17a34a;
    transform: translateY(-5px);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.cta-btn-secondary:hover {
    background-color: rgba(255,255,255,0.12);
}

.features {
    padding: 80px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(56px) scale(0.96);
    transition: opacity 0.28s ease;
}

[data-reveal].is-visible {
    animation: revealBounce 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
    animation-delay: var(--reveal-delay, 0s);
}

@keyframes revealBounce {
    0% {
        opacity: 0;
        transform: translateY(56px) scale(0.96);
    }
    60% {
        opacity: 1;
        transform: translateY(-12px) scale(1.015);
    }
    78% {
        transform: translateY(6px) scale(0.995);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: #1EC965;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing {
    padding: 80px 5%;
    background: linear-gradient(180deg, #f4f7fb 0%, #dfe8f7 100%);
    text-align: center;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 18px 38px rgba(20, 38, 89, 0.12);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1EC965;
    margin: 1rem 0;
}

.gallery {
    padding: 80px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 5% 30px;
    text-align: center;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s;
}

.whatsapp-btn i {
    margin-right: 0.5rem;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
}
/* ===== CLIENTES ===== */
.clients {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #eef5ff 0%, #f8f9fb 100%);
    text-align: center;
}

.clients-subtitle {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #666;
    font-size: 1rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.clients-grid img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.clients-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.benefits {
    padding: 80px 5%;
    background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
    text-align: center;
}

.benefit-card i {
    font-size: 2.6rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.trial-section {
    padding: 80px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.trial-card {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #0b1733 0%, #173b7a 55%, #1e3a8a 100%);
    color: #ffffff;
    border-radius: 0;
    padding: 4rem 5%;
    box-shadow: 0 22px 44px rgba(10, 24, 61, 0.24);
    text-align: center;
}

.trial-copy h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trial-copy p {
    color: rgba(255,255,255,0.88);
    margin-bottom: 1rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.trial-copy ul {
    list-style: none;
    padding-left: 0;
    color: rgba(255,255,255,0.88);
    max-width: 860px;
    margin: 1.2rem auto 0;
}

.trial-copy li {
    margin-bottom: 0.6rem;
}

.trial-actions {
    display: flex;
    justify-content: center;
}

.trial-actions {
    text-align: center;
}

.trial-link {
    display: inline-block;
    margin-top: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .trial-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}
