@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Eczar:wght@400;700&display=swap");

/* Reset CSS */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #171717;
    font-family: 'Inter', sans-serif;
    color: #000000;
}

/* Variables de Color */
:root {
    --light: #ffffff;
    --dark: #0c0c0c;
    --primary: #0a67d2;
    --highlight: #7a09de;
}

/* Texto Principal */
.texto-1 {
    font-family: "Eczar", sans-serif;
    font-size: 38.5px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    letter-spacing: -0.45px;
    color: #000000;
    margin: 56px 0 24px;
}

/* Líneas Horizontales */
.hr1, .hr2 {
    width: 90%;
    max-width: 900px;
    height: 1px;
    background-color: #000000;
    margin: 2rem auto;
}

/* Span */
span {
    color: var(--primary);
}

/* Sección de Texto */
.section__text1, .section__text2 {
    font-family: "Eczar", sans-serif;
    margin-top: 21px;
    letter-spacing: -0.03px;
    line-height: 1.58;
    color: #000000;
    text-align: justify;
}

.section__text1 {
    font-size: 23.5px;
    margin: 21px auto;
    width: 90%;
    max-width: 850px;
}

.section__text2 {
    font-size: 27.5px;
    font-weight: 600;
    margin: 21px auto;
    width: 90%;
}

/* Enlaces */
a {
    color: var(--highlight);
    text-decoration: none;
}

a:hover {
    font-weight: bold;
}

/* Sección General */
.section {
    margin: 0 auto;
    max-width: 1050px;
    padding: 0 24px;
    text-align: justify;
}

.section__text::first-letter {
    font-size: 32px;
}

/* Media Queries */
@media (max-width: 991px) {
    .section {
        width: 90%;
        padding: 0 16px;
    }

    .texto-1 {
        font-size: 32px;
        margin: 40px 0 20px;
    }

    .hr1, .hr2 {
        width: 100%;
        margin: 1.5rem auto;
    }

    .section__text1, .section__text2 {
        width: 100%;
    }

    .section__text1 {
        font-size: 20px;
    }

    .section__text2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .texto-1 {
        font-size: 24px;
        margin: 30px 0 16px;
    }

    .section__text1 {
        font-size: 18px;
    }

    .section__text2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .texto-1 {
        font-size: 2rem;
        margin: 24px 0 12px;
    }

    .section__text1 {
        font-size: 1.35rem;
        width: 350px;
    }

    .section__text2 {
        font-size: 20px;
    }
}
