/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #F2D06B;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: rgba(13, 13, 13, 0.95);
    color: #F2EA79;
    padding: 20px 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid #F2EA79;
    backdrop-filter: blur(5px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-container {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text-container {
    flex: 1;
    text-align: center;
}

.text-container h1 {
    font-size: 2em;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.text-container .subtitle {
    font-size: 1em;
    max-width: 700px;
    margin: 0 auto;
    color: #F2D06B;
    font-weight: 300;
    line-height: 1.4;
}

h1, h2, h3, h4 {
    color: #F2EA79;
}

h1 {
    font-size: 2em;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1em;
    max-width: 800px;
    margin: 0 auto;
    color: #F2D06B;
    font-weight: 300;
    line-height: 1.4;
}

/* Secciones de contenido */
.content-section {
    background-color: #585959;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(242, 234, 121, 0.1);
}

.intro-text {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 30px;
    color: #F2D06B;
}

/* Contacto */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.contact-card {
    background-color: rgba(13, 13, 13, 0.7);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    border: 2px solid #F2EA79;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(242, 234, 121, 0.2);
    border-color: #F2D06B;
}

.contact-card h3 {
    color: #F2EA79;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.contact-card p {
    color: #D9AD5B;
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #F2EA79;
    color: #0D0D0D;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 15px;
    border: 2px solid #F2EA79;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.whatsapp-btn:hover {
    background-color: #0D0D0D;
    color: #F2EA79;
}

/* Galería */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.gallery-item {
    background-color: rgba(13, 13, 13, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #585959;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: #F2EA79;
    box-shadow: 0 8px 16px rgba(242, 234, 121, 0.2);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 2px solid #585959;
}

.gallery-description {
    padding: 20px;
    text-align: center;
}

.gallery-description h4 {
    color: #F2EA79;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.gallery-description p {
    color: #D9AD5B;
    font-size: 0.95em;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid #585959;
}

footer p {
    color: #D9AD5B;
    margin-bottom: 10px;
}

footer p:first-child {
    font-size: 1em;
    margin-bottom: 5px;
}

footer p:last-child {
    font-size: 0.8em;
    color: #585959;
}

/* Aviso "Próximamente" */
.coming-soon {
    background-color: rgba(242, 234, 121, 0.1);
    border-left: 4px solid #F2EA79;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.coming-soon p {
    color: #F2D06B;
    font-style: italic;
}

.text-descriptivo {
    color: #F2D06B;
}

.text-secundario {
    color: #D9AD5B;
}

.text-resaltado {
    color: #F2EA79;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-container {
        width: 60px;
        height: 60px;
    }
    
    .text-container h1 {
        font-size: 1.6em;
    }
    
    .text-container .subtitle {
        font-size: 0.9em;
    }
    
    header {
        padding: 15px;
    }
}

/* Efectos adicionales */
::selection {
    background-color: #F2EA79;
    color: #0D0D0D;
}

a {
    color: #F2D06B;
    transition: color 0.3s ease;
}

a:hover {
    color: #F2EA79;
}