/* General */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.7em; }
h3 { font-size: 2em; }
p { font-size: 1.25em; }
ul { list-style: none; }
li { font-size: 1.25em; }

button {
    font-size: 1.25em;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 10px rgba(246, 255, 143, 0.87);
    color: white;
    background-color: rgb(5, 1, 10);
}

button:hover {
    background-color: rgb(179,135,60,255);
}

.container {
    max-width: 1300px;
    margin: auto;
}

.color-acento { color: rgb(0, 0, 0); }

header {
    background-color: rgb(0, 0, 0);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header .logo {
    margin: 0;
    padding: 10px 15px;
    font-weight: bold;
    color: rgba(138, 216, 252, 0.807);
    font-size: 1.2em;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;
}

header nav a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 8px;
    text-decoration: none;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

header nav a.whatsapp-link {
    padding: 0;
}

header nav a:hover {
    color: rgb(244, 255, 120);
}

.whatsapp-link ion-icon {
    font-size: 45px;
    vertical-align: middle;
}

#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    background-image: linear-gradient(
        0deg,
        rgb(255, 255, 255),
        rgb(255, 255, 255)
    ), url("media/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#hero h1 {
    color: rgb(0, 0, 0);
}

#hero button {
    font-size: 1.75em;
}

.hero-image {
    width: 50vw;
    height: 50vw;
    max-width: 200px;
    max-height: 200px;
    margin-bottom: -50px;
}

/* Section: Somos Proya */
#somos-proya .container {
    text-align: center;
    padding: 500px 12px;
    position: relative;
    margin-top: 150px;
}

.background-slider {
    position: absolute;
    top: 0; /* Ajusta la posición superior */
    left: 0; /* Ajusta la posición izquierda */
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    border-radius: 5%;
    justify-content: center; /* Asegura el centrado horizontal */
    align-items: center;    /* Asegura el centrado vertical */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain; /* Cambia a 'contain' para mantener las proporciones de la imagen */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* No repite la imagen */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.texto {
    position: relative;
    z-index: 1;
    color: rgb(0, 0, 0);
}

.texto h2, .texto p {
    margin: 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-align: left;
}

/* Section: Nuestros Programas */
#nuestros-paquetes {
    background-color: rgb(30, 30, 30);
    color: white;
    text-align: center;
}

#nuestros-paquetes .container {
    padding: 150px 12px;
}

#nuestros-paquetes h2 {
    margin-top: 0;
    font-size: 3.2em;
}

#nuestros-paquetes .paquetes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#nuestros-paquetes .carta {
    background-color: rgba(50, 50, 50, 1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 30px;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
}

#nuestros-paquetes .carta img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

#caracteristicas .container {
    text-align: center;
    padding: 250px 12px;
}

#caracteristicas li {
    margin: 16px 0;
    font-weight: bold;
}

#final {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(30, 30, 30);
    color: white;
    height: 80vh;
}

#final h2 {
    font-size: 9vw;
}

#final button {
    font-size: 5vw;
}

.icon-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#final a {
    text-decoration: none;
    color: inherit;
}

#final ion-icon {
    font-size: 100px;
    transition: color 0.3s, font-size 0.3s;
}

#final ion-icon:hover {
    color: #f4ff78;
    font-size: 110px;
}

footer {
    background-color: rgb(230, 230, 230);
}

footer p {
    margin: 0;
    padding: 12px;
    color: rgb(100, 100, 100);
}

footer .container {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 850px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    header nav {
        flex-direction: row;
        padding-bottom: 0;
        padding-right: 20px;
    }

    #hero h1 {
        font-size: 5em;
    }

    #somos-proya .container {
        display: flex;
        justify-content: space-evenly;
    }

    #somos-proya .texto {
        width: 50%;
        max-width: 600px;
        text-align: initial;
        padding-left: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 20px;
    }

    #somos-proya h2 {
        margin-top: 0;
    }

    #somos-proya .img-container {
        background-size: cover;
        background-position: center center;
        height: 500px;
        width: 400px;
    }

    #nuestros-programas .programas {
        display: flex;
        justify-content: center;
    }

    #nuestros-programas h2 {
        font-size: 4em;
    }

    #nuestros-programas h3 {
        margin-top: 0;
    }

    #caracteristicas {
        background-image: url(logoBlanco.jpeg);
        background-repeat: no-repeat;
        background-size: cover;
        background-size: 350px 350px;
        background-position: calc(100vw - 500px) -20px;
    }

    #caracteristicas .container {
        text-align: initial;
        font-size: 1em;
    }

    #caracteristicas ul {
        margin-right: 100px;
    }

    #final h2 {
        font-size: 5em;
    }

    #final button {
        font-size: 2em;
    }

    footer .container {
        justify-content: flex-end;
    }
}

@media (min-width: 1200px) {
    #caracteristicas {
        background-position-x: calc(100vw - 800px);
    }
}

.btn {
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    color: black;
    border-radius: 8px;
    letter-spacing: 5px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.6s;
    padding: 10px 20px;
    border: none;
    transition-property: box-shadow;
}

.btn {
    background: rgba(138, 216, 252, 0.807);
    box-shadow: 0 0 50px rgba(138, 216, 252, 0.807);
}

.btn:hover {
    box-shadow: 0 0 5px rgb(138, 216, 252, 0.807),
                0 0 25px rgb(138, 216, 252, 0.807),
                0 0 50px rgb(138, 216, 252, 0.807),
                0 0 100px rgb(138, 216, 252, 0.807),
                0 0 500px rgb(138, 216, 252, 0.807);
}

.btn-paquetes {
    margin-top: 20px;
}

.qr {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-final {
    width: 180px;
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

  /*

  0 0 5px #765ab5,
                0 0 25px #352552,
                0 0 50px #352552,
                0 0 100px #765ab5,
                0 0 500px #765ab5;
  
  
  
  */