/* Sección principal */
.main-section {
    margin-top: 50px;
    padding: 20px;

    .main-titles {
        .title {
            font-weight: bold;
            font-size: 36px;
            text-align: center;
            color: #010066;
        }

        .subtitle {
            text-align: center;
            font-size: 20px;
            color: #7f8c8d;
        }
    }

    @media (max-width: 768px) {
        .main-titles .title {
            font-size: 28px;
        }

        .main-titles .subtitle {
            font-size: 16px;
        }
    }

    @media (max-width: 576px) {
        .main-titles .title {
            font-size: 24px;
        }

        .main-titles .subtitle {
            font-size: 14px;
        }
    }
}

/* Contenedor del formulario */
.container-formulario {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 50px;

    .title-formulario {
        font-size: 28px;
        margin: 0;
        font-weight: bold;
        color: #010066;
        text-align: center;
    }

    @media (max-width: 768px) {
        .title-formulario {
            font-size: 24px;
        }
    }

    @media (max-width: 576px) {
        .title-formulario {
            font-size: 20px;
        }
    }
}

/* Contenedor de información */
.container-information {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 20px;

    .btn-form {
        font-family: 'Cocogoose', sans-serif;
        background-color: #010066;
        font-weight: 600;
        border: none;
        color: white;
        padding: 12px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        width: 40%;
        border-radius: 15px;
        transition: background-color 0.3s ease, color 0.3s ease;

        &:hover {
            background-color: #5FB8E4;
            color: #010066;
        }
    }

    @media (max-width: 768px) {
        .btn-form {
            width: 60%;
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .btn-form {
            width: 80%;
            font-size: 12px;
        }
    }
}

/* Información del formulario */
.information-formulario {
    display: flex;
    align-items: center;
    gap: 50px;

    .container-icono {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #e4f0fa;

        .icono {
            font-size: 50px;
            color: #5FB8E4;
        }
    }

    .information {
        text-align: left;

        h4 {
            margin: 0;
            font-size: 20px;
            color: #010066;
        }

        .list-information {
            list-style: none;
            padding: 0;
            padding-top: 10px;

            li {
                margin-bottom: 10px;
                font-size: 14px;
                color: #7f8c8d;

                i {
                    color: #5FB8E4;
                    margin-right: 5px;
                }
            }
        }
    }

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 20px;

        .container-icono {
            width: 80px;
            height: 80px;

            .icono {
                font-size: 40px;
            }
        }

        .information h4 {
            font-size: 18px;
        }

        .list-information li {
            font-size: 12px;
        }
    }

    @media (max-width: 576px) {
        .container-icono {
            width: 60px;
            height: 60px;

            .icono {
                font-size: 30px;
            }
        }

        .information h4 {
            font-size: 16px;
        }

        .list-information li {
            font-size: 10px;
        }
    }
}