/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    color: #fff;
}

/* Estilos del hero section con imagen de fondo */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1633613286848-e6f43bbafb8d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* Header transparente */
.transparent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-menu a:hover {
    color: #ff6b6b;
}

/* Mega menú */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 100;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-menu.active {
    display: flex;
    opacity: 1;
}

.mega-menu-content {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    padding-top: 100px;
}

.mega-menu-column {
    flex: 1;
    padding: 0 20px;
}

.mega-menu-column h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 15px;
}

.mega-menu-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.mega-menu-column ul li a:hover {
    color: #ff6b6b;
}

/* Contenido hero */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Redes sociales */
.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

/* Sección de contenido */
.content-section {
    min-height: 100vh;
    background-color: #f8f8f8;
    color: #333;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.text-container {
    flex: 1;
}

.text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.text-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.text-container p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.email-subscription {
    display: flex;
    margin-bottom: 15px;
    max-width: 400px;
}

.email-subscription input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.email-subscription button {
    padding: 15px 25px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.email-subscription button:hover {
    background-color: #e05555;
}

.privacy-text {
    font-size: 0.8rem;
    color: #777;
}

/* Footer */
.dark-footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Efectos de scroll */
section {
    scroll-snap-align: start;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .mega-menu-content {
        flex-direction: column;
        padding-top: 50px;
    }
    
    .mega-menu-column {
        margin-bottom: 30px;
    }
}