:root {
    --gris-1: #282C35;
    --amarillo-letra: #FFD015;
    --amarillo-hover: #e4ba0f;
    --blanco-letra: #fefefe;
    --negro-boton: #000000;
}

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

html {
    font-size: 62.5%;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--gris-1);
}

/* .superposicion {
    width: 100%;
    height: 1080px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
} */
header {
    width: 100vw;
}
.hero nav img {
    margin-left: 8%;
    margin-top: 1%;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('./assets/images/hero-desktop-background.JPG')  top/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.9;
}

.logo {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 100px;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    min-width: 40%;
    max-width: 80%;
    padding: 20px 0 120px 100px;
    margin-top: auto;
    color: white;
    z-index: 2;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero h1 span {
    color: #FFD015;
}

.hero p {
    margin-bottom: 20px;
    padding-top: 1%;
    font-size: 2.8rem;
    font-weight: 200;
    color: var(--blanco-letra);
}

.buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: var(--amarillo-letra);
    color: var(--negro-boton);
}

.btn-primary:hover {
    background: var(--amarillo-hover);
    color: var(--negro-boton);
}

.btn-secondary {
    background: var(--negro-boton);
    color: white;
}

.btn:hover {
    opacity: 0.8;
}

.hero-card {
    position: relative;
    width: 100vw;
    height: 720px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.content-card {
    text-align: center;
    color: var(--blanco-letra);
    padding: 20px;
    width: 100%;
    max-width: calc(100% - 20%);
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.content-card h1 {
    font-size: 4.4rem;
    font-weight: bold;
    color: var(--amarillo-letra); 
    padding-bottom: 40px;
}

.content-card p {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--blanco-letra);
}

.social-icons {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.social-icon {
    color: white;
    font-size: 32px;
    transition: transform 0.3s ease-in-out, opacity 0.3s;
    padding-top: 40%;
    opacity: 0.8;
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 1;
    color: var(--amarillo-letra);
}

.eventos {
    width: auto;
    height: auto;
    text-align: center;
    font-size: 2.4rem;
    color: var(--amarillo-letra);
    padding-top: 40px;
    padding-bottom: 40px;
}

.carousel-container {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    margin: auto;
    padding: 20px;
    margin-bottom: 4%;
    background-color: var(--gris-1);
    overflow: hidden;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    scroll-behavior: smooth;
}
.carousel-item {
    display: flex;
    flex-direction: column;
    min-width: 25%;
    flex: 0 0 22%;
    text-align: center;
    padding: 0 26px;
}
.carousel-item img {
    position: relative;
    width: 100%;
    border-radius: 8px;
}

.carousel h3 {
    width: auto;
    height: auto;
    padding-bottom: 8%;
    padding-top: 4%;
    font-size: 2.4rem;
    color: var(--blanco-letra);
}

.carousel p {
    flex-grow: 1;
    width: auto;
    height: auto;
    padding-bottom: 8%;
    font-size: 1.6rem;
    color: var(--blanco-letra);
}

.carousel a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    padding: 8px;
    margin-top: auto;
    text-decoration: none;
    font-size: 1.6rem;
    border-radius: 4px;
    background-color: var(--amarillo-letra);
    box-shadow: 0px 4px 8px rgba(89, 73, 30, 0.16);
    
    font-weight: 400;
    color: var(--negro-boton);
}

.carousel a:hover {
    background-color: var(--amarillo-hover);
    box-shadow: 0px 4px 8px rgba(89, 73, 30, 0.16);
    font-weight: 400;
}

.arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
}
.arrow-left { left: 0; }
.arrow-right { right: 0; }

.models-containers {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-left: 0%;
    margin-top: 0px;
    width: 100%;
    height: 250vh;;
}

.models-containers h4 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 2rem;
    color: var(--amarillo-letra);
}

.models-container h2 {
    color: var(--amarillo-letra);
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 2.4rem;
    padding-top: 40px;
    padding-bottom: 80px;
}

.models-containers .models-description {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1rem;
    color: var(--blanco-letra);

}

.models-container1 {
    background-image: url(/MISS.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.models-container2 {
    width: 100%;
    height: 100%;
    background-image: url(/MELISSA.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.models-container3 {
    width: 100%;
    height: 100%;
    background-image: url(/FERNANDA.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}

.models-container4 {
    width: 100%;
    height: 100%;
    background-image: url(/GEMINIS.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.models-container5 {
    width: 100%;
    height: 100%;
    background-image: url(/SHANA.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.text-container {
    position: relative;
    display: block;
    align-content: end;
    width: 0%;
    min-width: 500px;
    max-width: 1000px;
    height: 200px;
    top: 30%;
    margin: 0 auto;
}

.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.footer h2 {
    font-size: 32px;
    font-weight: bold;
}

.footer h2 span {
    color: #ffcc00;
}

.footer p {
    font-size: 18px;
    max-width: auto;
    margin: 20px auto;
    line-height: 1.6;
}

.footer .cta {
    font-weight: bold;
}

.footer .social-icons-footer {
    margin-top: 100px;
}

.footer .social-icons-footer a {
    color: #fff;
    font-size: 24px;
    margin: 0 15px;
    text-decoration: none;
}

.footer .social-icons-footer a:hover {
    color: #ffcc00;
}

.icono:hover {
    transform: scale(1.2);
}

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

    100% {
        transform: rotate(360deg);
    }
}

.instagram {
    animation: girar 2s linear infinite;
}

