/* Poppins */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Urbanist */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
/* Playfair */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
/* Baskerville */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/*  font-family: "Urbanist",
 sans-serif; */
/*  font-family: "Playfair Display",
 serif; */
/*  font-family: "Libre Baskerville",
 serif; */

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

a {
    text-decoration: none;
}

li {
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.container__icon-wpp {
    position: relative;
    cursor: pointer;
}

.icon-wpp {
    z-index: 1000;
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: white;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    font-size: 30px;
    transition: background-color 200ms ease-in-out;
}

.icon-wpp:hover {
    background-color: #0cbb4c;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #25D366;
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
}

:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: #1d1d1d;
    /* Gris oscuro */
    --black-color-light: hsl(0, 0%, 30%);
    /* Gris medio */
    --black-color-lighten: hsl(0, 0%, 40%);
    /* Gris claro */
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --normal-font-size: .938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

.fadeInUp {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    visibility: hidden;
}

.animate.activado {
    opacity: 1;
    visibility: visible;
}

/* Animation variations */
[data-animation="fade-up"].activado {
    animation: fade-up 0.6s ease forwards;
}

[data-animation="fade-down"].activado {
    animation: fade-down 0.6s ease forwards;
}

[data-animation="fade-left"].activado {
    animation: fade-left 0.6s ease forwards;
}

[data-animation="fade-right"].activado {
    animation: fade-right 0.6s ease forwards;
}

[data-animation="fade-in"].activado {
    animation: fade-in 0.8s ease-out forwards;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        filter: blur(3px);
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SECTION NAV */
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
}

/*=============== HEADER ===============*/
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #1d1d1d;
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

.nav__burger,
.nav__close {
    color: var(--white-color);
}

.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}

.nav__close {
    opacity: 0;
}

@media screen and (max-width: 1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        padding-top: 2.3rem;
        background-color: var(--black-color);
        overflow: hidden;
    }

    .logo {
        width: 50px;
        height: 50px;
    }
}

.nav__link {
    color: var(--white-color);
    background-color: var(--black-color);
    font-weight: var(--font-semi-bold);
    display: flex;
    align-items: center;
    transition: background-color .3s;
    padding: 1.3rem 1.5rem;
}

.nav__link:hover {
    background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
    opacity: 1;
    top: 6.5rem;
    pointer-events: initial;
}

.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
    font-size: 15px;
    padding: 1rem 2.5rem;
    color: var(--white-color);
    background-color: var(--black-color-light);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
    white-space: nowrap;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--black-color-lighten);
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
    margin-left: auto;
}

.dropdown__sublink {
    background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }

    .nav__link {
        padding-inline: 1rem;
    }
}

/* For large devices */
@media screen and (min-width: 1118px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
        font-family: var(--body-font);
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 3rem;
    }

    .nav__link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
    }

    .nav__link:hover {
        background-color: transparent;
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
    }

    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1.5rem 3.5rem;
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem;
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: .5rem;
    }

    /* Show dropdown menu */
    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top .3s;
    }

    /* Show dropdown submenu */
    .dropdown__subitem:hover>.dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top .3s;
    }
}

.info__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
    width: 100%;
    margin: 0 auto;
    background-color: #333333;
    color: #ffffff;
}

.cellphone-emergency {
    display: flex;
    align-items: center;
    gap: .5rem;
    letter-spacing: .5px;
    text-align: center;
}

.cellphone-emergency span {
    font-size: 15px;
}

.cellphone-emergency ion-icon {
    font-size: 21px;
    animation: vibrate .5s infinite ease-in-out;
}

.icons-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icons-nav a {
    color: white;
    line-height: 0;
    text-decoration: none;
}

.icons-nav span {
    font-size: 15px;
}

.icons-nav ion-icon {
    color: white;
    font-size: 25px;
    background-color: #800020;
    border-radius: 50%;
    padding: 5px;
    transition: transform 0.3s ease, color 0.3s ease-in-out;
}

.icons-nav ion-icon:hover {
    transform: scale(1.1);
}

@keyframes vibrate {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(3deg);

    }

    50% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* SECTION HERO */
.hero__main {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(./img/foto-del-frente-del-colegio.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero__content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero__title {
    font-family: "Libre Baskerville", serif;
    text-align: left;
    font-size: clamp(2rem, 4.5vw, 5rem);
    max-width: clamp(500px, 80vw, 1200px);
    animation: fadeInUp 0.8s ease-in-out 0.3s forwards;
    opacity: 0;
    color: rgba(255, 255, 255, 0.774);
    -webkit-text-stroke: 1px #ffffff;
}

.hero__text {
    font-size: clamp(1.05rem, 2.5vw, 1.5rem);
    text-align: left;
    font-weight: 600;
    font-family: "Libre Baskerville", serif;
    animation: fadeInUp 0.8s ease-in-out 0.6s forwards;
    opacity: 0;
    color: #fff;
}

.hero__button {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    touch-action: manipulation;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    opacity: 0;
}

.hero__button a {
    color: white;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(5px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(340deg 100% 16%) 0%,
            hsl(340deg 100% 32%) 8%,
            hsl(340deg 100% 32%) 92%,
            hsl(340deg 100% 16%) 100%);
}

.front {
    display: block;
    position: relative;
    padding: 10px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    background: #b40530;
    will-change: transform;
    transform: translateY(-6px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.hero__button:hover {
    filter: brightness(110%);
}

.hero__button:hover .front {
    transform: translateY(-2px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.hero__button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.hero__button:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.hero__button:active .shadow {
    transform: translateY(7px);
    transition: transform 34ms;
}

.hero__button:focus:not(:focus-visible) {
    outline: none;
}

/* Section Main */
.container__main {
    position: relative;
}

.separador {
    border: 1px solid black;
    width: 100px;
}

.hidden {
    opacity: 0;
    filter: blur(2px);
    transform: translateX(-50%);
    transition: opacity 1.5s, filter 1.5s, transform 1.5s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.cards {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-50%);
    transition: opacity 1.5s, filter 1.5s, transform 1.2s;
}

.shows {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Section Presentacion */
.container__presentacion {
    display: flex;
    gap: 3rem;
    min-height: 100dvh;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    padding: 3rem 1.5rem;
}

.img__presentacion {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.order__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
}

.content__presentacion {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    width: 100%;
}

.content__presentacion p {
    font-size: clamp(.9rem, 2vw, 17px);
    color: #800020;
}

.escudo__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.content__presentacion h2 {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 400;
}

.paragraph {
    font-size: clamp(.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    text-align: left;
    max-width: 500px;
}

/* Section destacable */
.container__destacable {
    min-height: 50dvh;
    display: flex;
    flex-flow: column wrap;
    justify-content: start;
    align-items: center;
}

.title__destacable {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    text-align: center;
    color: #800020;
    margin: 1rem 0;
}

.content__destacable {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    gap: 1.3rem;
    padding: 1rem;
    justify-content: center;
}

.button__destacable {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2b2b2b;
    border-radius: 50px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    gap: 1rem;
    text-align: center;
    cursor: pointer;
    color: #fafafa;
    border: none;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease;
    z-index: 1;
    box-shadow: 0 3px 5px rgb(100, 100, 100)
}

.button__destacable::before {
    transition: 0.5s ease;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #8f0202;
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.button__destacable:hover::before {
    width: 300%;
    height: 300%;
}

/* Section Contacto */
.contact__section {
    width: 100%;
    min-height: 100dvh;
    background-color: #ffffff;
    padding: 2rem 0;
}

.order-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.contact__section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #800020;
}

.title_emails {
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 10px 7px;
    text-align: left;
}

.order-emails {
    margin-top: 50px;
    max-width: 100%;
}

.contact-info {
    width: 100%;
}

.order-emails p span {
    font-weight: bold;
}

.map {
    width: 100%;
    margin-top: 40px;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-email {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 10px 0;
    font-size: 16px;
    gap: 2px;
}

.icon-email ion-icon {
    margin: 0 5px;
    font-size: 20px;
    color: #ac002b;
}

.address-school {
    margin: 35px 0 0 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: start;
}

.address-school ion-icon {
    font-size: 20px;
    color: #ac002b;
}

.contact-grid {
    display: grid;
    grid-template-columns: 500px 500px;
    gap: 20px;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 5px 1px rgba(0, 0, 0, 0.2);
}

.contact-form label {
    font-weight: bold;
}

.red-asterisco {
    color: rgb(221, 0, 0);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    resize: none;
    background-color: #e7e7e7;
    outline: none;
    opacity: .9;
    transition: all .3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: #f0f0f0;
    border: 1px solid #5c5c5c;
}

.contact-form input::placeholder {
    color: rgb(88, 88, 88);
}

.input-error {
    border: 2px solid red;
    background-color: #ffe5e5;
    transition: 0.3s;
}

.input-error:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
}

.contact-form button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #af032b;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #85001f;
}

/* Section footer */
.container__footer {
    width: 100%;
    max-width: 100%;
    padding: 50px 25px;
}

.section__links {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.social__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social__icons ion-icon {
    cursor: pointer;
    font-size: 25px;
    color: #ffffff;
    background-color: #800020;
    border-radius: 50%;
    padding: 5px;
    transition: transform 0.3s ease, color 0.3s ease-in-out;
}

.social__icons ion-icon:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.list__links {
    display: flex;
    gap: 2rem;
}

.list__links a {
    position: relative;
    transition: color 0.3s ease;
    color: #800020;
}

.list__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c00606;
    transition: width 0.3s ease;
}

.list__links a:hover::after {
    width: 100%;
}

.divider {
    width: 100%;
    border: 1px solid rgba(190, 190, 190, 0.753);
    margin-block: 15px;
}

.end__footer-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy {
    text-align: start;
    font-size: 0.9em;
    color: #3f3f3f;
}

.copy__by {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.by {
    font-family: monospace;
    font-size: .95rem;
    display: block;
    width: 22ch;
    border-right: 2px solid black;
    overflow: hidden;
    white-space: nowrap;
    animation: blink .5s infinite step-end alternate;
    font-weight: 500;
}

.by a {
    color: #800020;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #2c2c2c;
}

::-webkit-scrollbar-thumb {
    background-color: #d1d1d1;
    border-radius: 20px;
    border: 1px solid #afafaf;
}


/* === HTML NIVEL INICIAL === */

.body-principal {
    background: linear-gradient(135deg, #b1e8ff, #A0D9FF, #48b6ff);
}

.hero__nivel-inicial {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.img__hero-inicial {
    width: 400px;
    height: auto;
    object-fit: cover;
}

.nube-img,
.estrella-img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.nube-img {
    position: absolute;
    top: 0;
    right: 0;
}

.estrella-img {
    position: absolute;
    bottom: 0;
    left: 0;
    filter: drop-shadow(0 0 10px yellow);
}

.content__hero-inicial {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 3rem;
}

.heading__subtitle {
    color: #0f505e;
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.order__heading-inicial {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
}

.heading__nivel-inicial {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 5rem);
    color: #FF82AA;
    text-shadow: 3px 3px 1px #0000005e;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.paragraph__nivel-inicial {
    font-size: clamp(1.05rem, 2.5vw, 1.5rem);
    color: #5a5a5a;
    font-weight: 600;
    max-width: 550px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.container__main-inicial {
    width: 90%;
    margin: 0 auto;
}

/* Section Actividades*/
.actividades-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 50px 0;
    position: relative;
}

.actividad {
    border-radius: 10px;
    background-color: #75d4fd;
    border: 1px solid #58cdff;
    box-shadow: 3px 3px 3px #3ebef5;
    cursor: pointer;
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: clamp(1rem, 2vw, 1.2rem);
    gap: 2rem;
}

.texto-actividad {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.texto-actividad h3 {
    font-size: clamp(1.25rem, 3vw, 1.4rem);
    color: #031530;
    text-align: start;
}

.texto-actividad p {
    color: #1D3557;
    font-weight: 500;
    font-size: clamp(14px, 15px, 16px);
}

.img-kids-actividad {
    width: 200px;
    height: 150px;
    object-fit: contain;
}

/* Section uniforme */
.uniforme-principal {
    font-size: clamp(14px, 2vw, 1.1rem);
    padding: 1rem;
    border-radius: 10px;
    background-color: #f0f8ff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    width: 75%;
    text-align: center;
}

.note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #fae19c;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 75%;
}

.uniformes__aclaracion {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 20px;
}

.azul {
    color: blue;
}

.rosa {
    color: rgb(252, 72, 102);
}

.divisor {
    width: 50px;
    height: 4px;
    margin: 0 auto 1rem;
    background-color: #0f505e;
    border-radius: 2px;
}


.note ion-icon {
    font-size: 25px;
    color: #000000;
}

.note p {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.container__uniforme {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 3rem 0;
    width: 100%;
}

.content__info-uniforme {
    position: relative;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.content__info-uniforme:hover {
    transform: scale(1.05);
}

.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snow-container::before,
.snow-container::after {
    content: '';
    position: absolute;
    top: -50px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall 5s linear infinite;
}

.snow-container::before {
    left: 25%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.snow-container::after {
    left: 75%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.snow-container::before:nth-of-type(1) {
    left: 10%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
    animation-duration: 4s;
}

.snow-container::before:nth-of-type(2) {
    left: 30%;
    animation-delay: 1s;
    width: 12px;
    height: 12px;
    animation-duration: 6s;
}

.snow-container::before:nth-of-type(3) {
    left: 50%;
    animation-delay: 0.5s;
    width: 6px;
    height: 6px;
    animation-duration: 5s;
}

.snow-container::before:nth-of-type(4) {
    left: 70%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
    animation-duration: 7s;
}

.snow-container::before:nth-of-type(5) {
    left: 90%;
    animation-delay: 1.5s;
    width: 9px;
    height: 9px;
    animation-duration: 6s;
}

@keyframes fall {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(100vh) scale(0.5);
    }
}

/* Sol */
.sun-container {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 0;
    height: 0;
    background-color: #ffcc00;
    border-radius: 50%;
    z-index: 1;
    transition: all .5s ease;
    pointer-events: none;
}

/* Cuando la card de verano se le haga hover, se va a mostrar el sol */
.content__info-uniforme.verano:hover .sun-container {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -30px;
    box-shadow: 0 0 50px rgba(223, 83, 3, 0.8);
}

.content__info-uniforme:hover {
    transform: scale(1.02);
}

.list__info-uniforme li {
    text-align: left;
    margin: 0.5rem 0;
}

.invierno {
    background: linear-gradient(to bottom, #b8eaff, #6bc9ff);
    color: #000000;
}

.verano {
    color: #462403;
    background: linear-gradient(to bottom, #ff9c2a, #ffd863);
}

.list-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 2.5rem;
}

.order-list {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.list-item {
    text-align: center;
    background: #f0f8ff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
}


.fade-in {
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bg-footer-principal {
    background: linear-gradient(to bottom, rgba(165, 214, 255, 0.603), rgba(113, 190, 253, 0.6)), url(./img-nivel-inicial/bg-amigable-infantil.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* === HTML NIVEL PRIMARIO === */

.hero__nivel-primario {
    min-height: 100dvh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.205), rgba(0, 0, 0, 0.658)), url(./img-nivel-primario/bg-hero-section.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
}

.content__hero-nivel-primario {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Libre Baskerville", serif;
    gap: 1.5rem;
}

.heading__hero-nivel-primario {
    color: #fff;
    font-size: clamp(2rem, 4vw, 4rem);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.text__hero-nivel-primario {
    color: #eeeeee;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    padding: 0 1rem;
}

.heading__principal-h2 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    text-align: center;
    color: #800020;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Section Objetivo */

.container__main-primario {
    width: 90%;
    margin: 0 auto;
    padding: 0 50px;
}

.objetivo-del-primario {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content__objetivo-primario {
    display: flex;
    flex-flow: column wrap;
}

.order__content-objetivo {
    margin-bottom: 1.5rem;
}

.content__objetivo-primario p {
    line-height: 1.6;
    font-size: clamp(.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    text-align: left;
    max-width: 500px;
    margin: 10px 0;
}

.right__content-primario {
    height: 100%;
}

.img-objetivo {
    width: 500px;
    height: auto;
    object-fit: cover;
    max-width: 100%;
}

/* Section uniforme primario */
.uniforme__nivel-primario {
    width: 100%;
    min-height: 100dvh;
}

.order__content-uniforme {
    margin-bottom: 2rem;
}

.order__list-uniforme {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 1rem auto;
    max-width: 1200px;
    gap: 1rem;
    padding: 2rem;
    border-radius: 15px;
    color: #000000;
    background-color: #e9e9e9;
    border: 1px solid #cbcbcb;
    word-wrap: break-word;
}

.order__list-uniforme h3 {
    color: #800020;
    font-size: 24px;
}

.uniforme__formal,
.uniforme__informal {
    display: grid;
    gap: 1.5rem;
}

.card__uniforme-primario {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.479);
    text-align: left;
    min-height: 100%;
}

.card__uniforme-primario h4 {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #800020;
}

.list__uniforme-primario {
    padding: 25px;
}

.list__uniforme-primario li {
    list-style-type: disc;
}

/* Galeria */
.galeria__eventos {
    padding: 2rem 0;
}

.galeria-heading {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

/* Grid estilo bento */
.galeria__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.galeria__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    aspect-ratio: 16 / 9;
}

.galeria__item.grande {
    grid-column: span 2;
    grid-row: span 2;
}

.evento7 {
    grid-column: 1/2;
}

.evento-7 {
    grid-column: 1/4;
}

.evento8 {
    grid-column: 2/4;
}

.evento9 {
    grid-column: span 3;
}

.galeria__item:hover img {
    transform: scale(1.1);
}

.galeria__descripcion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria__item:hover .galeria__descripcion {
    opacity: 1;
}

.horarios__nivel-primario {
    padding: 1.5rem 0;
}

.horarios__nivel-primario p {
    font-size: clamp(.9rem, 2.5vw, 20px);
    color: #333;
    font-weight: 600;
    text-align: left;
    margin: 15px 0;
}

/* === HTML NIVEL SECUNDARIO === */

.hero__nivel-secundario {
    min-height: 100dvh;
    background: url(./img-nivel-secundario/blob-scene-haikei.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.order__content-nivel-secundario {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.content__hero-nivel-secundario {
    display: flex;
    flex-flow: column wrap;
    align-items: start;
    gap: 1.5rem;
    position: relative;
}

.heading__hero-nivel-secundario {
    font-size: clamp(2rem, 4vw, 4rem);
    color: #800020;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.text__hero-nivel-secundario {
    max-width: 500px;
    font-size: clamp(.9rem, 2.5vw, 1.125rem);
    line-height: 1.5;
    color: #333;
    font-weight: 500;
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.img__right-egreso {
    display: flex;
    align-items: center;
    justify-content: center;
}

.childrens-school {
    width: 25rem;
    height: auto;
    object-fit: cover;
}

.egreso-de-alumno {
    width: 400px;
    object-fit: cover;
    height: auto;
    max-width: 100%;
}

.button__hero-nivel-secundario {
    background-color: #9B1C2B;
    color: white;
    font-size: clamp(14px, 2vw, 18px);
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    font-weight: 500;
    border: none;
    border-radius: 25px 10px 25px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    opacity: 0;
    letter-spacing: .5px;
    cursor: pointer;
}

.button__hero-nivel-secundario:hover {
    background-color: #7e1723;
}

.button__hero-nivel-secundario ion-icon {
    font-size: 18px;
    background-color: #fff;
    padding: 3px;
    border-radius: 50%;
    color: #9B1C2B;
    transform: rotate(90deg);
}

/* Section orientaciones secundario */
.orientaciones {
    position: relative;
    text-align: center;
    padding: 50px 20px;
}

.orientaciones__titulo {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    color: #800020;
    margin-bottom: 15px;
}

.orientaciones__contenedor {
    display: flex;
    justify-content: space-around;
    position: relative;
    align-items: center;
    flex-flow: row wrap;
    gap: 3rem;
    margin: 3rem 0;
}

.orientacion h3 {
    margin-bottom: 10px;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.orientacion p {
    font-size: clamp(.9rem, 2.5vw, 1rem);
    color: #666;
}

.orientacion {
    width: 500px;
    padding: 30px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.404);
    cursor: pointer;
}

.img-ciencias-naturales,
.img-ciencias-sociales {
    width: 50px;
    height: auto;
    object-fit: cover;
    position: absolute;
    transition: transform 0.3s ease, filter 0.3s ease-in-out;
}

/* Posiciones para imágenes de CIENCIAS NATURALES */
.orientacion--naturales .img-ciencias-naturales:nth-of-type(1) {
    top: -20px;
    left: -20px;
}

.orientacion--naturales .img-ciencias-naturales:nth-of-type(2) {
    top: -20px;
    right: -20px;
}

.orientacion--naturales .img-ciencias-naturales:nth-of-type(3) {
    bottom: -20px;
    right: -20px;
}

/* Posiciones para imágenes de CIENCIAS SOCIALES */
.orientacion--sociales .img-ciencias-sociales:nth-of-type(1) {
    top: -20px;
    left: -20px;
}

.orientacion--sociales .img-ciencias-sociales:nth-of-type(2) {
    top: -20px;
    right: -20px;
}

.orientacion--sociales .img-ciencias-sociales:nth-of-type(3) {
    bottom: -20px;
    right: -20px;
}

.orientacion:hover .img-ciencias-naturales,
.orientacion:hover .img-ciencias-sociales {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
    z-index: 10;
}

.orientacion-text-info {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.orientacion-text-info p {
    max-width: 300px;
    text-align: left;
    padding: 35px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.404);
    cursor: pointer;
}

/* === PAGE HISTORIA HMTL  === */
.hero__historia {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(./img/foto-de-costado-del-colegio.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
}

.content__hero-historia {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 90%;
    margin: 0 auto;
}

.hero__title-historia {
    font-size: clamp(2rem, 5vw, 4.5rem);
    text-align: center;
    font-family: "Libre Baskerville", serif;
    color: #ffffff;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.hero__text-historia {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    text-align: center;
    font-family: "Libre Baskerville", serif;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.historia-del-colegio {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.content__historia {
    margin: 4rem 0;
}

.block-historia {
    margin-bottom: 40px;
}

.content__historia h2 {
    color: #800020;
    font-size: clamp(1.75rem, 4vw, 2rem);
    margin-bottom: 15px;
    font-family: "Libre Baskerville", serif;
}

.block-historia p {
    line-height: 1.8;
    margin-bottom: 21px;
    max-width: 750px;
    text-align: left;
    font-size: clamp(14px, 2vw, 17px);
    color: #2c2c2c;
    font-family: "Libre Baskerville", serif;
}

.equipo-directivo {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 3rem 0;
}

.tarjeta {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 15px;
    margin: 15px auto;
    width: 100%;
    box-shadow: 0 3px 1px rgba(0, 0, 0, 0.5);
}

.tarjeta h3 {
    color: #8b0000;
    margin-bottom: 10px;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.tarjeta p {
    color: #333;
    font-size: clamp(.9rem, 2vw, 1.05rem);
}

/* Botones */
.buttons button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #800000;
    color: white;
    border: none;
    cursor: pointer;
}

.buttons button:hover {
    background-color: #a00000;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(128, 0, 0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
    z-index: 1000;
}

.modal-content {
    width: 90%;
    max-width: 650px;
    text-align: center;
}

.modal-content h2 {
    margin-block: 1.5rem;
    font-size: 1.8rem;
    font-family: "Libre Baskerville",
        serif;
}

.modal-content p {
    margin: 20px 0;
    font-size: 17px;
    line-height: 1.5;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    font-weight: bolder;
    cursor: pointer;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.error {
    color: red;
}

.lemas-container {
    background-color: #800020;
    color: white;
    padding: 20px;
    overflow: hidden;
    width: 100%;
    margin: 50px 0;
}

.lemas {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.lema {
    font-size: 1.3rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-family: "Libre Baskerville", serif;
    position: absolute;
}

.lema.active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

    .hidden,
    .cards-hidden {
        transition: none;
    }
}

.order__content-calendar {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: .5rem;
    margin: 1rem 0;
}

.logo-ui {
    width: 40px;
    height: auto;
    object-fit: cover;
}

.heading__events {
    font-size: 2rem;
    text-align: center;
    font-family: "Libre Baskerville", serif;
    margin-bottom: 0;
}

.fc .fc-button-primary:disabled {
    background-color: #007fff;
    font-weight: 600;
}

.fc .fc-toolbar-title {
    text-transform: uppercase;
}

#calendar {
    max-width: 1000px;
    margin: 40px auto;
}

.fc-daygrid-day:hover {
    background-color: #ffef64;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* === PAGE NIVEL TERCIARIO === */

/* Hero Profesorado */
.hero__nivel-terciario {
    background-color: #f8f9fa;
    min-height: 100dvh;
    width: 100%;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 7rem;
}

.hero__content-terciario {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.order__content-terciario {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero__content-terciario h1 {
    color: #212529;
    text-align: left;
    font-size: clamp(2rem, 4vw, 4rem);
    max-width: clamp(500px, 80vw, 700px);
    animation: fadeInUp 0.6s ease-in-out 0.3s forwards;
    opacity: 0;
    line-height: 1.2;
}

.hero__content-terciario p {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    text-align: left;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-in-out 0.6s forwards;
    opacity: 0;
    margin-top: 30px;
    max-width: clamp(500px, 45vw, 700px);
    color: #343a40;
    line-height: 2;
}

.btn-inscripcion-transition {
    animation: fadeInUp 0.6s ease-in-out 0.9s forwards;
    opacity: 0;
}

.hero__content-terciario h1>span {
    color: #800020;
    font-style: italic;
}

.img-educator {
    height: auto;
    object-fit: cover;
    max-width: 100%;
    width: clamp(300px, 70%, 600px);
    display: block;
}

.hero__content-terciario p>span {
    color: #800020;
    font-style: italic;
    font-weight: bold;
}

.icon-container {
    position: relative;
    top: -3px;
}

.icon-container ion-icon {
    position: absolute;
    left: 94px;
    bottom: -9px;
    z-index: 1000;
    font-size: 1.5em;
    font-weight: bold;
    color: #800020dc;
    transition: transform 1.3s ease-in-out;
    cursor: pointer;
}

.hover-container:hover .icon-container ion-icon {
    transform: scale(1.5) translateX(-67.5px);
}

.text {
    letter-spacing: 1.7px;
}

.hero__content-terciario p>.hover-container:not(.text) {
    color: #343a40;
    font-weight: 500;
}

/* Cards Profesorado */
.container-profesorados {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: #e9ecef;
    border-radius: 30px;
    box-shadow: inset 0 3px 10px #565d63;
    padding: 40px;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2.5rem;
}

.card-profesorados {
    background-color: #343a40;
    color: #e9ecef;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    max-width: 600px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: transform .2s ease-in;
}

.card-profesorados:hover {
    transform: translateY(-3px);
}

.card-profesorados span {
    display: block;
    width: 100%;
    font-size: clamp(14.5px, 1.5vw, 16px);
}

.card-profesorados h3 {
    font-size: clamp(1.15rem, 3vw, 1.4rem);
}

.card-profesorados p {
    font-size: clamp(14px, 2vw, 18px);
}

.btn-profesorados {
    background-color: #6c757d;
    color: white;
    font-size: clamp(14px, 2vw, 16px);
    padding: clamp(12px, 2vw, 16px) clamp(25px, 4vw, 30px);
    font-weight: 500;
    border: none;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    letter-spacing: .5px;
    cursor: pointer;
    margin: 5px 0;
}

.btn-profesorados:hover {
    background-color: #7e1723;
}

/* === SECTION EDUCACION DESTACADA === */
.presentacion__nivel-terciario {
    background-color: #343a40;
    width: 100%;
}

.section__info-ofrecimiento {
    max-width: 90%;
    min-height: 100dvh;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    gap: 2.5rem;
}

.container-ofrecimiento {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.content__info-ofrecimiento h2 {
    color: #E9ECEF;
    font-size: clamp(1.7rem, 4vw, 3.5rem);
}

.content__info-ofrecimiento p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: clamp(500px, 60vw, 600px);
    text-align: left;
    font-weight: 500;
    margin-top: 25px;
    color: #f8f9fa;
    line-height: 1.8;
}

.aclaracion-del-colegio {
    color: #f8f9fae0;
    line-height: 1.7;
    font-size: clamp(.9rem, 2vw, 1rem);
    max-width: clamp(500px, 60vw, 600px);
    font-style: italic;
}

/* Segunda columna */

.container__razones-elegirnos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
}

.content-razones {
    margin: 10px 0;
}

.content-razones h3 {
    color: #E9ECEF;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 10px;
}

.content-razones p {
    font-size: clamp(.9rem, 2vw, 1rem);
    color: #f8f9fa;
    line-height: 1.6;
    max-width: clamp(500px, 60vw, 600px);
}

.img-razones {
    width: 60px;
    height: auto;
    object-fit: cover;
}

/* === Section Plan de Estudios === */
.plan__de-estudios {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 3rem 1.5rem;
    width: 100%;
    min-height: 100dvh;
}

.content__heading-plan {
    position: relative;
    width: 100%;
}

.elements-educativos {
    width: 50px;
    height: auto;
    object-fit: cover;
}

.element-one,
.element-two,
.element-three,
.element-four {
    position: absolute;
}

.element-one {
    top: 25px;
    left: 290px;
    transform: rotate(-14deg);
}

.element-two {
    top: 25px;
    right: 290px;
    transform: rotate(14deg);
}

.element-three {
    bottom: 70px;
    left: 350px;
    transform: rotate(-17deg);
}

.element-four {
    bottom: 70px;
    right: 350px;
    transform: rotate(17deg);
}

.content__heading-plan h2 {
    font-size: clamp(1.7rem, 4vw, 3.5rem);
    text-align: center;
    max-width: clamp(500px, 50%, 800px);
    margin: 30px auto;
    color: #212529;
    line-height: 1.3;
}

.content__heading-plan h2>span {
    color: #800020;
    font-style: italic;
}

.content__heading-plan p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #343a40;
    text-align: center;
    margin: 15px 0;
    font-weight: 500;
}

.content__heading-plan p>span {
    color: #800020;
    font-style: italic;
}

.container__plan-de-estudio {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 20px;
    width: 100%;
    justify-content: center;
}

.card__plan-de-estudio {
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 85%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.card__plan-de-estudio img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-bottom: 1px solid rgba(128, 128, 128, 0.3);
}

.info__plan-de-estudio {
    padding: 20px 35px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.3);
}

.header__plan-de-estudio {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    margin: 10px 0;
    gap: 10px;
}

.header__plan-de-estudio div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__plan-de-estudio span {
    color: #7e1723;
    font-weight: 500;
}

#buttonText {
    color: white;
}

.info__plan-de-estudio ion-icon {
    font-size: 30px;
    color: #7e1723;
    margin-right: 5px;
}

.info__plan-de-estudio h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.btn-profesorados-plan {
    color: white;
    font-size: clamp(14px, 2vw, 16px);
    padding: clamp(9px, 1.5vw, 12px) clamp(16px, 3vw, 25px);
    font-weight: 500;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background .3s ease-in-out;
    letter-spacing: .5px;
    cursor: pointer;
    background-color: #343A40;
}

.btn-profesorados-plan:hover {
    background-color: #7e1723;
}

.grid__plan-de-estudio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
    row-gap: 35px;
    column-gap: 150px;
}

.columnas__anio-de-carrera {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
}

.columnas__anio-de-carrera span {
    color: #7e1723;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 18px);
    margin: 0 0 5px 25px;
}

.unidad__de-estudio li {
    text-align: left;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(0.9rem, 1.7vw, 1.05rem);
    letter-spacing: 0.3px;
}

.unidad__de-estudio li ion-icon {
    color: #076b2b;
    font-size: 20px;
}

/* Section de inscripcion */
.container-inscripcion {
    background: url(./img-nivel-terciario/blob-scene-haikei.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 20px;
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 95%;
    margin: 50px auto;
    min-height: 100dvh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.llamado-inscripcion {
    margin-bottom: 5rem;
}

.llamado-inscripcion :first-child {
    font-size: clamp(1.3rem, 2.5vw, 2.5rem);
    color: #212529;
    text-align: center;
    margin-bottom: 10px;
}

.llamado-inscripcion :nth-child(2) {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 3.5rem);
    line-height: 1.3;
    color: #800020;
    text-transform: uppercase;
    max-width: 700px;
}

.requisitos-inscripcion {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    text-align: left;
    margin-bottom: 10px;
    color: #800020;
    line-height: 1.3;
}

.container__pasos-info {
    display: flex;
    align-items: start;
    justify-content: space-around;
    gap: 30px;
    height: 100%;
    padding: 0 1rem;
    flex: 1;
    width: 100%;
}

.datos__inscripcion {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
}

.informacion-inscripciones {
    margin: 15px 0;
}

.informacion-inscripciones h3 {
    color: #800020;
    border-bottom: 1px solid #800020;
    width: fit-content;
    margin-bottom: 15px;
    line-height: 1;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.informacion-inscripciones p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 500;
}

.informacion-inscripciones p ion-icon {
    font-size: 20px;
    color: #800020;
}

.informacion-inscripciones p>span {
    font-weight: bold;
}

.container__pasos-inscripcion {
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    text-align: left;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.content__pasos-inscripcion {
    margin: 10px 0;
}

.content__pasos-inscripcion h3 {
    font-size: clamp(1rem, 3vw, 1.1rem);
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #343a40;
    font-weight: 500;
}

.content__pasos-inscripcion h3 ion-icon {
    color: #800020;
    font-size: 25px;
}

.content__pasos-inscripcion p {
    font-size: clamp(14px, 2vw, 16px);
    color: #525252;
    margin: 5px 0 0;
}

.timeline {
    list-style: none;
    padding: 0;
    position: relative;
    text-align: left;
}

.timeline li {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.button-inscripcion {
    color: white;
    font-size: clamp(14px, 2vw, 16px);
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 30px);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all .3s ease-in-out;
    letter-spacing: .5px;
    cursor: pointer;
    background: #343A40;
    margin-top: 15px;
}

.button-inscripcion:hover {
    background: #800020;
}

/* ============ BREAKPOINTS ============ */
@media screen and (max-width:1024px) {
    .img__presentacion {
        width: 330px;
    }

    .contact-grid {
        padding: 0 10px;
    }

    /* Nivel inicial */
    .nube-img,
    .estrella-img {
        width: 180px;
    }

    .container__main-inicial {
        padding: 0;
    }

    .actividades-container {
        grid-template-columns: 1fr;
    }

    .uniforme-principal,
    .note {
        width: 100%;
    }

    /* Nivel primario */
    .container__main-primario {
        padding: 0;
    }

    .img-objetivo {
        width: 400px;
    }

    /* Nivel secundario */
    .childrens-school {
        width: 18rem;
    }

    .egreso-de-alumno {
        width: 350px;
    }

    .content__objetivo-primario p {
        max-width: 450px;
    }

    /* Nivel Terciario */
    .hero__content-terciario p {
        line-height: 1.6;
    }

    .container-profesorados {
        justify-content: center;
        padding: 30px;
    }

    .card-profesorados {
        max-width: 100%;
    }

    .section__info-ofrecimiento {
        padding: 3rem 0;
        gap: 5.5rem;
    }

    .element-one {
        left: 150px;
    }

    .element-two {
        right: 150px;
    }

    .element-three {
        left: 215px;
    }

    .element-four {
        right: 215px;
    }

    .grid__plan-de-estudio {
        column-gap: 55px;
    }

    .card__plan-de-estudio {
        max-width: 100%;
    }

    .container__pasos-info {
        flex-direction: column-reverse;
    }

    .container__pasos-inscripcion {
        width: 100%;
    }

    .container__button-inscripcion {
        display: flex;
        justify-content: center;
    }

    .container__button-inscripcion button {
        width: 50%;
    }
}

@media screen and (max-width:768px) {
    .separador {
        display: none;
    }

    .hero__text {
        max-width: 400px;
    }

    .front {
        font-size: 1rem;
    }

    .container__presentacion {
        min-height: 0;
    }

    .img__presentacion {
        display: none;
    }

    .img-escudo {
        height: 35px;
    }

    .content__destacable {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 500px;
        gap: 50px;
        margin-bottom: 100px;
    }

    .lema {
        font-size: 1rem;
    }

    .section__links {
        flex-direction: column-reverse;
        text-align: center;
        align-items: start;
        gap: 1rem;
    }

    .list__links {
        flex-direction: column;
        align-items: start;
        margin-bottom: 10px;
    }

    .end__footer-section {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .copy {
        text-align: center;
        font-size: 0.8em;
    }

    .by {
        text-align: center;
        border-right: none;
        animation: none;
    }

    .galeria__item.grande {
        grid-column: auto;
        grid-row: auto;
    }

    .evento7,
    .evento8,
    .evento9,
    .evento-7 {
        grid-column: auto;
    }

    /* Nivel inicial */
    .nube-img,
    .estrella-img {
        width: 140px;
    }

    .order__heading-inicial {
        gap: .5rem;
    }

    .texto-actividad {
        gap: .8rem;
    }

    .order__heading-inicial {
        align-items: center;
    }

    .paragraph__nivel-inicial {
        text-align: center;
    }

    .img__hero-inicial {
        display: none;
    }

    .container__uniforme {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
    }

    .content__info-uniforme h3 {
        font-size: 1rem;
    }

    .list__info-uniforme li {
        font-size: 15px;
    }

    .note p {
        font-size: 14px;
    }

    .text-mochila {
        font-size: 14px;
    }

    .list-item {
        width: 100%;
    }

    .list__info-mochila li {
        padding: 10px;
    }

    .list__info-mochila li p {
        font-size: 14px;
    }

    .list__info-mochila span {
        padding: 0;
        width: 30px;
    }

    .galeria__grid {
        grid-template-columns: 1fr;
    }

    /* Nivel primario */
    .hero__nivel-primario {
        background-attachment: initial;
    }

    .content__objetivo-primario {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .order__content-objetivo {
        margin-bottom: 1rem;
    }

    .img-objetivo {
        display: none;
    }

    .content__objetivo-primario ion-icon {
        font-size: 25px;
    }

    .objetivo-del-primario {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
        min-height: 0;
    }

    .order__content-uniforme {
        margin-bottom: 1rem;
    }

    .order__content-uniforme ion-icon {
        font-size: 25px;
    }

    .order__list-uniforme {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .list__uniforme-primario {
        padding: 20px;
    }

    .order__list-uniforme h3 {
        font-size: 20px;
    }

    .uniforme__formal,
    .uniforme__informal {
        gap: 1rem;
        margin: 10px 0;
    }

    /* Nivel secundario */
    .hero__nivel-secundario {
        min-height: 50dvh;
    }

    .childrens-school {
        display: none;
    }

    .heading__principal-h2 {
        justify-content: center;
    }

    .horarios__nivel-primario p {
        text-align: center;
    }

    .order__content-nivel-secundario {
        justify-content: center;
    }

    .content__hero-nivel-secundario {
        gap: 1.1rem;
        padding: 0 1.1rem;
    }

    .text__hero-nivel-secundario {
        max-width: 450px;
    }

    .egreso-de-alumno {
        display: none;
    }

    .img-ciencias-naturales,
    .img-ciencias-sociales {
        width: 40px;
    }

    .hero__nivel-inicial {
        min-height: 60vh;
    }

    /* Nivel terciario */
    .hero__nivel-terciario {
        padding: 3rem 0;
        gap: 4rem;
    }

    .hero__content-terciario p {
        margin-top: 20px;
    }

    .container__plan-de-estudio {
        gap: 30px;
        padding: 0;
    }

    .icon-container ion-icon {
        display: none;
    }

    .elements-educativos {
        width: 40px;
    }

    .element-one {
        left: 110px;
    }

    .element-two {
        right: 110px;
    }

    .element-three {
        left: 160px;
        bottom: 60px;
    }

    .element-four {
        right: 160px;
        bottom: 60px;
    }

    .card__plan-de-estudio img {
        max-height: 300px;
    }

    .info__plan-de-estudio {
        padding: 15px;
    }

    .grid__plan-de-estudio {
        grid-template-columns: 1fr;
    }

    .llamado-inscripcion {
        margin-bottom: 3rem;
    }

    .container__button-inscripcion button {
        width: 75%;
        padding: 15px 0;
    }

    .timeline li {
        margin-bottom: 10px;
    }

    .container-inscripcion {
        border-radius: 50px;
    }
}

@media screen and (max-width:515px) {
    .hero__main {
        background-position: 45%;
    }

    .hero__text {
        max-width: 350px;
    }

    .modal-content {
        max-width: 400px;
    }

    .modal-content p {
        font-size: 15px;
    }

    .hero__content {
        gap: 1.5rem;
    }

    .contact-form {
        width: 100%;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .order-contact {
        width: 100%;
    }

    .container__uniforme {
        margin: 1.5rem 0;
    }

    .container__main-primario {
        width: 95%;
    }

    .container__footer {
        padding: 25px;
    }

    .objetivo-del-primario {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .content__presentacion {
        align-items: center;
    }

    /* Nivel terciario */
    .img-educator {
        display: none;
    }

    .hero__content-terciario {
        align-items: center;
    }

    .hero__content-terciario h1 {
        text-align: center;
    }

    .hero__content-terciario p {
        text-align: center;
    }

    .container-profesorados {
        padding: 20px;
        width: 95%;
    }

    .btn-profesorados {
        width: 100%;
    }

    .section__info-ofrecimiento {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .container-ofrecimiento {
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero__nivel-terciario {
        padding: 1.5rem 0;
        gap: 2rem;
    }

    .plan__de-estudios {
        padding: 1.5rem;
    }

    .elements-educativos {
        display: none;
    }

    .content__heading-plan h2 {
        margin: 10px 0;
    }

    .content__heading-plan p {
        margin: 10px 0;
    }

    .card__plan-de-estudio img {
        max-height: 250px;
    }

    .grid__plan-de-estudio {
        padding: 20px;
    }

    .container__pasos-info {
        padding: 0;
    }

    .container__button-inscripcion button {
        width: 100%;
    }

    .llamado-inscripcion {
        margin-bottom: 1.5rem;
    }

    .container-inscripcion {
        padding: 25px;
    }

    .container__razones-elegirnos {
        gap: 2rem;
    }
}

@media screen and (max-width: 425px) {
    .hero__text {
        max-width: 300px;
    }

    .parrafos__historia {
        padding: 0 25px;
    }

    .modal-content h2 {
        font-size: 1.1rem;
        margin-block: 1rem;
    }

    .modal-content p {
        font-size: 13px;
        margin: 15px 0;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 14px;
    }

    .contact-form button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .title_emails {
        font-size: 16px;
        margin: 0 0 10px 0;
    }

    .address-school {
        font-size: 14px;
    }

    .icon-email {
        font-size: 14px;
    }

    .icon-email ion-icon {
        display: none;
    }

    .address-school ion-icon {
        display: none;
    }

    .list__links a {
        font-size: 14px;
    }

    .lemas-container {
        padding: 10px;
    }

    /* Nivel inicial */
    .container-carousel {
        height: 350px;
    }

    .btn-left,
    .btn-right {
        padding: 5px;
        font-size: .9rem;
    }

    .nube-img,
    .estrella-img {
        width: 120px;
    }

    .img-kids-actividad {
        display: none;
    }

    .actividades-container {
        margin: 15px 0;
    }

    .uniforme__nivel-inicial h2 {
        font-size: 1.5rem;
    }

    .content__info-uniforme {
        padding: 1rem;
    }

    .text-mochila {
        font-size: 13px;
    }

    .list__info-mochila span {
        display: none;
    }

    .list__info-mochila li p {
        font-size: 13px;
    }

    .list-container {
        margin: 1rem 0;
    }

    /* Nivel primario */
    .content__objetivo-primario ion-icon {
        font-size: 22px;
    }

    .order__content-uniforme ion-icon {
        font-size: 22px;
    }

    .order__list-uniforme h3 {
        font-size: 18px;
    }

    .card__uniforme-primario h4 {
        font-size: 15.5px;
    }

    .list__uniforme-primario li {
        font-size: 14px;
    }

    .list__uniforme-primario {
        padding: 15px;
    }

    .galeria__eventos {
        padding: 1rem 0;
    }

    .galeria__titulo {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .galeria__titulo ion-icon {
        font-size: 25px;
    }

    .galeria__descripcion {
        font-size: 13px;
    }

    .front {
        font-size: .9rem;
        padding: 7px 15px;
    }
}

@media screen and (max-width:375px) {
    .hero__text {
        max-width: 250px;
    }

    .content__presentacion {
        gap: .5rem;
    }

    .button__destacable {
        font-size: .9rem;
        padding: .9rem;
    }

    .icon-email ion-icon {
        line-height: 0;
    }

    .address-school ion-icon {
        line-height: 0;
    }

    .lema {
        font-size: 0.8rem;
    }

    /* Nivel primario */

    .order__list-uniforme h3 {
        font-size: 16px;
    }

    .card__uniforme-primario h4 {
        font-size: 14px;
    }

    .list__uniforme-primario li {
        font-size: 13px;
    }

    .galeria__titulo {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero__nivel-primario {
        min-height: 60dvh;
    }

    /* Historia del colegio */
    .hero__title-historia {
        padding-block: 1.5rem;
    }

    .content__historia {
        margin: 1.5rem 0;
    }
}

@media screen and (max-width:320px) {
    .title_emails {
        font-size: 15px;
    }

    .icon-email {
        font-size: 13px;
    }

    .address-school {
        font-size: 12px;
    }

    .img-ciencias-naturales,
    .img-ciencias-sociales {
        display: none;
    }

    .container__main-primario {
        width: 95%;
    }
}