:root { --oro: #C5A059; --navy: #1B293E; --blanco: #FFFFFF; --gris: #F8F9FA; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: var(--navy); background: white; overflow-x: hidden; }

/* Navbar */
nav { background: white; padding: 10px 5%; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.nav-logo { height: 45px; cursor: pointer; }
.nav-right { display: flex; align-items: center; gap: 15px; }
#lang-btn { background: var(--navy); color: var(--oro); border: 1px solid var(--oro); padding: 5px 10px; font-size: 0.7rem; font-weight: bold; cursor: pointer; border-radius: 4px; }

/* Menú Lateral */
.menu-icon { width: 25px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; }
.menu-icon span { width: 100%; height: 2px; background: var(--oro); }
.side-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: rgba(27, 41, 62, 0.98); z-index: 2000; transition: 0.5s; display: flex; flex-direction: column; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.side-menu.active { right: 0; }
.menu-logo-top { max-width: 200px; margin-bottom: 30px; }
.menu-links a { color: white; text-decoration: none; font-family: 'Cinzel', serif; font-size: 1.5rem; display: block; margin: 20px 0; }
.close-menu { position: absolute; top: 20px; right: 30px; font-size: 3rem; color: var(--oro); cursor: pointer; }

/* Hero */
.hero { height: 75vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding: 20px; }
.hero h1 { font-family: 'Cinzel', serif; font-size: 2.8rem; letter-spacing: 4px; }
.btn-main { margin-top: 20px; padding: 18px 35px; background: var(--oro); color: white; border: none; font-weight: bold; cursor: pointer; text-transform: uppercase; }

/* Secciones */
.about-section, .how-section, .services-gallery { padding: 80px 5%; text-align: center; }
.about-card { max-width: 800px; margin: 0 auto; }
.tagline { font-weight: 600; font-style: italic; margin-bottom: 20px; font-size: 1.2rem; }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 30px; }
.step-num { font-family: 'Cinzel', serif; font-size: 2.5rem; color: var(--oro); opacity: 0.5; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-top: 30px; }
.service-photo { height: 160px; background: var(--gris); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--oro); }

/* Flota */
.yacht-selection { padding: 60px 5%; background: var(--gris); text-align: center; }
.yacht-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
.yacht-card { background: white; border-radius: 12px; overflow: hidden; padding-bottom: 20px; cursor: pointer; transition: 0.3s; }
.yacht-card:hover { border: 1px solid var(--oro); transform: translateY(-5px); }
.yacht-img { height: 200px; background: #eee; width: 100%; object-fit: cover; }
.yacht-card h3 { font-family: 'Cinzel', serif; margin: 15px 0 5px; }
.yacht-card p { font-size: 0.8rem; color: #666; margin: 2px 0; }

/* Reserva */
.booking-flow { padding: 80px 5%; background: var(--navy); }
.booking-container { max-width: 850px; margin: 0 auto; background: white; padding: 35px; border-radius: 15px; color: var(--navy); }
.selected-badge { font-weight: bold; color: var(--oro); text-align: center; font-size: 1.4rem; margin-bottom: 20px; font-family: 'Cinzel', serif; }
.yacht-rules { background: #fff1f1; padding: 12px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #cc0000; font-size: 0.8rem; color: #cc0000; font-weight: bold; }

/* TÍTULOS DE SECCIÓN CENTRADOS */
.form-step label { display: block; font-weight: bold; color: var(--oro); margin-bottom: 15px; font-size: 0.95rem; text-transform: uppercase; text-align: center; }

/* SELECT DURACIÓN CENTRADO */
.luxury-select {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    background-color: var(--gris);
    border: 2px solid var(--oro);
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--navy);
    cursor: pointer;
    text-align: center;
    text-align-last: center;
}

.package-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin: 20px 0; }
.pkg-card { border: 1px solid #ddd; padding: 15px; border-radius: 10px; cursor: pointer; position: relative; background: white; }
.pkg-card.best-seller { border: 2px solid var(--oro); background: #fffdf9; }
.corner-badge { position: absolute; top: 0; right: 0; background: var(--oro); color: white; font-size: 0.5rem; padding: 3px 8px; border-radius: 0 8px 0 8px; font-weight: bold; }

/* TÍTULOS DE PAQUETES EN AZUL MARINO */
.pkg-info strong { color: var(--navy); font-size: 1.2rem; display: block; margin-bottom: 5px; }

.price { color: var(--oro); font-weight: bold; font-size: 1.2rem; display: block; }
.pkg-list { font-size: 0.7rem; list-style: none; margin-top: 10px; text-align: left; }
.red-text { color: #d00000; font-weight: bold; }

/* IGUALAR TAMAÑOS DE FECHA, HORA E INVITADOS */
.dateTime-group { display: flex; gap: 15px; margin: 20px 0; }
.input-box { flex: 1; display: flex; flex-direction: column; }
.input-box label { text-align: left; font-size: 0.75rem; margin-bottom: 5px; } 

input[type="date"], #reserva-hora, input[type="number"], textarea {
    width: 100%;
    height: 55px; /* Altura unificada */
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    background: var(--gris);
    font-weight: 500;
    font-size: 0.95rem;
}
textarea { height: auto; min-height: 80px; }

.addons-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 10px; font-size: 0.7rem; }
.addons-grid span { background: var(--gris); padding: 8px; border-radius: 5px; text-align: center; }

.total-box { font-size: 2rem; font-weight: 900; text-align: center; margin-top: 25px; border-top: 2px solid var(--gris); padding-top: 20px; color: var(--navy); }
.total-box span { color: var(--oro); }

.btn-whatsapp { background: #25D366; color: white; border: none; width: 100%; padding: 20px; border-radius: 10px; font-weight: bold; font-size: 1.1rem; cursor: pointer; margin-top: 15px; transition: 0.3s; }
.btn-whatsapp:hover { background: #1eb954; transform: scale(1.01); }

.hidden { display: none; }
footer { padding: 40px; text-align: center; background: var(--gris); font-size: 0.8rem; }
.footer-spec { font-weight: bold; color: var(--oro); margin-bottom: 5px; text-transform: uppercase; }

@media (max-width: 600px) {
    .dateTime-group { flex-direction: column; gap: 10px; }
    .addons-grid { grid-template-columns: 1fr 1fr; }
}