:root {
    --primary-color: #4A90E2;
    --secondary-color: #50E3C2;
    --text-dark: #2B3A42;
    --text-light: #6C7A89;
    --bg-light: #F4F6F9;
    --bg-dark: #2B3A42;
    --card-bg: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Base */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

p {
    font-size: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}
hr{
    margin: 2rem 0;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.section {
    padding: 4rem 0;
}

/* Header e Hero Section */
#hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #E9ECF1 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

#hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#hero h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}

#hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.logo img {
    width: 100px;
    max-width: 100px;
    height: auto;
    position: absolute;
    left: 15%;
    top: 5rem;
}

/* Sections */
#problema-solucao .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
    z-index: 1000;
}

#problema-solucao .col {
    flex: 1;
    min-width: 300px;
}

#problema-solucao h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#problema-solucao ul {
    list-style: none;
}
        
#problema-solucao ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}
        
#problema-solucao ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

#problema-solucao .col-image {
    text-align: center;
}

#problema-solucao .col-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.col-image-problema {
    max-width: 400px;
}

.col-image-solucao {
    box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
}

#funcionalidades {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 4rem 0;
}

#funcionalidades h2 {
    color: #fff;
}
#h2-muito-mais{
    margin-top: 2rem;
    font-size: 1.9rem;
    color: var(--secondary-color);
    text-align: center;
}

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

#funcionalidades .feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#funcionalidades .feature-item span {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

#funcionalidades .feature-item p {
    color: #fff;
    font-weight: 600;
}

#cta {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

#cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}
.container-bottom-cta p{
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}
        
#footer {
    background-color: var(--bg-dark);
    color: #aaa;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Seção do Vídeo */
#video .container h2,
#video .container p {
    color: var(--text-dark);
    text-align: center;
}
#video .container p {
    margin-bottom: 2rem;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Mantém a proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Zoom (Lightbox) */
.zoom-trigger {
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
}

.zoom-trigger:hover {
    transform: scale(1.2);
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

/* Modal de Aviso */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.5s;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    text-align: center;
    transform: translateY(-20px);
    animation: slideIn 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-button {
    color: var(--text-dark);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-color);
}

.modal-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.modal-body {
    margin-top: 1.5rem;
    text-align: left;
}

.cupom-box {
    background-color: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.cupom-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cupom-code {
    background-color: #e0f7f0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.cupom-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.aviso-windows, .social-links {
    margin-bottom: 2rem;
}

.aviso-windows h4, .social-links h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.aviso-windows p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.aviso-windows p:last-of-type {
    font-weight: 600;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: -20px;
}

.social-link {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #387ac2;
    transform: translateY(-3px);
}
.promotion-banner-container {
    /* Define o contêiner para o banner */
    position: relative;
    width: 100%;
    min-height: 90px; /* Altura mínima para o banner */
     /* Garante que o banner inclinado não saia dos limites */
    z-index: 2000;
}

.promotion-banner {
    /* Estilização e posicionamento do banner */
    position: absolute;
    top: 10px; /* Ajuste a posição vertical */
    left: -50px; /* Ajuste a posição horizontal */
    background-color: #ADD8E6; /* Cor de fundo azul claro */
    color: #000;
    padding: 10px 40px;
    margin-top: 50px;
    font-family: sans-serif;
    font-weight: bold;
    text-align: center;
    transform: rotate(-15deg); /* Inclina o banner em 15 graus */
    z-index: 2000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px dashed #336699; /* Borda pontilhada para um visual mais chamativo */
}

.promotion-banner .original-price {
    /* Estilo do preço original */
    display: block;
    font-size: 14px;
    text-decoration: line-through; /* Risca o preço antigo */
    margin-bottom: 5px;
    color: #555;
}

.promotion-banner .discount-label {
    /* Estilo do texto de desconto */
    display: block;
    font-size: 18px;
    color: #FF4500; /* Cor laranja para destacar o desconto */
    margin-bottom: 5px;
}

.promotion-banner .final-price {
    /* Estilo do preço final */
    display: block;
    font-size: 24px;
    color: #336699; /* Cor azul escuro para o preço final */
}

/* Responsividade */
@media screen and (max-width: 768px) {
    #hero .container {
        flex-direction: column;
    }
    
    .logo img {
        position: unset;
        margin-top: -50px;
    }

    #problema-solucao .row {
        flex-direction: column-reverse;
    }

    .col-image-problema, .col-image-solucao {
        width: 100%;
        max-width: none;
    }

    .modal-content {
        padding: 2rem;
        max-height: 90vh;
    }

    .promotion-banner-container {
        bottom: 0;
        left: 0;
        width: 100%;
    }
    .promotion-banner{
        width: 90%;
        position: relative;
        transform: rotate(0deg);
        left: 0;
        top: 0;
        margin: 10px auto;
    }

    #funcionalidades .grid {
        grid-template-columns: 1fr;
    }

    #video .container h2,
    #video .container p {
        text-align: center;
    }
}