/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header styles */

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

/* Botones de descarga en Hero */
.app-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.store-button {
    width: 150px; /* Ajusta el tamaño de las imágenes */
    height: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 40px;}
  
/* Icono del menú */
.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    display: inline-block;
}

/* Menú desplegable */
.menu {
    display: none; /* Ocultar el menú inicialmente */
    position: absolute;
    top: 60px; /* Ajusta según la altura del header */
    right: 300px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 80%;
    border-radius: 5px;
    z-index: 1000;
    padding: 10px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 10px 0;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.menu a:hover {
    background-color: #f0f0f0;
    border-radius: 3px;
}

/* Mostrar el menú cuando está activo */
.menu.active {
    display: block;
}

@media (max-width: 768px) {
    .menu {
        left: 80%;
        transform: translateX(-50%); /* Centrar el menú */
        width: 200px; /* Tamaño fijo para pantallas pequeñas */
    }
}

/* Mostrar menú al hacer clic */
.menu.active {
    display: block;
}

/* Estilos generales para la sección hero */
.hero {
    color: #fff;
    height: 75vh; /* Ocupa el 100% de la altura de la ventana */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Contenedor principal */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    height: 100%; /* Asegura que ocupe toda la altura */
}

/* Elementos hijos */
.hero-text,
.hero-image {
    flex: 1; /* Ambos ocupan el mismo espacio */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero-text {
    text-align: left; /* Texto alineado a la izquierda */
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
/* Botones en Download */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #947C3A;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 75vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

.cta-button:hover {
    background-color: #71582E;
}

.cta-button.android {
    background-color: black; /* Color típico de Android */
}

.cta-button.ios {
    background-color: black; /* Color típico de iOS */
}

/* Imagen */
.hero-image img {
    max-width: 100%;
    height: auto;
    animation: wiggle 1.5s infinite ease-in-out; /* Animación sutil */
}

/* Animación de wiggle */
@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    
    .hero-content {
        flex-direction: column; /* Apilar elementos en móvil */
        height: auto; /* Dejar que la altura se adapte al contenido */
    }

    .hero-text {
        text-align: center; /* Centrar texto en móvil */
    }

    .hero-text h1 {
        font-size: 2rem; /* Reducir tamaño del título */
    }

    .hero-text p {
        font-size: 1rem; /* Reducir tamaño del párrafo */
    }

    .hero-image {
        margin-top: 20px; /* Espacio entre texto e imagen */
    }
}

/* Features section styles */
.features {
    padding: 4rem 0;
}
.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.feature-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
/* Login section styles */
.login {
    background-color: #f0f0f0;
    padding: 4rem 0;
}
.login h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.login-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.login-step {
    flex: 1;
    text-align: center;
}
.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #947C3A;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
/* Download section styles */
.download {
    padding: 4rem 0;
    text-align: center;
}
.download h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.download p {
    margin-bottom: 2rem;
}
.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.store-button {
    width: 100%; /* Hacer que las imágenes se ajusten al contenedor */
    max-width: 200px; /* Tamaño máximo para mantener proporciones */
    height: auto; /* Mantener la relación de aspecto */
}
.app-button {
    display: inline-block;
    background-color: transparent;

}
.app-button:hover {
    background-color: transparent;
}
/* About section styles */
.about {
    background-color: #947C3A;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
/* Footer styles */
.download-button {
display: inline-block;
padding: 10px 20px;
margin-top: 25px;
background-color: #fff;
color: #000;
text-decoration: none;
border: 2px solid #000;
border-radius: 5px;
font-weight: bold;
font-family: inherit;
} 

.access-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    border-radius: 5px;
    font-weight: bold;
    font-family: inherit;
  }
  .download-button:hover, .access-button:hover {
    background-color: #000;
    color: #fff;
  }
footer {
    margin-top: 10px;
    background-color: #f9f9f9;
    padding: 2rem 0;
    text-align: center;
}
.footer-links {
    margin-top: 1rem;
}
.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 0.5rem;
}
/* Responsive styles */
@media (max-width: 768px) {
    .hero-content, .feature-cards, .login-steps {
        flex-direction: column;
    }
}
    
