@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@300;400;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: #fcfcfc;
    color: #111111;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Navegación Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 35px;
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Selector de Idioma (NL | EN) */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
}

.lang-btn {
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.3s ease;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.lang-btn:hover, .lang-btn.active {
    color: #111111;
    border-bottom: 2px solid #111111;
}

.lang-divider {
    color: #cccccc;
    font-size: 0.7rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #111111;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: #444444;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000000;
}

.nav-btn {
    border: 1px solid #111111;
    color: #111111 !important;
    padding: 8px 18px;
}

.nav-btn:hover {
    background-color: #111111;
    color: #ffffff !important;
}

/* HERO ACTUALIZADO (Caja a la derecha, rediseño premium y zoom reducido) */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Desplaza la caja a la derecha */
    align-items: center;
    padding: 120px 8% 60px 20px; /* Padding ajustado a la derecha */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/fotoheader.jpg');
    background-position: center center;
    background-size: cover;
    z-index: 1;
    
    /* MEJORAS DE NITIDEZ (SCHERPER) */
    image-rendering: high-quality;
    filter: contrast(1.05) saturate(1.05);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    
    animation: sharpDynamicHeroMotion 18s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 540px; /* Ligeramente más ancha para mejor fluidez del texto */
    width: 100%;
    background: rgba(255, 255, 255, 0.88); /* Efecto cristal más sólido */
    backdrop-filter: blur(12px); /* Mayor desenfoque */
    padding: 50px 40px; /* Más aire interior (rediseño) */
    border-radius: 16px; /* Bordes más redondeados y elegantes */
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); /* Sombra más envolvente */
    text-align: left;
    margin-bottom: 0;
}

.hero-tagline {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a67c52; /* Tono cálido/dorado para hacerlo más premium */
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.15;
    color: #111111;
}

.hero p {
    font-size: 1.05rem; /* Texto un pelín más grande para legibilidad */
    color: #444444;
    margin-bottom: 35px;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

/* Botones */
.btn-primary, .btn-whatsapp, .btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    padding: 14px 28px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: #111111;
    color: #ffffff;
    border-radius: 4px;
}

.btn-whatsapp, .btn-whatsapp-hero {
    background-color: #25d366;
    color: #ffffff;
    border-radius: 4px;
}

.btn-primary:hover, .btn-whatsapp:hover, .btn-whatsapp-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Stats */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 35px 20px;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #111111;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777777;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

section {
    margin-bottom: 90px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666666;
    font-size: 0.95rem;
}

/* Tarjetas de Conceptos / Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #111111;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img {
    transform: scale(1.06);
}

.card-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #aaaaaa;
    margin-bottom: 8px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111111;
}

.service-card p {
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #111111;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #25d366;
}

/* SECCIÓN DE LA FRASE DESTACADA */
.highlight-quote-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    background-color: #fafafa;
    text-align: center;
    gap: 30px;
    margin: 60px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    border-radius: 8px;
}

.highlight-quote-section img {
    width: 32%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    background-color: #fff;
}

.highlight-quote-section h2 {
    width: 32%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: #111;
}

/* ABOUT STORY (OVER ONS) */
.about-story-container { 
    max-width: 1100px; 
    margin: 0 auto 100px auto; 
    padding: 0 20px; 
}

.about-story-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 50px; 
    align-items: start; 
    background: #ffffff; 
    padding: 70px 60px; 
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.04); 
    border: 1px solid #f0f0f0; 
}

.about-story-left h2 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 2.8rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: -1px; 
    line-height: 1.1; 
    color: #111; 
    margin-bottom: 20px; 
}

.about-story-left h2 span { 
    color: #d4af37; 
}

.about-story-badge { 
    display: inline-block; 
    background-color: #111; 
    color: #fff; 
    padding: 8px 16px; 
    border-radius: 30px; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 700; 
    margin-bottom: 25px; 
}

.about-story-left p { 
    color: #666; 
    font-size: 1.05rem; 
    line-height: 1.7; 
}

.about-story-right { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

.story-card-item { 
    background: #faf9f6; 
    padding: 30px; 
    border-radius: 12px; 
    border-left: 4px solid #111; 
    transition: transform 0.3s ease; 
}

.story-card-item:hover { 
    transform: translateY(-3px); 
}

.story-card-item h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: #111; 
    margin-bottom: 12px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.story-card-item p { 
    color: #555; 
    font-size: 0.95rem; 
    line-height: 1.7; 
    margin-bottom: 0; 
    font-weight: 300; 
}

/* Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.image-box {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Secciones Reviews & Socials */
.reviews-grid, .socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card, .social-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card-with-img {
    padding: 0 !important;
    overflow: hidden;
}

.review-img-wrapper {
    width: 100%;
    height: 200px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-chat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.review-card-with-img:hover .review-chat-img {
    transform: scale(1.04);
}

.review-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.stars {
    color: #111111;
    margin-bottom: 10px;
}

.review-quote {
    font-size: 0.9rem;
    color: #333333;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #666666;
}

/* Social Cards */
.social-card {
    text-align: center;
    text-decoration: none;
    color: #111111;
    transition: transform 0.3s ease;
}

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

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: #111111;
    color: #ffffff;
    border-radius: 4px;
}

/* Section Booking */
.booking-banner {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 50px 20px;
}

.booking-banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.booking-banner p {
    color: #666666;
    margin-bottom: 25px;
}

.booking-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #e5e5e5;
    color: #888888;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

/* Zoom muy reducido y suave para no ahogar la imagen */
@keyframes sharpDynamicHeroMotion {
    0% { transform: scale(1) translate(0%, 0%); }
    50% { transform: scale(1.015) translate(-0.5%, -0.5%); }
    100% { transform: scale(1.005) translate(0.5%, 0.2%); }
}

/* =========================================
   NUEVO: DISEÑO DE PÁGINAS DE PRECIOS Y DETALLES (BLANCO Y NEGRO)
========================================= */
.price-page-container {
    max-width: 900px;
    margin: 120px auto 80px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #111;
}

.price-header-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #111;
    padding-bottom: 20px;
    display: inline-block;
}

.price-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-bottom: 50px;
}

.features-list li {
    list-style: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: #111;
}

.price-table-wrapper {
    margin-bottom: 50px;
}

.price-table-title {
    background-color: #111;
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
    font-weight: 700;
    margin-bottom: 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.price-table th, .price-table td {
    padding: 15px 20px;
    border: 1px solid #eaeaea;
    text-align: center;
}

.price-table th {
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.price-table td {
    font-size: 1.1rem;
}

.price-table tr:nth-child(even) {
    background-color: #fafafa;
}

.price-note {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.details-section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin: 60px 0 30px 0;
    font-weight: 700;
    position: relative;
}

.details-section-title::before, .details-section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #eaeaea;
}

.details-section-title::before { left: 0; }
.details-section-title::after { right: 0; }

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.detail-box {
    border: 1px solid #111;
    padding: 25px;
    text-align: center;
    background: #fff;
    border-radius: 4px;
}

.detail-box i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.detail-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-box p, .detail-box ul {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    list-style: none;
}

.conditions-box {
    border-top: 1px solid #111;
    padding-top: 20px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: #555;
}

.conditions-box ul {
    padding-left: 20px;
}

.split-menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* =========================================
   DISEÑO PREMIUM PARA PÁGINAS DE PRECIOS
========================================= */
.premium-menu-wrapper {
    max-width: 900px;
    margin: 140px auto 80px auto;
    background: #ffffff;
    padding: 70px 60px;
    border: 1px solid #eaeaea;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    border-radius: 4px;
    color: #111;
    font-family: 'Inter', sans-serif;
}

.menu-top-label {
    text-align: center;
    letter-spacing: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #111;
}

.menu-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 6px;
    font-weight: 300;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    padding: 20px 0;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.menu-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #444;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.menu-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.menu-feature-item {
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-feature-item i {
    font-size: 1.2rem;
    color: #111;
}

/* Encabezados de Sección (Ej: PRIJZEN) */
.menu-section-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-section-header::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #111;
    z-index: 1;
}

.menu-section-header span {
    position: relative;
    z-index: 2;
    background: #111;
    color: #fff;
    padding: 10px 30px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Filas de Precios */
.menu-prices-container {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.menu-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 12px 0;
    font-size: 1.15rem;
    position: relative;
}

.menu-price-row::after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    border-bottom: 1px dotted #ccc;
    z-index: 1;
}

.menu-price-label, .menu-price-value {
    background: #fff;
    position: relative;
    z-index: 2;
}

.menu-price-label {
    padding-right: 15px;
    font-weight: 500;
    color: #222;
}

.menu-price-value {
    padding-left: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-price-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

/* Cuadrículas de Detalles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.menu-box {
    border: 1px solid #eaeaea;
    padding: 35px 25px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-box:hover {
    border-color: #111;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.menu-box i {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
    display: block;
}

.menu-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111;
}

.menu-box p, .menu-box ul {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    list-style: none;
}

.menu-box ul li {
    position: relative;
    margin-bottom: 5px;
}

/* Divisiones (Para Matcha y Wafel) */
.menu-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.menu-footer-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #eaeaea;
    padding-top: 40px;
    margin-top: 60px;
}

.footer-icon-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.footer-icon-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #111;
}

.footer-icon-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-icon-item p {
    font-size: 0.75rem;
    color: #666;
}

/* =========================================
   SECCIÓN PARASOLES, EXTRAS Y MODAL
========================================= */
#parasols .service-card .card-image-wrapper { 
    background-color: #fcfbf9; 
    padding: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

#parasols .service-card .card-image-wrapper img.card-img { 
    width: 100%; 
    height: 200px; 
    object-fit: contain; 
}

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

.parasol-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.parasol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #d4af37;
}

.parasol-img-wrapper {
    height: 220px;
    background: #fbf9f6;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.parasol-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.parasol-card:hover .parasol-img-wrapper img {
    transform: scale(1.05);
}

.parasol-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.parasol-info p {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.parasol-price-tag {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #a67c52;
    background: #fdf6ee;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Extra Mogelijkheden */
.extras-section {
    margin-top: 60px;
    border-top: 1px solid #eaeaea;
    padding-top: 50px;
}

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

.extra-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.extra-card h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.extra-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

.extra-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
}

.extra-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.extra-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.extra-card:hover .extra-img-wrapper img {
    transform: scale(1.05);
}

.extra-card i {
    display: none;
}

/* Modal Emergente */
.parasol-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.parasol-modal-content {
    background-color: #fbf9f6;
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.parasol-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #111;
    transition: color 0.2s;
    line-height: 1;
}

.parasol-modal-img {
    max-height: 250px;
    margin-bottom: 25px;
    object-fit: contain;
}

.parasol-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.parasol-modal-desc {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.parasol-modal-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #a67c52;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

/* =========================================
   LAS MEJORAS (UX, Animaciones, Reseñas, Footer)
========================================= */

/* Animaciones de Entrada (Fade In) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tarjetas de Reseñas en Texto */
.text-review-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    text-align: center;
}
.text-review-card i.fa-quote-left {
    font-size: 2rem;
    color: #f4f4f4;
    position: absolute;
    top: 20px;
    left: 20px;
}
.review-stars {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1rem;
}
.review-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.review-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 1px;
}

/* Footer Legal y Profesional */
.premium-footer {
    background-color: #111;
    color: #fff;
    padding: 70px 20px 30px 20px;
    font-family: 'Inter', sans-serif;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #d4af37;
}
.footer-col p, .footer-col a {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: #fff;
}
.footer-col i {
    color: #d4af37;
    width: 15px;
    text-align: center;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 25px;
    color: #666;
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

/* =========================================
   BOTÓN VOLVER Y GALERÍA DE FOTOS (SHOWCASE)
========================================= */
.back-to-menu {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    margin-bottom: 30px;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.back-to-menu:hover {
    color: #111;
    transform: translateX(-5px);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.showcase-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.showcase-img:hover {
    transform: translateY(-5px);
}

/* =========================================
   MEDIA QUERIES GLOBALES (UNIFICADO)
========================================= */
@media (max-width: 900px) { 
    .about-story-grid { 
        grid-template-columns: 1fr; 
        padding: 40px 25px; 
        gap: 30px; 
    } 
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
    .logo-img {
        max-height: 48px;
        width: auto;
    }
    .hero-logo-img {
        max-width: 150px;
        width: auto;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ajustes Hero Móvil (Se centra la caja en dispositivos pequeños) */
    .hero {
        align-items: flex-end;
        justify-content: center;
        padding: 100px 20px 40px 20px; 
    }
    .hero-bg { 
        background-position: center 20%; 
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 35px 20px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-cta-group, .booking-cta-group {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    .btn-primary, .btn-whatsapp, .btn-whatsapp-hero {
        width: 100%;
    }
    
    /* Ajustes Highlight Quote */
    .highlight-quote-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    .highlight-quote-section img {
        width: 100%;
        height: 280px;
    }
    .highlight-quote-section h2 {
        width: 100%;
        height: auto;
    }
    
    /* Ajustes Páginas Secundarias */
    .split-menu-container { 
        grid-template-columns: 1fr; 
    }
    .details-section-title::before, .details-section-title::after { 
        width: 15%; 
    }
    .premium-menu-wrapper { 
        padding: 40px 20px; 
        margin-top: 100px; 
    }
    .menu-title { 
        font-size: 2rem; 
    }
    .menu-split { 
        grid-template-columns: 1fr; 
    }
    .menu-price-row { 
        font-size: 1rem; 
    }
}
