/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonte e cores */
body {
    background-image: url(img/bg_desktop.webp);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Montsserrat', sans-serif;
    background-color: #f4f4f4;
}

/* Contêiner principal */
.content {
    height: 100vh;
    max-width: 1140px;
    margin: 0 auto;
   
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contêiner das colunas */
.container {
    display: flex;
}

/* Estilo da primeira coluna (texto) */
.column.left {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.column.left .logo {
    width: 500px;
    margin-bottom: 20px;
}

.column.left .main-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #fff;
}



.column.left .topics  {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 10px;
    padding-left: 30px;
}

.column.left .topics li {
    font-size: 1.0em;
    color: #fff;
    margin-bottom: 30px;
    list-style-image: url(img/01.webp);
}

.column.left .topics li:nth-child(2){
    list-style-image: url(img/02.webp);
}

.column.left .topics li:nth-child(3){
    list-style-image: url(img/03.webp);
}

.column.left .cta-button {
    padding: 15px 80px;
    background-color: #f7f716;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    text-align: center;
    font-weight: 700;
}

.column.left .cta-button:hover {
    background-color: #0be716;
    color: #fff;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.column.left .cta-button {
    animation: pulse 1.5s infinite;
}




/* Estilo da segunda coluna (imagem) */
.column.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.column.right .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 8px 8px 0;
}

/* Media Queries para tornar a página responsiva */

@media (max-width: 768px) {

    body {
        background-image: url(img/bg_mobile.webp);
        background-size: cover;
        background-attachment:fixed;

    }
    .container {
        flex-direction: column;
        width: 90%;
        height: 100%;
        margin-top: 150px;
    }

    .column.left {
   
        padding: 20px;
    }

    .column.left .logo {
        width: 100%;
        margin-bottom: 20px;
    }

    
}

@media (max-width: 480px) {
    .column.left .main-title {
        font-size: 1.2em;
    }

    .column.left .topics li {
        font-size: 0.8em;
    }

    .column.left .cta-button {
        font-size: 1em;
        padding: 15px 45px;
        margin-left: 30px;
    }

   
}
