html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}


.section-1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('assets/bg-vida.png'); 
    background-size: cover;
    background-position: center;
}

@keyframes whatsapp-blink {
    0% { box-shadow: 0 0 30px #25D366; }
    50% { box-shadow: 0 0 80px #1ebe5d; }
    100% { box-shadow: 0 0 30px #25D366; }
}

.whatsapp-button {
    background-color: #25D366; /* Verde WhatsApp */
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 300px;
    transition: background 0.3s ease;
    display:inline-flex;
    animation: whatsapp-blink 1.5s infinite alternate;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}

/* Ícone do WhatsApp dentro do botão */
.whatsapp-icon {
    width: 24px;
    height: 24px;
}


.center-image {
    max-width: 50%;
    height: auto;
    padding-left: 90px;
}

.scroll-icon {
    position: absolute;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-icon span {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 25px;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}

.scroll-icon span::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; 
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -50px; /* Ajusta a posição do countdown mais para cima */
}

.countdown {
    display: flex;
    gap: 20px;
    color: #fff;
    justify-content: center;
}

.countdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.number-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.number-text span {
    font-size: 7rem;
    font-weight: bold;
    color: #1CD5FC;
}

.number-text p {
    font-size: 1.5rem;
    margin: 0;
}

/* Estilizando o conteúdo abaixo do countdown */
.additional-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.support-image {
    max-width: 60%;
    height: auto;
    margin-bottom: 10px;
}

.support-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    max-width: 80%;
}

.button {
    background-color: #fff;
    color: #1CD5FC;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.button:hover {
    background-color: #1C77FA;
}


.left-content {
    flex: 1; 
    color: #fff; 
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 100; 
    line-height: 2rem;
}

.button {
    background-color: #fff;
    color: #1CD5FC;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.button:hover {
    background-color: #1C77FA;
}

.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image {
    max-width: 100%;
    height: auto;
    border-radius: 10px; 
}


.section-2 {
    height: auto; 
    background: linear-gradient(45deg, #1C77FA, #1CD4FC);
    color: #fff; 
    padding: 6rem;
}

.section-3 {
    padding: 60px 20px;
    background: linear-gradient(45deg, #101A41, #2943A7);
    text-align: center;
}

.images-container {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.image03 {
    width: 45%;
    height: auto;
}

.section-title {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-4 {
    display: flex;
    flex-direction: column;
    background-color: #021340;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    height: auto;
}

.img-plataformas{
    max-width: 30%;
    height: auto;
}

.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.video-container iframe {
    max-width: 80%;
    height: auto;
    aspect-ratio: 16 / 9;
}

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

@media (max-width: 768px) { 
    .section-1 {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }

    .countdown {
        display: flex;
        flex-direction: row; /* Alterado para exibir os itens em linha */
        justify-content: center; /* Centraliza os itens horizontalmente */
        gap: 20px;
        padding-top: 70px;
    }

    .number-text span {
        font-size: 5rem;
    }

    .additional-content {
        padding: 20px;
    }

    .center-image {
        max-width: 80%;
        padding-left: 0;
        padding-top: 20px;
    }

    .support-image {
        max-width: 100%;
    }

    /* Ajustes da seção 2 */
    .section-2 {
        padding: 2rem;
        text-align: center;
    }

    .left-content, .right-content {
        flex: 1;
        text-align: center;
    }

    .title {
        font-size: 2.5rem; /* Ajuste de título */
    }

    .description {
        font-size: 1.2rem; /* Ajuste de descrição */
    }

    .whatsapp-button {
        padding: 12px 25px;
        font-size: 1.1rem;
        margin-bottom: 90px;
    }

    /* Seção 3 - Imagens em coluna em telas menores */
    .images-container {
        flex-direction: column;
        gap: 20px;
    }

    .image03 {
        width: 100%; /* Imagens ocupando toda a largura */
    }

    .button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 40px; 
    }

    .left-content,
    .right-content {
        flex: none; 
        text-align: center;
    }

    .right-content {
        display: block; 
        margin-top: 20px;
    }

    .title {
        font-size: 3rem;
    }
    .description {
        font-size: 1.2rem;
    }

    .button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    /* Seção 2 */
    .section-2 {
        padding: 2rem;
        height: auto;
    }

    /* Seção 3 */
    .images-container {
        flex-direction: column; 
        gap: 20px;
    }

    .image03 {
        width: 100%; 
    }

    .img-plataformas {
        max-width: 70%;
    }
}

/* Para telas menores que 480px */
@media (max-width: 480px) {
    .section-title,
    .section-title05 {
        font-size: 1.8rem;
    }

    .number-text span {
        font-size: 4rem; /* Fontes ainda menores */
    }

    .scroll-icon span {
        padding-top: 90px;
        width: 25px;
        height: 40px;
    }

    .whatsapp-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .section-title, .description {
        font-size: 1.6rem; /* Ajuste de título e descrição */
    }

    .form-group input {
        padding: 10px; /* Ajuste de campo de formulário */
    }

    .cta-button-forms {
        padding: 10px 20px;
    }

    .scroll-icon span::after {
        width: 8px;
        height: 8px;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .section-title,
    .description {
        font-size: 1.6rem;
    }

    .form-group input {
        padding: 10px; 
    }

    .cta-button-forms {
        padding: 10px 20px;
    }

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