/* --- CONFIGURACIÓN GENERAL --- */
body { 
    font-family: Arial, sans-serif; 
    background-color: #ffffff; 
    color: #333; 
    margin: 0; 
    line-height: 1.6; 
}

/* --- CABECERA --- */
header { 
    background-color: #87ceeb; 
    padding: 30px; 
    text-align: center; 
    border-bottom: 1px solid #76bbd9; 
}
header h1 { 
    margin: 0; 
    font-weight: bold; 
    letter-spacing: 5px; 
    color: #ffffff; 
}

/* --- NAVEGACIÓN --- */
nav { 
    position: sticky; 
    top: 0; 
    background: #ffffff; 
    padding: 15px; 
    border-bottom: 1px solid #eee; 
    text-align: center; 
    z-index: 100; 
}
nav a { 
    text-decoration: none; 
    color: #666; 
    margin: 0 15px; 
    font-size: 13px; 
    font-weight: bold; 
    text-transform: uppercase; 
}
nav a:hover { 
    color: #87ceeb; 
}

/* --- CONTENEDORES --- */
.contenedor { 
    max-width: 1100px; 
    margin: auto; 
    padding: 40px 20px; 
}

/* --- SECCIÓN HERO (INDEX) --- */
.hero { 
    position: relative; 
    width: 100%; 
    height: 70vh; 
    overflow: hidden; 
    display: flex;
    align-items: center;
}
.video-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-texto { 
    position: relative; 
    z-index: 2; 
    color: white; 
    padding-left: 5%;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* --- GRID DE LA GAMA --- */
.grid-gama { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    justify-content: center; 
}
.tarjeta-barco { 
    border: 1px solid #eee; 
    padding: 15px; 
    width: 300px; 
    text-align: center; 
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.tarjeta-barco img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}
.tarjeta-barco h3 {
    margin: 15px 0 5px 0;
    color: #333;
}
.precio {
    color: #87ceeb;
    font-weight: bold;
    font-size: 18px;
}

/* --- BOTONES GLOBALES --- */
.btn { 
    display: inline-block; 
    padding: 12px 30px; 
    background: #87ceeb; 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
    margin-top: 15px; 
    border-radius: 4px; 
}

/* --- PÁGINA CONFIGURAR (IMÁGENES GRANDES Y FORMULARIO) --- */
.config-fotos { 
    display: flex; 
    justify-content: space-between; 
    gap: 20px; 
    margin-bottom: 30px; 
    width: 100%;
}
.config-fotos img { 
    width: 48%; /* Limita estrictamente el ancho a la mitad del contenedor */
    height: 350px; /* Fija una altura para uniformidad */
    border-radius: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    object-fit: cover; /* Evita que la imagen se deforme al forzar la altura */
}

.formulario-config { 
    background-color: #eaf6fc; 
    padding: 30px; 
    border: 1px solid #b3e0f2; 
    border-radius: 12px; 
}

.fila-form { 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 15px; 
}

.fila-form > label:first-child { 
    width: 150px; 
    font-weight: bold; 
}

.fila-form select { 
    padding: 5px; 
    font-size: 15px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
}

.label-normal { 
    font-weight: normal; 
    margin-right: 15px; 
}

.btn-solicitar { 
    padding: 15px 40px; 
    background: #76bbd9; 
    color: white; 
    font-weight: bold; 
    border: 2px solid #5a9cb8; 
    border-radius: 4px; 
    cursor: pointer; 
    text-transform: uppercase; 
    font-size: 14px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}
.btn-solicitar:hover { 
    background: #5a9cb8; 
}

/* --- FOOTER --- */
footer { 
    background-color: #f9f9f9; 
    padding: 30px; 
    border-top: 1px solid #87ceeb; 
    text-align: center; 
    font-size: 11px; 
    color: #999; 
}