/* =====================================
   VARIABLES GLOBALES
   ===================================== */
:root {
    --verde: #0C2B46;
    --verde-oscuro: #0d2b4a;
    --verde-hover: #153732;
    --dorado: #ff7301c9;
    --dorado-oscuro: #F18833;
    --dorado-hover: #F18833;
    --crema: #f7f3eb;
    --gris: #777;
    --gris-claro: #e0e0e0;
    --blanco: #ffffff;
    --negro: #222222;
    --sombra: 0 12px 30px rgba(0, 0, 0, 0.08);
    --sombra-fuerte: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --container-max-width: 1400px;
    --transition: all 0.8s ease;
    --exito: #00b2ee;
}

/* =====================================
   RESET Y BASE
   ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--crema);
    color: var(--negro);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =====================================
   UTILIDADES
   ===================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 6%;
}

.section {
    padding: 100px 6%;
}

.section-light {
    background: var(--blanco);
}

.section-dark {
    background: var(--verde);
    color: var(--blanco);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--dorado);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--verde);
}

.section-dark .section-title h2 {
    color: var(--blanco);
}

/* =====================================
   BOTONES
   ===================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--dorado);
    color: var(--blanco);
}

.btn-primary:hover {
    background: var(--dorado-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--blanco);
    color: var(--blanco);
}

.btn-secondary:hover {
    background: var(--blanco);
    color: var(--verde);
}

.btn-outline {
    border: 2px solid var(--dorado);
    color: var(--dorado);
    background: transparent;
}

.btn-outline:hover {
    background: var(--dorado);
    color: var(--blanco);
}

/* =====================================
   NAVBAR 
   ===================================== */
.navbar {
    background: hsla(53, 100%, 95%, 0.774);
    box-shadow: var(--sombra);
    position: sticky;
    top: 0;
    z-index: 888;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0.8rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--verde);
    font-family: 'Cormorant Garamond', serif;
}

.logo-img {
    max-height: 90px;
    width: auto;
    display: block;
}

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

@media (max-width: 450px) {
    .logo-img {
        max-height: 60px;
    }
}

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

.nav-links a {
    text-decoration: none;
    color: var(--negro);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--dorado);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dorado);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--verde);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--blanco);
        flex-direction: column;
        gap: 0;
        padding: 0.8rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 0.8rem;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links .btn-pedir {
        margin: 0.8rem auto;
        width: fit-content;
    }
    
    .nav-links a::after {
        display: none;
    }
}

/* Scroll margin */
.menu-hero,
.pedir-hero,
.hero {
    scroll-margin-top: 80px;
}

/* =====================================
   HERO
   ===================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(77, 44, 6, 0.315);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--blanco);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.hero h1 {
    font-size: 5rem;
    max-width: 900px;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease;
    color:#0d2b4a;
    background-color: #ffffffd5;
    padding: 5px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    color:#0d2b4a;
    background-color: #ffffffd5;
    padding: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* =====================================
   FEATURES
   ===================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--blanco);
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-fuerte);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--verde);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gris);
}

/* =====================================
   CARDS
   ===================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.card {
    background: var(--blanco);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-fuerte);
}

.card-image {
    height: 260px;
    overflow: hidden;
}

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

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

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.8rem;
    color: var(--verde);
    margin-bottom: 10px;
}

.card-description {
    color: var(--gris);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--dorado);
    font-size: 1.8rem;
    font-weight: bold;
}

/* ====================== botones tarjetas ===========*/

.btn-add {
    width: 100%;
    background: var(--verde-oscuro); /* Cambiado al azul marino profundo de tu marca */
    color: var(--blanco);
    border: 1px solid rgba(255, 255, 255, 0.349);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Le da un toque más formal y limpio */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(10, 29, 55, 0.15);
}

.btn-add i {
    color: var(--dorado); 
    font-size: 1.1rem;
}

.btn-add:hover {
    background: var(--verde-hover); /* Cambia suavemente al verde de tu logo al pasar el cursor */
    border-color:var(--gris);
}

/* =====================================
   GALERÍA
   ===================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    border-radius: 16px;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--sombra);
}

/* =====================================
   TESTIMONIOS
   ===================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--blanco);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--gris);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--verde);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--dorado);
}

/* =====================================
   CATEGORÍAS
   ===================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    text-decoration: none;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-fuerte);
}

.category-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.category-card h3 {
    padding: 20px;
    text-align: center;
    color: var(--verde);
    font-size: 1.3rem;
    font-weight: 500;
}

/* =====================================
   CONTACTO (OPTIMIZADO Y RESPONSIVO)
   ===================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Una sola columna por defecto (Móvil) */
    gap: 30px;
    background: white;
    border-radius: var(--radius);
    padding: 20px; /* Reducido en móvil para evitar desborde */
    box-shadow: var(--sombra);
    width: 100%;
    box-sizing: border-box;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 5px;
    border-bottom: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
}

.info-card i {
    font-size: 1.6rem;
    color: var(--dorado);
    width: 40px;
    flex-shrink: 0; /* Evita que el icono se aplaste en pantallas chicas */
}

.info-card h4 {
    color: var(--verde);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--gris);
    line-height: 1.4;
    font-size: 0.95rem;
    word-break: break-word; /* Evita que textos largos rompan el contenedor */
}

/* Contenedor derecho: Mapa + Botones */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Contenedor estético del mapa */
.contact-map {
    width: 100%;
    height: 250px; /* Altura perfecta para celulares */
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
}

.contact-map iframe {
    display: block; 
    width: 100% !important;
    height: 100% !important;
}

/* Grupo de botones */
.action-buttons {
    display: flex;
    flex-direction: column; /* Uno abajo del otro en móvil */
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Forzar que los botones se adapten al 100% en pantallas pequeñas */
.action-buttons .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
    white-space: normal; /* Si el texto es largo, salta de línea en vez de salirse */
}

/* =====================================
   ADAPTACIÓN PARA PANTALLAS GRANDES
   ===================================== */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr; 
        padding: 40px;
        gap: 40px;
    }

    .contact-map {
        height: 300px; 
    }

    .action-buttons {
        flex-direction: row; 
        justify-content: center;
    }

    .action-buttons .btn {
        width: auto !important; 
    }
}

/* =====================================
   FOOTER OPTIMIZADO - MÁS COMPACTO
   ===================================== */
.footer {
    background: var(--verde);
    color: var(--blanco);
    padding: 10px 3% 1px;
}

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

/* Columna de marca */
.footer-brand {
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--dorado);
}

.footer-brand p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-brand small {
    opacity: 0.7;
    font-size: 0.85rem;
    line-height: 1.5;
    display: block;
}

/* Columna de enlaces - alineación izquierda */
.footer-links {
    text-align: center;
    justify-self: center;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dorado);
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-links ul li {
    margin-bottom: 0;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--dorado);
    padding-left: 5px;
}

/* Columna social - centrada horizontalmente pero alineada arriba */
.footer-social {
    text-align: center;
}

.footer-social h4 {
    text-align: center;
}

.social-icons {
    display: flex;
    margin-top: 12px;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 145, 0, 0.39);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--blanco);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--dorado);
    transform: translateY(-3px);
}

/* Línea divisoria */
.footer-bottom {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid rgb(255, 255, 255);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* =====================================
   RESPONSIVE PARA FOOTER
   ===================================== */
@media (max-width: 768px) {
    .footer {
        padding: 40px 5% 20px;
    }
    
    .footer-grid {
        gap: 35px;
        margin-bottom: 25px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
        justify-self: auto;
    }
    
    .footer-social h4 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 30px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}
/* =====================================
   NOTIFICACIONES
   ===================================== */
.notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--verde);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    z-index: 3000;
    animation: slideUp 0.3s ease;
    box-shadow: var(--sombra);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.notification i {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .notification {
        font-size: 0.85rem;
        padding: 10px 16px;
        white-space: normal;
        text-align: center;
        max-width: 90%;
    }
}

/* =====================================
   CARRITO FLOTANTE
   ===================================== */
#cartButton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--verde);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
}

#cartButton:hover {
    transform: scale(1.05);
    background: var(--verde-hover);
}

#cartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--dorado);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

#cartPanel {
    position: fixed;
    right: -420px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

#cartPanel.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--verde);
    color: white;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close-cart {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--verde);
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--dorado);
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 0.8rem;
}

.cart-item-subtotal {
    margin-top: 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--dorado);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background: var(--dorado-hover);
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: var(--gris);
}

/* =====================================
   ANIMACIONES
   ===================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =====================================
   RESPONSIVE
   ===================================== */
@media (max-width: 992px) {
    .section {
        padding: 80px 5%;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 5%;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 250px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .category-grid {
        gap: 20px;
    }
    
    .category-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 4%;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    #cartButton {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    #cartPanel {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        padding: 20px;
    }
    
    .info-card {
        gap: 15px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================
   PRINT
   ===================================== */
@media print {
    .navbar,
    .hero-buttons,
    .footer,
    .menu-toggle,
    #cartButton,
    #cartPanel {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .section {
        padding: 20px;
    }
}




.loading-state,
.error-state,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fdfbf7;
    border-radius: 12px;
    border: 1px dashed var(--gris-claro);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    background: var(--verde);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-block:hover {
    background: var(--dorado);
    transform: scale(1.02);
}

@media (max-width: 480px) {
    .card-calculator {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .personas-input {
        width: 100%;
    }
} 

/** ========== hero imagen estatica agregada al final remplaza las secciones de video ===========>

/* ===== Hero base ===== */
.hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco, #fff);
  overflow: hidden; /* para recortar el vídeo */
}

/* Overlay común (se coloca encima del fondo) */
.hero__overlay {
  position: absolute;
  inset: 0; /* top/left/right/bottom: 0 */
  background: rgba(233, 135, 8, 0.315);
  z-index: 1;
}

/* Contenido siempre por encima del overlay */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero__logo {
  width: 160px;
  margin: 0 auto 15px;
  display: block;
}

.hero__content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.hero__content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== Variante imagen ===== */
.hero--image {
  background-size: cover;
  background-position: center;
  /* la imagen se asigna mediante la variable CSS en el estilo inline */
  background-image: var(--hero-bg, none);
}

/* ===== Variante vídeo ===== */
.hero--video .hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0; /* detrás del overlay */
}

@media (max-width: 480px) {
.hero__logo {
  width: 100px;
  margin: 0 auto 15px;
  display: block;
}

}