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

:root {
    --primary-color: #7c3aed;
    --secondary-color: #2563eb;
    --accent-color: #fbbf24;
    --dark-color: #1e1b4b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --gradient: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 20px auto 0;
    border-radius: 2px;
}

.hero {
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mockup {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.mockup:hover {
    transform: scale(1.05) rotate(2deg);
}

.mockup i {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mockup-label {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    display: block;
}

.cta-button-image {
    margin-top: 1rem;
}

.conexao {
    padding: 4rem 0 0 0;
    background: #f5f5f5;
    position: relative;
}

.conexao-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 3rem;
}

.conexao-title-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.conexao-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.produto-mockup {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
}

.produto-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-green {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-green:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.oferta-banner {
    background: #dc3545;
    color: white;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

.oferta-banner p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.conexao-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.incluso {
    padding: 6rem 0;
    background: white;
}

.incluso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.incluso-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.incluso-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.incluso-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.incluso-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.incluso-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

.beneficios {
    padding: 6rem 0;
    background: var(--light-color);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.beneficio-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.beneficio-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.beneficio-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.beneficio-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

.depoimentos {
    padding: 6rem 0;
    background: white;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.depoimento-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.depoimento-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.depoimento-texto {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
}

.depoimento-autor {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.depoimento-cargo {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
}

.oferta {
    padding: 6rem 0;
    background: var(--gradient);
}

.oferta-main-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.ofertas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.oferta-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

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

.oferta-premium {
    border: 3px solid var(--accent-color);
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.4);
}

.badge-popular {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.8px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
    animation: pulsePopular 2s infinite;
    white-space: nowrap;
}

@keyframes pulsePopular {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 10px 35px rgba(239, 68, 68, 0.8);
    }
}

.oferta-card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
}

.oferta-premium .oferta-card-header {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding-top: 3.5rem;
}

.oferta-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.oferta-preco {
    margin: 1rem 0;
}

.preco-de {
    font-size: 1rem;
    color: #64748b;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.preco-de span {
    font-weight: 600;
}

.preco-por {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.oferta-card-body {
    padding: 2rem;
}

.tudo-basico {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.oferta-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.oferta-lista li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
}

.oferta-lista li:last-child {
    border-bottom: none;
}

.oferta-lista i {
    color: #10b981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.oferta-premium .oferta-lista i {
    color: var(--accent-color);
}

.btn-oferta {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 2rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
}

.btn-oferta:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-premium {
    background: var(--accent-color);
    color: var(--dark-color);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
}

.btn-premium:hover {
    background: #f59e0b;
    color: var(--dark-color);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.social-proof {
    text-align: center;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.oferta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-color);
    margin: 1rem 0;
    font-size: 1.1rem;
}

.oferta-info i {
    color: var(--primary-color);
}

.garantia {
    padding: 6rem 0;
    background: var(--light-color);
}

.garantia-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.garantia-selo {
    width: 200px;
    height: 200px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
    flex-shrink: 0;
}

.garantia-selo i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.garantia-selo span {
    font-size: 1.5rem;
}

.garantia-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.garantia-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.7;
}

.faq {
    padding: 6rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-color);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-color);
    line-height: 1.7;
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.notificacao-venda {
    position: fixed;
    top: 20px;
    right: -100%;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    min-width: 300px;
    max-width: 90%;
    transition: right 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.notificacao-venda.show {
    right: 20px;
    opacity: 1;
    visibility: visible;
}

.notificacao-venda.hide {
    right: -100%;
    opacity: 0;
    visibility: hidden;
}

.notificacao-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notificacao-icone {
    font-size: 2rem;
    color: #10b981;
}

.notificacao-info {
    flex: 1;
}

.notificacao-nome {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.3rem 0;
    font-size: 0.95rem;
}

.notificacao-detalhes {
    font-size: 0.85rem;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .oferta-title {
        font-size: 2rem;
    }

    .preco-atual span {
        font-size: 3rem;
    }

    .cta-button-large {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }

    .garantia-content {
        flex-direction: column;
        text-align: center;
    }

    .beneficios-grid,
    .incluso-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .notificacao-venda {
        min-width: auto;
        max-width: calc(100% - 20px);
        left: 10px;
        right: auto;
        transform: translateX(-150%);
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    .notificacao-venda.show {
        transform: translateX(0);
        right: auto;
    }

    .notificacao-venda.hide {
        transform: translateX(-150%);
        right: auto;
    }
}
