/* --- Estilos Generales y Colores Corporativos de SeaVen --- */
:root {
    --primary-color: #0b2545; /* Azul marino oscuro */
    --secondary-color: #134074; /* Azul medio para detalles */
    --accent-color: #eef4f8; /* Azul claro para fondos suaves */
    --dark-color: #051622; /* Casi negro para textos principales */
    --light-color: #ffffff; /* Blanco puro */
    --text-color: #333333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --- Encabezado y Navegación --- */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn-nav-contact {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-nav-contact:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    text-decoration: none;
}

/* --- Hero Section con Imagen de Fondo --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('fondoazul.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Sección de Servicios y Asesorías --- */
.services-section {
    padding: 60px 0;
    text-align: center;
    background: var(--accent-color);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.section-subtitle {
    margin-bottom: 30px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--light-color);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 5px solid var(--secondary-color);
    transition: transform 0.3s ease;
    flex: 1;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    display: block;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-location {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Sección Tarifas (Casillero) --- */
.pricing-section {
    padding: 60px 0;
    background: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
}

.price-card.popular {
    border: 2px solid var(--primary-color);
}

.price-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-card h3 {
    margin-bottom: 10px;
}

.price-card .time {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.price-card .price span {
    font-size: 1rem;
    font-weight: normal;
    color: #777;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.price-card ul li {
    margin-bottom: 10px;
    color: #555;
}

.price-card ul li i {
    color: #28a745;
    margin-right: 8px;
}

/* --- Sección de Preguntas Frecuentes (FAQ) --- */
.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3,
.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

/* --- Sección de Logotipos / Aliados --- */
.trust-logos {
    padding: 30px 20px;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #eee;
}

.trust-logos p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* --- Sección de Contacto Inferior (CTA) --- */
.cta-section {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #25d366; /* Verde WhatsApp */
    color: #fff;
}

/* --- Footer --- */
footer {
    background: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* --- Responsive (Móviles) --- */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li {
        margin: 5px 10px;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}/* --- Sección Club VIP --- */
.vip-club-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 70px 0;
    text-align: center;
}

.vip-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.vip-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--accent-color);
}

.vip-benefits {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.vip-benefits li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    border-left: 4px solid #ffc107;
}

.vip-benefits li span {
    margin-right: 8px;
    font-size: 1.1rem;
}

.vip-price {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.vip-price span {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffc107;
    display: block;
    margin-top: 5px;
}

.btn-vip {
    background-color: #ffc107;
    color: var(--dark-color) !important;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-vip:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}