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

/* CSS Variables */
:root {
    --color-bg: #FFFFF0;
    --color-marfil: #F7F3DE;
    --color-verde-suave: #F0F2DB;
    --color-lima: #C1C846;
    --color-oliva: #747823;
    --color-oliva-profundo: #525519;
    --color-white: #FFFFFF;
    --color-dark: #2A2C0D;
    --color-text: #3D401C;
    --color-text-light: #6E733D;
    --color-accent: #E05A47;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(82, 85, 25, 0.08);
    --box-shadow-hover: 0 10px 30px rgba(82, 85, 25, 0.15);
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-oliva-profundo);
    font-weight: 600;
}

a {
    color: var(--color-oliva-profundo);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-oliva);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Grid */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Header & Banner */
.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(193, 200, 70, 0.2);
}

.banner-container {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
    background-color: var(--color-verde-suave);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(82, 85, 25, 0.1) 0%, rgba(82, 85, 25, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 20px;
    text-align: center;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Top Navigation Menu */
.top-nav-bar {
    background-color: var(--color-verde-suave);
    border-bottom: 4px solid var(--color-lima);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-oliva-profundo);
    cursor: pointer;
    padding: 5px;
}

.top-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.top-menu a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-oliva-profundo);
    padding: 12px 10px;
    position: relative;
    letter-spacing: 0.5px;
}

.top-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    background-color: var(--color-oliva);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.top-menu a:hover::after,
.top-menu li.active a::after {
    transform: scaleX(1);
}

.top-menu li.active a {
    color: var(--color-oliva);
    font-weight: 600;
}

/* Main Area Layout */
.main-content-layout {
    flex: 1;
    padding: 40px 0;
}

.layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar Styling */
.sidebar-container {
    background-color: var(--color-verde-suave);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(193, 200, 70, 0.15);
    height: fit-content;
}

.sidebar-title {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-lima);
    color: var(--color-oliva-profundo);
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.sidebar-menu a:hover,
.sidebar-menu li.active a {
    background-color: var(--color-lima);
    color: var(--color-oliva-profundo);
    transform: translateX(5px);
}

/* Contact/WhatsApp Widget in Sidebar */
.sidebar-widget {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(116, 120, 35, 0.3);
    text-align: center;
}

.widget-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.whatsapp-button-sidebar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.whatsapp-button-sidebar:hover {
    background-color: #128C7E;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-qr-wrapper {
    margin-top: 15px;
    background: var(--color-white);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.05);
}

.whatsapp-qr-wrapper img {
    width: 120px;
    height: 120px;
}

/* Content Area */
.content-card {
    background-color: var(--color-marfil);  /* #F7F3DE — marfil suave, no blanco pleno */
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.02);
}

/* Botanical line divider */
.botanical-divider {
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M0,10 Q25,0 50,10 T100,10" fill="none" stroke="%23747823" stroke-width="1.5"/><circle cx="25" cy="5" r="2" fill="%23C1C846"/><circle cx="75" cy="15" r="2" fill="%23C1C846"/></svg>');
    background-size: 100px 20px;
    background-repeat: repeat-x;
    margin: 25px 0;
    opacity: 0.6;
}

.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 2.2rem;
    color: var(--color-oliva-profundo);
    position: relative;
    padding-bottom: 12px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-lima);
    border-radius: 2px;
}

.page-bajada {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-top: 10px;
    font-weight: 300;
}

.page-body {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
}

.page-body p {
    margin-bottom: 20px;
}

/* Blocks styling */
.block-item {
    margin-bottom: 40px;
}

.block-item:last-child {
    margin-bottom: 0;
}

.block-text-image {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: center;
}

.block-image-wrapper {
    background-color: var(--color-verde-suave);
    border-radius: var(--border-radius);
    padding: 10px;
    border: 1px solid rgba(193, 200, 70, 0.2);
}

.block-image-wrapper img {
    border-radius: calc(var(--border-radius) - 4px);
    width: 100%;
}

/* Category Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: transparent;  /* sin fondo en la celda */
    border-radius: 0;
    border: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: var(--transition-smooth);
    position: relative;
}

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

.product-image-container {
    display: grid;
    grid-template-areas: "stack";  /* imagen y logo comparten la misma celda */
    width: 100%;
    overflow: visible;
    cursor: zoom-in;
}

.product-image-container > * {
    grid-area: stack;
}

.product-logo-overlay {
    align-self: start;
    justify-self: end;
    margin: 5px 5px 0 0;
    width: 33%;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 7px #fff) drop-shadow(0 0 14px rgba(255,255,255,0.85)) drop-shadow(0 0 22px rgba(255,255,255,0.5));
    opacity: 0.95;
    z-index: 2;
}

.product-image {
    display: block;
    width: 100%;
    height: auto;        /* altura natural, sin recorte */
    /* Efecto fotografía clásica — solo en la foto, no en el contenedor */
    border: 5px solid #ffffff;
    box-shadow: -5px 5px 14px rgba(0, 0, 0, 0.32);
    transition: var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.04);
    box-shadow: -7px 7px 20px rgba(0, 0, 0, 0.42);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-code {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-oliva-profundo);
    margin-bottom: 12px;
    line-height: 1.3;
    flex: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(193, 200, 70, 0.1);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-oliva);
}

.product-price.consultar {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    font-weight: 500;
}

.product-action-btn {
    background-color: var(--color-verde-suave);
    color: var(--color-oliva-profundo);
    border: 1px solid var(--color-lima);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.product-card:hover .product-action-btn {
    background-color: var(--color-lima);
    color: var(--color-oliva-profundo);
}

/* Category Intro Banner */
.category-intro {
    background-color: var(--color-verde-suave);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(193, 200, 70, 0.2);
    overflow: hidden; /* clearfix para el float */
}

.category-intro-img {
    float: right;
    width: 220px;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 4px 0 16px 28px;
}

.category-intro-info h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.category-intro-info p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.65;
}

.category-intro-info p br + br {
    display: none; /* suprime el segundo salto de cada párrafo doble */
}

/* Forms styling */
.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.alert-danger {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-oliva-profundo);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(116, 120, 35, 0.3);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-oliva);
    box-shadow: 0 0 0 3px rgba(116, 120, 35, 0.1);
}

.form-error-msg {
    color: var(--color-accent);
    font-size: 0.8rem;
    margin-top: 5px;
}

.btn-primary {
    background-color: var(--color-oliva-profundo);
    color: var(--color-white);
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--color-oliva);
    transform: translateY(-1px);
}

/* Contact Grid & Map */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--color-oliva);
    margin-top: 3px;
}

.info-text strong {
    display: block;
    color: var(--color-oliva-profundo);
}

.static-map-wrapper {
    margin-top: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(193, 200, 70, 0.2);
}

/* Footer Styling */
.site-footer {
    background-color: var(--color-oliva-profundo);
    color: var(--color-marfil);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-about {
    color: #D2D5B8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--color-lima);
    width: fit-content;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu a {
    color: #D2D5B8;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--color-white);
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #D2D5B8;
}

.footer-contact-list strong {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #A4A78F;
}

/* Responsive Styles (Mobile First) */
@media (max-width: 900px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-container {
        order: 2; /* Sidebar goes below content on smaller screens */
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .banner-container {
        height: 100px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-subtitle {
        font-size: 0.85rem;
    }
    
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
        margin-bottom: 10px;
    }
    
    .top-menu {
        display: none; /* JS will toggle this */
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }
    
    .top-menu.show {
        display: flex;
    }
    
    .top-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(193, 200, 70, 0.1);
    }
    
    .top-menu a::after {
        display: none;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .block-text-image {
        grid-template-columns: 1fr;
    }
    
    .category-intro-img {
        float: none;
        display: block;
        width: 160px;
        max-height: none;
        margin: 0 auto 20px;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-qr-wrapper {
        display: none; /* Hide QR in mobile as requested */
    }
}

/* Lightbox Modal (Image Viewer) */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
}

.lightbox-img {
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 4px;
    border: 4px solid var(--color-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-logo-overlay {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 33%;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 7px #fff) drop-shadow(0 0 14px rgba(255,255,255,0.85)) drop-shadow(0 0 22px rgba(255,255,255,0.5));
    opacity: 0.95;
    z-index: 2;
}

.lightbox-caption {
    width: 100%;           /* mismo ancho que la imagen (flex lo acota) */
    color: var(--color-white);
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    word-break: break-word;
    white-space: normal;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--color-lima);
}

/* ── Headings de bloque de contenido ─────────────────────────────────────── */

.block-h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-oliva);
    border-left: 4px solid var(--color-lima);
    padding: 4px 0 4px 12px;
    margin: 22px 0 10px;
    background: linear-gradient(to right, rgba(193,200,70,0.12), transparent);
}

.block-h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    color: var(--color-oliva);
    border-bottom: 2px solid var(--color-lima);
    padding-bottom: 4px;
    margin: 18px 0 8px;
}

.block-h4 {
    font-family: var(--font-heading);
    font-size: 0.97rem;
    color: var(--color-oliva-profundo);
    font-weight: 700;
    margin: 14px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.block-important {
    background-color: #fef9e7;
    border-left: 4px solid var(--color-oliva);
    padding: 12px 16px;
    margin: 14px 0;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
}

/* ── Bloque imagenes_pie ──────────────────────────────────────────────────── */

.block-imagenes-pie {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.pie-img-item img {
    max-height: 96px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.pie-img-item a:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* ── Página Dónde Estamos ─────────────────────────────────────────────────── */

.donde-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

/* Foto del local */
.donde-local-foto {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.donde-local-foto a { display: block; }

.donde-local-foto img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #fff;
    box-shadow: -4px 4px 14px rgba(0,0,0,0.22);
    transition: var(--transition-smooth);
}

.donde-local-foto img:hover { transform: scale(1.02); }

/* Datos de contacto */
.donde-datos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.donde-dato {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.donde-dato i {
    color: var(--color-oliva);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.donde-dato div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.donde-dato strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-light);
}

.donde-dato span,
.donde-dato a {
    color: var(--color-text);
    text-decoration: none;
}

.donde-dato a:hover { color: var(--color-oliva); text-decoration: underline; }

/* Horario destacado */
.donde-horario {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-oliva-profundo);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 18px 22px;
}

.donde-horario i {
    font-size: 1.8rem;
    color: var(--color-lima);
    flex-shrink: 0;
}

.donde-horario div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.horario-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-lima);
    font-weight: 600;
}

.horario-valor {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

/* Mapa */
.donde-mapa { position: relative; }

.donde-mapa-link {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.donde-mapa-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.donde-mapa-link:hover img { transform: scale(1.03); }

.donde-mapa-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(82,85,25,0.85));
    color: #fff;
    text-align: center;
    padding: 28px 16px 16px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.donde-mapa-link:hover .donde-mapa-overlay {
    background: linear-gradient(transparent, rgba(82,85,25,0.95));
}

@media (max-width: 768px) {
    .donde-layout {
        grid-template-columns: 1fr;
    }
}

/* ── Página de Casamientos ────────────────────────────────────────────────── */

.casamiento-hero {
    margin: 0 0 28px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-marfil);
    border: 1px solid rgba(193, 200, 70, 0.2);
}

.casamiento-hero a {
    display: block;
}

.casamiento-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: transform 0.4s ease;
}

.casamiento-hero:hover .casamiento-img {
    transform: scale(1.015);
}

.casamiento-desc {
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
}

.casamiento-desc p {
    margin-bottom: 14px;
}

.casamiento-servicios {
    background: var(--color-verde-suave);
    border-left: 4px solid var(--color-lima);
    border-radius: 0 8px 8px 0;
    padding: 16px 22px;
    margin-bottom: 28px;
    font-size: 0.97rem;
    color: var(--color-oliva-profundo);
    line-height: 1.8;
}

.casamiento-servicios p {
    margin: 0;
}

.casamiento-servicios p + p {
    margin-top: 4px;
}

.casamiento-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px;
}

.btn-casamiento-email,
.btn-casamiento-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-casamiento-email {
    background: var(--color-oliva-profundo);
    color: var(--color-white);
}

.btn-casamiento-email:hover {
    background: var(--color-oliva);
    transform: translateY(-2px);
    color: var(--color-white);
}

.btn-casamiento-wa {
    background: #25D366;
    color: #fff;
}

.btn-casamiento-wa:hover {
    background: #1ebe5c;
    transform: translateY(-2px);
    color: #fff;
}

.btn-casamiento-wa .fa-whatsapp,
.btn-casamiento-email .fa-envelope {
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .casamiento-cta {
        flex-direction: column;
    }
    .btn-casamiento-email,
    .btn-casamiento-wa {
        width: 100%;
        justify-content: center;
    }
}
