body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #40525e;
}

header {
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh;
    background-color: #40525e;
}

/* Logo de AnaYAna */
.logo {
    max-width: 30vw;
    height: auto;
}

/* Botones de Sing-up y Login */
.buttons {
    display: flex;
    gap: 1vw;
    margin-right: 1.7vw;
}

/* Botones de Sing-up y Login */
.btn {
    padding: 1.6vh 2.9vw;
    background-color: #f6ca29;
    color: #40525e;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2vw;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background-color: #d4a017;
}

/* Primer boton "Pruebalo Ya" */
.btn-primary {
    padding: 2vh 6.5vw;
    background-color: #f6ca29;
    color: #40525e;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.5vw;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #d4a017;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
}

.text-content {
    margin-left: 8vw;
    margin-right: 4vw;
    flex: 1;
    color: white;
}

/* Texto principal abajo de titulo */
.main-text {
    font-size: 1.5vw;
    line-height: 1.8;
    color: white;
}

/* Color amarillo claro para cierto texto de "main-text" */
.amarillo-claro {
    color: #f9d069;
}

.amarillo-claro-bold {
    color: #f9d069;
    font-weight: bold;
}

.main-title {
    font-size: 3.2vw;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    max-width: 95%;
    height: auto;
    margin-right: 75px;
}

/* Estilos para la sección de la galería */
.image-gallery {
    width: 100vw;
    padding: 5vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #40525e; /* Color de fondo opcional */
}

/* Contenedor de las imágenes */
.gallery-container {
    display: flex;
    justify-content: space-around;
    width: 75vw; /* Ocupa el 90% del ancho de la pantalla */
    margin-top: -5vh;
}

/* Estilos para las imágenes */
.gallery-img {
    width: 14vw;  /* Cada imagen ocupa el 22% del ancho de la pantalla */
    height: auto;  /* Mantiene la proporción */
    max-height: 35vh; /* Máximo de 35% de la altura de la pantalla */
    object-fit: contain; /* Asegura que la imagen se vea bien */
}

.features {
    background-color: #40525e;
    padding: 50px;
    margin-top: -20px;
}

.features-row-top,
.features-row-bottom {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.feature-item {
    position: relative; /* Para posicionar el número sobre la imagen */
    text-align: center;
    color: white;
    flex: 1; /* Hace que cada feature-item sea flexible y ajuste su tamaño */
}

.feature-item p {
    font-size: 1.8vw;
    line-height: 1.5;
    max-width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    margin-top: 5px;
}

.feature-img {
    max-width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* Efecto de zoom al pasar el mouse */
.feature-img:hover {
    transform: scale(1.02);
}

.feature-number {
    position: absolute;
    top: -2vh; /* Ajusta la posición del número hacia arriba */
    left: 0vw; /* Ajusta la posición hacia la izquierda */
    font-size: 3vw; /* Tamaño proporcional */
    font-weight: bold;
    color: #f6ca29; /* Color amarillo para el número */
}

.feature-number sup {
    font-size: 1.2vw; /* Hacer que el "ro", "do", etc. sean pequeños */
    vertical-align: super; /* Eleva el texto */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.cta-btn {
    padding: 1.5vw 5vw;
    background-color: #f6ca29;
    color: #40525e;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.5vw;  
    max-width: 500px;
    width: auto;
    transition: background 0.3s ease-in-out;
}

.cta-btn:hover {
    background-color: #d4a017;
}

.contact {
    text-align: center;
    padding: 5vh 5vw;
    background-color: #40525e;
    color: white;
}

.contact-title {
    font-size: 3.8vw;
    margin-bottom: 2vh;
}

.contact-text {
    font-size: 1.7vw;
    margin-bottom: 4vh;
}

.btn-redes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
    font-size: 1.7vw;
    color: #40525e;
    background-color: #f6ca29;
    padding: 1.5vh 4vw;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    width: fit-content;
    margin: 2vh auto;
    transition: background 0.3s ease-in-out;
}

.btn-redes i {
    font-size: 2.5vw;
}

.btn-redes:hover {
    background-color: #d4a017;
}

.site-footer {
    background-color: black;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

.footer-text {
    font-size: 1.5vw;
    color: white;
    margin: 0;
}
