@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&family=Roboto:wght@400;500;700;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url(./bootstrap.min.css);
@import url(./aos.css);

:root {
    /* Colores */
    --white: #f5f5f5;
    --blue: #1f3772;
    --yellow: #DBDB46;
    --gray: #4d4d4d;
    --green: #006633;

    /* Fuentes */
    --font-titles: 'Poppins', sans-serif;
    --font-content: 'Roboto', sans-serif;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    /* 10 PX = 1rem */
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2;
}

/* Navbar */
nav {
    font-family: var(--font-titles);
    font-weight: 500;
    padding: 1rem 0 !important;
}

.navbar-brand {
    font-size: 2rem !important;
}

.navbar-brand .logo {
    width: 3rem;
    height: 2.4rem;
    display: inline-block;
}

nav a {
    font-size: 1.6rem !important;
    margin: 0 1rem;
}

.hero {
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    /* color: var(--white); */
    font-family: var(--font-titles);
    text-align: center;
    font-size: 6rem;
    margin-bottom: 1rem;
}

.hero a {
    font-family: var(--font-titles);
    margin: 2rem auto;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    background-color: #2563eb;
    color: var(--white);
    text-decoration: none;
    padding: .8rem;
    border-radius: .6rem;
    transition: all ease-in .3s;
}

.hero a:hover {
    background-color: #1d4ed8;
}

.hero img {
    display: block;
    margin: 0 auto;
    width: 45rem;
    border-radius: 1.2rem;
}

.hero ul {
    list-style: decimal;
    font-family: var(--font-titles);
    margin: 3rem 0;
}

/* Us Section */
.principal-section {
    background-color: var(--white);
    min-height: 100vh;
}

.principal-section .montos {
    font-family: var(--font-titles);
    font-weight: bold;
    font-size: 5rem;
    text-align: center;
    margin: 5rem 0;
    color: var(--blue);
}

.principal-section .img-cantidades {
    width: 35rem;
    display: block;
    margin: 0 auto;
    border-radius: 1.2rem;
    box-shadow: 5px 5px 10px -2px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 5px 5px 10px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 5px 5px 10px -2px rgba(0, 0, 0, 0.75);
}

.principal-section .cantidades {
    font-family: var(--font-content);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.principal-section .cantidades:nth-child(2) {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    line-height: normal;
    color: var(--blue);
}

.principal-section .subtitle {
    text-align: center;
    font-weight: bold;
    font-family: var(--font-titles);
    font-size: 4rem;
    margin: 0 0 3rem 0;
    color: var(--blue);
}

.principal-section .contact-link {
    text-decoration: none;
    font-family: var(--font-content);
    margin: 1.5rem 0 0 0;
    background-color: slategrey;
    border-radius: .8rem;
    color: var(--white);
    text-align: center;
    width: 100%;
    display: block;
    transition: all ease .3s;
}

.principal-section .contact-link:hover {
    background-color: #577692;
}

.card-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 20rem !important;
    border: none !important;
    overflow: hidden;
    transition: transform 300ms ease;
    cursor: pointer;
    position: relative;
}

.card-cover:hover {
    transform: scale(.9);
}

.card-cover h3 {
    font-family: var(--font-content) !important;
    text-align: center !important;
    font-size: 3rem;
}

/* Contact section */
.contact-section {
    background: rgb(10, 16, 34);
    background: linear-gradient(90deg, rgba(10, 16, 34, 0.75) 0%, rgba(10, 16, 34, 0.75) 100%), url(../img/contact-section.webp);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.contact-section .title {
    margin: 5rem 0 3rem 0;
    font-weight: bold;
    font-size: 5rem;
    font-family: var(--font-titles);
    color: var(--white);
    text-align: center;
}

.contact-section p {
    color: var(--white);
    font-family: var(--font-content);
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

form {
    background-color: rgba(245, 245, 245, 0.473);
    padding: 1.5rem;
    border-radius: .8rem;
    margin: 3rem 0;
}

form input,
form select {
    font-family: var(--font-content);
    font-size: 1.4rem !important;
}

form button {
    border: none;
    border-radius: .8rem;
    width: 50%;
    font-family: var(--font-titles);
    background-color: #bb5d1a;
    color: var(--white);
    transition: all ease .3s;
}

form button:hover {
    background-color: #8b4513;
}

.contact-section .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-section .box i {
    color: var(--white);
    text-align: center;
    font-size: 5rem;
}

.contact-section .box .title {
    font-family: var(--font-titles);
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    margin: 0;
}

.contact-section .box a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-titles);
}

footer h3 {
    text-align: center;
    font-family: var(--font-titles);
    font-size: 2rem;
}

footer a {
    text-align: center;
    display: block;
    text-decoration: none;
    font-family: var(--font-content);
    color: black;
}

footer a:hover {
    color: var(--blue);
    cursor: pointer;
}

footer span {
    text-align: center;
    margin: 0;
    display: block;
    font-size: 1.2rem;
    color: var(--gray);
}

.confirm-section {
    min-height: 100vh;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.confirm-section h1 {
    font-family: var(--font-titles);
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
}

.confirm-section p {
    font-family: var(--font-content);
    font-size: 2rem;
    text-align: center;
    color: var(--gray);
}

.confirm-section a,
.aviso-de-privacidad a {
    background-color: teal;
    color: var(--white);
    width: 50%;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-titles);
    border-radius: .8rem;
    max-width: 35rem;
    transition: all ease .3s;
}

.confirm-section a:hover,
.aviso-de-privacidad a:hover {
    background-color: #015757;
}

.aviso-de-privacidad {
    min-height: 100vh;
    background-color: var(--white);
}

.aviso-de-privacidad h1 {
    text-align: center;
    font-weight: bold;
    font-size: 5rem;
    font-family: var(--font-titles);
    margin: 5rem 0;
}

.aviso-de-privacidad p {
    font-family: var(--font-content);
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .box img {
        width: 35rem;
    }
}

@media (min-width: 992px) {
    .hero img {
        width: 55rem;
    }

    .principal-section .img-cantidades {
        width: 40rem;
    }

    .principal-section .cantidades {
        text-align: left;
    }

    .principal-section .contact-link {
        width: 50%;
    }

    .contact-section p {
        font-size: 2rem;
    }

    form input,
    form select {
        font-size: 1.6rem !important;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        text-align: left;
    }
}
