@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=DM+Serif+Display&display=swap');

:root {
    --azul: #1a3a5c;
    --azul-claro: #2a5a8c;
    --gris: #8c8c8c;
    --naranja: #d4762c;
    --blanco: #ffffff;
    --fondo: #f5f5f0;
    --texto: #2a2a2a;
    --texto-light: #666;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--fondo);
    color: var(--texto);
    line-height: 1.6;
}

/* NAV */
nav {
    background: var(--azul);
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .logo img {
    height: 40px;
}

nav .menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav .menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav .menu a:hover,
nav .menu a.active {
    color: var(--blanco);
}

nav .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

nav .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blanco);
    margin: 5px 0;
    transition: all 0.3s;
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--blanco);
    overflow: hidden;
}

.hero img.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: var(--naranja);
    color: var(--blanco);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #b8632a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,118,44,0.3);
}

/* SECCIONES */
section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

section.full-width {
    max-width: 100%;
    padding: 4rem 0;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--azul);
    margin-bottom: 1.5rem;
}

/* COLUMNAS */
.cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.col-card {
    background: var(--blanco);
    border: 1px solid #e0ddd8;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.col-card h3 {
    font-size: 1.1rem;
    color: var(--azul);
    margin-bottom: 0.5rem;
}

.col-card p {
    font-size: 0.9rem;
    color: var(--texto-light);
}

/* DOS COLUMNAS IMAGEN + TEXTO */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.split img {
    width: 100%;
    border-radius: 12px;
}

.split .text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--azul);
    margin-bottom: 1rem;
}

.split .text p {
    color: var(--texto-light);
    margin-bottom: 1rem;
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.galeria img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e0ddd8;
}

/* PÁGINA DE PRODUCTO */
.producto-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.producto-hero img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.producto-hero .info h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--azul);
    margin-bottom: 0.5rem;
}

.producto-hero .info .precio {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--naranja);
    margin: 1rem 0;
}

.producto-hero .info p {
    color: var(--texto-light);
    line-height: 1.7;
}

/* SPECS */
.specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.spec-item {
    background: var(--blanco);
    border: 1px solid #e0ddd8;
    border-radius: 10px;
    padding: 1.25rem;
}

.spec-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--naranja);
    margin-bottom: 0.4rem;
}

.spec-item p {
    font-size: 0.9rem;
    color: var(--texto-light);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e0ddd8;
    padding: 1.25rem 0;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--azul);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--texto-light);
    font-size: 0.95rem;
}

/* MERCHANDISING */
.merch-card {
    background: var(--blanco);
    border: 1px solid #e0ddd8;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
    margin-top: 2rem;
}

.merch-card img {
    width: 100%;
}

.merch-card .merch-info {
    padding: 1.5rem;
}

.merch-card .merch-info h3 {
    font-size: 1.1rem;
    color: var(--azul);
    margin-bottom: 0.5rem;
}

.merch-card .merch-info p {
    color: var(--texto-light);
    font-size: 0.9rem;
}

/* CONTACTO */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--texto);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0cdc8;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    background: var(--blanco);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azul);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.datos-contacto h3 {
    font-size: 1.1rem;
    color: var(--azul);
    margin-bottom: 1rem;
}

.datos-contacto p {
    color: var(--texto-light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* VALORES */
.valores-lista {
    margin-top: 2rem;
}

.valor-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e5e0;
}

.valor-item:last-child {
    border-bottom: none;
}

.valor-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--naranja);
    margin-bottom: 0.25rem;
}

.valor-item p {
    color: var(--texto-light);
    font-size: 0.9rem;
}

/* FOOTER */
footer {
    background: var(--azul);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
}

footer img {
    height: 30px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

footer a:hover {
    color: var(--blanco);
}

/* PAGE HEADER (para páginas internas) */
.page-header {
    background: var(--azul);
    color: var(--blanco);
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--azul);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0.75rem;
    }

    nav .menu.active {
        display: flex;
    }

    nav .hamburger {
        display: block;
    }

    .hero h1 { font-size: 2rem; }
    .hero { height: 60vh; min-height: 400px; }

    .cols-3 { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .producto-hero { grid-template-columns: 1fr; }
    .specs { grid-template-columns: 1fr; }
    .galeria { grid-template-columns: 1fr 1fr; }
    .contacto-grid { grid-template-columns: 1fr; }
}
