/* ============================================
   VARIABLES Y BASE
============================================ */
:root {
    --dorado: #bc9355;
    --dorado-claro: #d4af7a;
    --negro: #0a0a0a;
    --negro-suave: #1a1a1a;
    --blanco: #ffffff;
    --hueso: #fdfdfd;
    --verde: #bcd6a8;
    --gris: #888;
    --font-main: "Copperplate", "Copperplate Gothic Light", serif;

    --bakes-crema: #f5ede0;
    --bakes-beige: #e8dcc4;
    --bakes-tierra: #8b6f4e;
    --bakes-marron: #5c4530;
    --bakes-verde-salvia: #a8a682;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--blanco);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   ANIMACIONES FADE-IN
============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -15px); }
    60% { transform: translate(-50%, -8px); }
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: #000;
    height: 90px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo-container img { height: 65px; width: auto; }

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

.nav-links li a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
}
.nav-links li a:hover { color: var(--dorado); }

.nav-links li a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--dorado);
    transition: width 0.3s ease;
}
.nav-links li a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--dorado);
    padding: 10px 22px;
    border-radius: 50px;
    color: #000 !important;
    font-weight: bold;
}
.nav-cta:hover {
    background: var(--dorado-claro);
    color: #000 !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    color: var(--verde-oscuro);
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 8px;
    font-size: 25px;
    cursor: pointer;
    z-index: 2001;
}

.navbar-logo {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}
.navbar-logo.show-logo {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================================
   HERO - LOGO PROTAGONISTA
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('img/entradaocampo.webp') center center / cover no-repeat;
    background-attachment: scroll;    /* ← confirma que está en scroll */
    will-change: auto;                /* ← AÑADE esto */
    transform: translateZ(0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 20px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    animation: logoEntrance 1.2s ease-out;
}

.hero-logo {
    max-width: 520px;
    width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0px 15px 35px rgba(0,0,0,0.7));
}
.hero-tagline {
    visibility: hidden;
}

@keyframes logoEntrance {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.4vw, 1.8rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 45px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    color: #f5f5f5;
    font-weight: 400;
    animation: fadeInUp 1.4s ease-out;
    width: 100%;
    text-align: center;
}

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

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1.6s ease-out;
    width: 100%;
}

.btn-hero {
    min-width: 180px;
    height: 52px;
    padding: 0 32px;
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    animation: fadeInUp 1.8s ease-out;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.social-icon:hover {
    background: var(--dorado);
    color: #000;
    transform: translateY(-4px);
    border-color: var(--dorado);
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dorado);
    font-size: 22px;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* ============================================
   BOTONES GENERALES
============================================ */
.btn {
    background: linear-gradient(135deg, #bcd6a8 0%, #a4bd91 100%);
    color: #000 !important;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: none;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
    pointer-events: none;
}
.btn:hover::after { left: 100%; }
.btn:hover { transform: translateY(-3px); filter: brightness(1.08); box-shadow: 0 8px 25px rgba(0,0,0,0.4); }

.btn-reserve, .btn-call { background: linear-gradient(135deg, #bcd6a8 0%, #a4bd91 100%); }
.btn i { font-size: 14px; }

/* ============================================
   TÍTULOS DE SECCIÓN
============================================ */
.section-subtitle {
    display: block;
    color: var(--dorado);
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: bold;
}

section > h2,
.about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--negro);
    position: relative;
    display: inline-block;
}

section > h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--dorado);
    margin: 15px auto 0;
}

.gold { color: var(--dorado); }

/* ============================================
   SECCIÓN NOSOTROS
============================================ */
.about-section {
    padding: 100px 5%;
    background: #fafafa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2::after { margin-left: 0; }
.about-text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}
.stat h3 {
    color: var(--dorado);
    font-size: 2.5rem;
    margin-bottom: 5px;
}
.stat p {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* ============================================
   ESPECIALIDADES
============================================ */
.specialties {
    padding: 100px 5%;
    text-align: center;
    background: white;
}

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

.item {
    background: white;
    padding-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(188,147,85,0.25);
}

.item-img-wrap {
    overflow: hidden;
    height: 260px;
}
.item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.item:hover .item-img-wrap img { transform: scale(1.1); }

.item h3 {
    padding: 25px 20px 10px;
    color: var(--negro);
    letter-spacing: 2px;
    font-size: 1.1rem;
}
.item p {
    padding: 0 25px;
    color: #777;
    font-size: 14px;
}

/* ============================================
   OCAMPO BAKES TEASER - ESTILO BOHO/NATURAL
============================================ */
.bakes-teaser {
    padding: 100px 5%;
    background: 
        linear-gradient(135deg, rgba(245,237,224,0.95) 0%, rgba(232,220,196,0.95) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%238b6f4e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bakes-teaser::before,
.bakes-teaser::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}
.bakes-teaser::before {
    background: var(--bakes-tierra);
    top: -100px;
    left: -100px;
}
.bakes-teaser::after {
    background: var(--bakes-verde-salvia);
    bottom: -100px;
    right: -100px;
}

.bakes-teaser-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.bakes-teaser-badge {
    display: inline-block;
    background: var(--bakes-marron);
    color: var(--bakes-crema);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(92,69,48,0.25);
}

.bakes-teaser-logo {
    max-width: 180px;
    width: 50%;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 15px 40px rgba(92,69,48,0.2);
    margin: 0 auto 30px;
    animation: gentleFloat 5s ease-in-out infinite;
}

.bakes-teaser-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--bakes-marron);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.bakes-teaser-title em {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    color: var(--bakes-tierra);
    font-style: normal;
    text-transform: none;
    font-size: 1.1em;
    letter-spacing: 0;
    display: inline-block;
    transform: rotate(-3deg);
    margin-left: 10px;
}

.bakes-teaser-line {
    width: 60px;
    height: 2px;
    background: var(--bakes-tierra);
    margin: 0 auto 25px;
}

.bakes-teaser-text {
    color: var(--bakes-marron);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}

.btn-bakes-teaser {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bakes-marron);
    color: var(--bakes-crema) !important;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2.5px;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(92,69,48,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.btn-bakes-teaser::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}
.btn-bakes-teaser:hover::before { left: 100%; }
.btn-bakes-teaser:hover {
    transform: translateY(-4px);
    background: var(--bakes-tierra);
    box-shadow: 0 15px 40px rgba(92,69,48,0.5);
}
.btn-bakes-teaser i { transition: transform 0.3s; }
.btn-bakes-teaser:hover i { transform: translateX(6px); }

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   GALERÍA
============================================ */
.gallery-section {
    padding: 100px 5%;
    text-align: center;
    background: var(--negro);
    color: white;
}
.gallery-section h2 { color: white; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover img { transform: scale(1.15); filter: brightness(0.5); }
.gallery-item:hover::after { opacity: 1; }

/* ============================================
   TESTIMONIOS
============================================ */
.testimonials-section {
    padding: 100px 5%;
    text-align: center;
    background: #fafafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.testimonial {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    border-top: 4px solid var(--dorado);
}
.testimonial:hover { transform: translateY(-8px); }

.stars {
    color: #f5c518;
    margin-bottom: 20px;
    font-size: 18px;
}
.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial h4 {
    color: var(--dorado);
    letter-spacing: 2px;
    font-size: 14px;
}

/* ============================================
   CONTACTO
============================================ */
.contact-section {
    padding: 100px 5%;
    text-align: center;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: left;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-block {
    background: #fafafa;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.info-block:hover {
    border-bottom-color: var(--dorado);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.info-block i {
    font-size: 28px;
    color: var(--dorado);
    margin-bottom: 15px;
}
.info-block h4 {
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--negro);
}
.info-block p, .info-block a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
}
.info-block a:hover { color: var(--dorado); }

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================================
   CTA FINAL
============================================ */
.final-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/entradaocampo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;  /* ← scroll en lugar de fixed */
    padding: 120px 5%;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.final-cta-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--dorado);
    margin: 15px auto 0;
}
.final-cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ddd;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: #000;
    color: white;
    padding: 70px 5% 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #222;
}

.footer-col h4 {
    color: var(--dorado);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
}
.footer-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}
.footer-social a:hover {
    background: var(--dorado);
    color: #000;
    border-color: var(--dorado);
    transform: translateY(-3px);
}

.footer-col ul { list-style: none; }
.footer-col ul li {
    margin-bottom: 12px;
    color: #888;
    font-size: 14px;
}
.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--dorado); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i {
    color: var(--dorado);
    margin-top: 4px;
    width: 16px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #222;
    padding-bottom: 10px;
}
.footer-hours li span:first-child {
    color: var(--dorado);
    letter-spacing: 1px;
    font-size: 13px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p {
    color: #666;
    font-size: 12px;
    letter-spacing: 1px;
}
.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    margin-left: 20px;
    transition: color 0.3s;
}
.footer-legal a:hover { color: var(--dorado); }

/* ============================================
   BOTÓN WHATSAPP FLOTANTE
============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.whatsapp-btn::before {
    content: "";
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { opacity: 0; }
}

.whatsapp-btn .tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}
.whatsapp-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   BOTÓN UBER EATS FLOTANTE
============================================ */
.uber-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #06C167;
}
.uber-float-btn img { width: 32px; height: auto; }
.uber-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.uber-float-btn::before {
    content: "";
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(6,193,103,0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}
.uber-float-btn .tooltip {
    position: absolute;
    left: 80px;
    background: white;
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}
.uber-float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   PÁGINA RESERVA
============================================ */
.reserva-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 50%, #0a0a0a 100%);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.reserva-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.reserva-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}
.reserva-shape.s1 {
    width: 500px; height: 500px;
    background: var(--dorado);
    top: -200px; right: -150px;
}
.reserva-shape.s2 {
    width: 400px; height: 400px;
    background: var(--verde);
    bottom: -150px; left: -150px;
}

.reserva-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reserva-header-content {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.gold-subtitle { color: var(--dorado) !important; }

.reserva-header-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 15px 0 25px;
    color: white;
}
.reserva-header-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--dorado);
    margin: 20px auto 0;
}

.reserva-intro {
    color: #bbb;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 1px;
}

.dish-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid var(--dorado);
    position: relative;
    margin-bottom: 60px;
}

.dish-header {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid var(--dorado);
}
.dish-header i {
    color: var(--dorado);
    font-size: 24px;
}
.dish-header h3 {
    color: white;
    letter-spacing: 3px;
    font-size: 16px;
    margin: 0;
}

.dish-container {
    padding: 20px;
    background: #ffffff;
    min-height: 650px;
    position: relative;
}

.dish-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: #999;
    font-family: Arial, sans-serif;
}
.dish-loader p {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--dorado);
    font-weight: bold;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--dorado);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#hors-hydra-a43118fa-76da-4202-befe-baa74269a8a5 {
    width: 100% !important;
    min-height: 650px !important;
    position: relative;
    z-index: 2;
}

#hors-hydra-a43118fa-76da-4202-befe-baa74269a8a5 iframe {
    width: 100% !important;
    min-height: 650px !important;
    border: none !important;
    border-radius: 10px;
    background: white !important;
    display: block !important;
}

.reserva-info-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.info-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(188,147,85,0.2);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--dorado), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.info-card:hover::before { transform: scaleX(1); }
.info-card:hover {
    border-color: var(--dorado);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(188,147,85,0.2);
}

.info-card i {
    font-size: 32px;
    color: var(--dorado);
    margin-bottom: 15px;
}

.info-card h4 {
    color: var(--dorado);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.info-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}
.info-card p strong {
    color: white;
    letter-spacing: 1px;
}

.info-link {
    display: inline-block;
    color: var(--dorado);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 10px 20px;
    border: 1px solid var(--dorado);
    border-radius: 50px;
    margin-top: 10px;
    transition: all 0.3s;
}
.info-link:hover {
    background: var(--dorado);
    color: #000;
}

/* ============================================
   HERO - EFECTO TOLDO (reemplaza el bloque .bakes-hero existente)
============================================ */
 
.bakes-hero {
    min-height: 90vh;
    background:
        repeating-linear-gradient(
            -45deg,
            #f8e88f 0px,
            #f8e88f 40px,
            #ffffff 40px,
            #ffffff 80px
        );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}
 
/* Capa suave encima para que no sea tan "crudo" y quede más elegante */
.bakes-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
    z-index: 1;
}
 
.bakes-hero-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
 
/* Formas flotantes adaptadas al nuevo fondo */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(40px);
    animation: floatShape 8s ease-in-out infinite;
}
.floating-shape.shape-1 {
    width: 300px; height: 300px;
    background: #f9d423;
    top: -100px; left: -100px;
}
.floating-shape.shape-2 {
    width: 400px; height: 400px;
    background: #f9d423;
    bottom: -150px; right: -150px;
    animation-delay: 2s;
}
.floating-shape.shape-3 {
    width: 200px; height: 200px;
    background: #e6c200;
    top: 40%; right: 20%;
    animation-delay: 4s;
}
 
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}
 
.bakes-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
 
.bakes-hero-logo {
    max-width: 360px;
    width: 60%;
    margin: 0 auto 30px;
    animation: gentleFloat 4s ease-in-out infinite;
}
 
/* TÍTULOS EN NEGRO */
.bakes-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}
 
.handwritten {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    color: #3a3a3a;
    font-size: 1.3em;
    font-weight: normal;
    letter-spacing: 0;
    display: inline-block;
    transform: rotate(-3deg);
}
 
.bakes-hero-subtitle {
    font-family: Georgia, serif;
    color: #2a2a2a;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    letter-spacing: 2px;
}
 
.bakes-hero-scroll {
    margin-top: 50px;
    color: #1a1a1a;
    font-size: 24px;
    animation: bounce 2s infinite;
}
 
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
 
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
 
/* ============================================
   RESTO DE LA PÁGINA — fondo amarillo muy suave
   (reemplaza los fondos marrones existentes)
============================================ */
 
/* INTRO */
.bakes-intro {
    padding: 100px 5%;
    background: #fffdf5;
    text-align: center;
}
.bakes-intro-content { max-width: 800px; margin: 0 auto; }
 
.bakes-subtitle {
    display: inline-block;
    color: #7a5c00;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}
 
.bakes-intro h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #1a1a1a;
    margin: 20px 0 25px;
    letter-spacing: 1px;
}
 
.bakes-intro p {
    color: #4a3b00;
    font-size: 17px;
    line-height: 1.9;
    font-family: Georgia, serif;
}
 
/* CATEGORÍAS */
.bakes-categories {
    padding: 100px 5%;
    background: linear-gradient(180deg, #fffde7 0%, #fff9c4 100%);
    text-align: center;
}
 
.bakes-categories h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #1a1a1a;
    margin: 20px 0 60px;
    letter-spacing: 1px;
}
 
/* ENCARGOS */
.bakes-custom {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fffde7 0%, #fff9c4 100%);
    position: relative;
    overflow: hidden;
}
 
.custom-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #1a1a1a;
    margin: 20px 0 25px;
    letter-spacing: 1px;
    line-height: 1.2;
}
 
.custom-text p {
    color: #3a3000;
    font-size: 17px;
    line-height: 1.8;
    font-family: Georgia, serif;
    margin-bottom: 30px;
}
 
.custom-list li {
    color: #1a1a1a;
    padding: 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}
 
.custom-list li i {
    background: white;
    color: #7a5c00;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* BOTÓN BAKES INTERNO */
.btn-bakes {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bakes-marron);
    color: var(--bakes-crema) !important;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2.5px;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(92,69,48,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.btn-bakes::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}
.btn-bakes:hover::before { left: 100%; }
.btn-bakes:hover {
    transform: translateY(-4px);
    background: var(--bakes-tierra);
    box-shadow: 0 15px 40px rgba(92,69,48,0.5);
}
.btn-bakes i { transition: transform 0.3s; }
.btn-bakes:hover i { transform: translateX(6px); }

/* VOLVER */
.bakes-back-cta {
    padding: 80px 5%;
    text-align: center;
    background: white;
}

.btn-bakes-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--bakes-marron) !important;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    border: 2px solid var(--bakes-marron);
    transition: all 0.4s ease;
}
.btn-bakes-outline:hover {
    background: var(--bakes-marron);
    color: white !important;
    transform: translateX(-5px);
}
.btn-bakes-outline i { transition: transform 0.3s; }
.btn-bakes-outline:hover i { transform: translateX(-5px); }

/* ============================================
   SCROLLBAR PERSONALIZADO
============================================ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
    background: var(--dorado);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--dorado-claro); }

/* ============================================
   SELECCIÓN DE TEXTO
============================================ */
::selection {
    background: var(--dorado);
    color: #000;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 400px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    
    .bakes-custom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .custom-list li { justify-content: center; }
    .custom-emoji { font-size: 150px; }
}

/* ============================================
   RESPONSIVE - MÓVIL (MENÚ HAMBURGUESA)
============================================ */
@media (max-width: 850px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 2000;
    }
    .nav-links.active { right: 0; }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    nav.navbar ul#nav-links li a {
        font-size: 28px !important;
        color: var(--dorado) !important;
        font-weight: 800 !important;
        letter-spacing: 5px !important;
        text-transform: uppercase !important;
        margin-left: 0 !important;
        display: block !important;
        padding: 10px !important;
    }
    nav.navbar ul#nav-links li a.nav-cta {
        background: var(--dorado);
        color: #000 !important;
        padding: 15px 40px !important;
        border-radius: 50px;
        display: inline-block !important;
        margin-top: 15px;
    }
}

/* ============================================
   RESPONSIVE - MÓVIL PEQUEÑO
============================================ */
@media (max-width: 900px) {
    .reserva-info-bottom {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* HERO MÓVIL */
    .hero-logo { max-width: 340px; width: 80%; }
    .hero-tagline { font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 35px; }
    
    .hero-buttons {
        gap: 12px;
        flex-wrap: nowrap;
    }
    .btn-hero {
        min-width: 0;
        flex: 1 1 45%;
        max-width: 170px;
        height: 48px;
        padding: 0 15px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    .btn-hero i { font-size: 13px; }

    .about-section,
    .specialties,
    .gallery-section,
    .testimonials-section,
    .contact-section { padding: 70px 5%; }

    .final-cta {
    padding: 80px 5%;
}

    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat h3 { font-size: 1.8rem; }

    .contact-info { grid-template-columns: 1fr 1fr; }

    .footer-container { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal a { margin: 0 10px; }

    .whatsapp-btn, .uber-float-btn {
        width: 58px;
        height: 58px;
        bottom: 20px;
    }
    .whatsapp-btn { right: 20px; font-size: 28px; }
    .uber-float-btn { left: 20px; }
    .uber-float-btn img { width: 28px; }
    .whatsapp-btn .tooltip,
    .uber-float-btn .tooltip { display: none; }

    .scroll-indicator { display: none; }
}

/* ============================================
   RESPONSIVE - MÓVIL EXTRA PEQUEÑO
============================================ */
@media (max-width: 600px) {
    .reserva-hero { padding: 50px 4%; }
    .reserva-info-bottom { grid-template-columns: 1fr; }
    .dish-container { padding: 10px; }
    .dish-header { padding: 20px; }
    .dish-header h3 { font-size: 13px; letter-spacing: 2px; }

    .bakes-teaser { padding: 70px 5%; }
    .bakes-teaser-logo { max-width: 140px; }
    .bakes-teaser-text { font-size: 15px; }

    .bakes-hero-logo { max-width: 300px; }
    .bakes-intro, .bakes-categories, .bakes-featured, .bakes-custom { padding: 70px 5%; }
    .bakes-category { padding: 40px 25px; }
    .cat-icon { font-size: 50px; }
    .product-img { height: 160px; font-size: 70px; }
    .custom-emoji { font-size: 120px; }
}

@media (max-width: 480px) {
    .contact-info { grid-template-columns: 1fr; }
    .about-stats { gap: 5px; }
    .stat h3 { font-size: 1.5rem; }
    .stat p { font-size: 10px; }
    
    .gallery-item { height: 220px; }
    
    .testimonial { padding: 30px 20px; }
    
    section > h2,
    .about-text h2 { font-size: 1.6rem; letter-spacing: 2px; }
}

@media (max-width: 380px) {
    .btn-hero {
        font-size: 11px;
        padding: 0 10px;
        letter-spacing: 1px;
    }
    .hero-logo { max-width: 280px; }
}

/* ============================================
   ESCRITORIO GRANDE (HERO MEJORADO)
============================================ */
@media (min-width: 1200px) {
    .hero-logo { max-width: 560px; }
    .hero-tagline { font-size: 1.8rem; }
    
    .btn-hero {
        min-width: 200px;
        height: 56px;
        font-size: 15px;
    }

    .social-icon { width: 50px; height: 50px; font-size: 22px; }
}

/* ============================================
   FIX FINAL - HERO ARRIBA + LOGO GRANDE
============================================ */
.hero {
    min-height: calc(100vh - 90px) !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    transform: translateZ(0);   
    backface-visibility: hidden;
}

.hero-inner {
    padding-top: 20px !important;
    justify-content: flex-start !important;
}

.hero-logo-wrap {
    margin-bottom: 25px !important;
    margin-top: 0 !important;
}

.hero-logo {
    max-width: 650px !important;
    width: 95% !important;
}

.hero-tagline {
    font-size: clamp(1.4rem, 3.5vw, 2.4rem) !important;
    letter-spacing: 5px !important;
    margin-bottom: 35px !important;
    font-weight: 600 !important;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 500px !important;
        width: 95% !important;
    }
    .hero-tagline {
        font-size: 1.3rem !important;
        letter-spacing: 3px !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
    }
}

@media (max-width: 480px) {
    .hero-logo { max-width: 420px !important; }
    .hero-tagline { font-size: 1.1rem !important; letter-spacing: 2.5px !important; }
}

/* ============================================
   CAMBIO GLOBAL: DORADO → VERDE OLIVA
============================================ */
:root {
    --dorado: #a4bd91 !important;
    --dorado-claro: #bcd6a8 !important;
    --verde-principal: #a4bd91 !important;
    --verde-oscuro: #8ca67a !important;
}

/* Navbar */
.nav-cta { background: #a4bd91 !important; }
.nav-cta:hover { background: #bcd6a8 !important; }
.nav-links li a:hover { color: #bcd6a8 !important; }
.nav-links li a:not(.nav-cta)::after { background: #bcd6a8 !important; }

/* Todos los acentos dorados */
.section-subtitle { color: #8ca67a !important; }
.gold { color: #6e8a5b !important; }
.gold-subtitle { color: #bcd6a8 !important; }

section > h2::after,
.final-cta-content h2::after,
.reserva-header-content h1::after {
    background: #a4bd91 !important;
}

.stat h3 { color: #8ca67a !important; }

.item:hover { box-shadow: 0 20px 50px rgba(164,189,145,0.35) !important; }
.testimonial { border-top-color: #a4bd91 !important; }
.testimonial h4 { color: #8ca67a !important; }

.info-block i { color: #8ca67a !important; }
.info-block:hover { border-bottom-color: #a4bd91 !important; }
.info-block a:hover { color: #8ca67a !important; }

/* Scroll indicator */
.scroll-indicator { color: #bcd6a8 !important; }

/* Redes sociales hero */
.social-icon:hover {
    background: #a4bd91 !important;
    color: #000 !important;
    border-color: #a4bd91 !important;
}

/* Footer */
.footer-col h4 { color: #a4bd91 !important; }
.footer-col ul li a:hover { color: #bcd6a8 !important; }
.footer-contact i { color: #a4bd91 !important; }
.footer-hours li span:first-child { color: #a4bd91 !important; }
.footer-social a:hover {
    background: #a4bd91 !important;
    color: #000 !important;
    border-color: #a4bd91 !important;
}
.footer-legal a:hover { color: #bcd6a8 !important; }

/* Reserva */
.dish-wrapper { border-color: #a4bd91 !important; }
.dish-header { border-bottom-color: #a4bd91 !important; }
.dish-header i { color: #a4bd91 !important; }
.loader-spinner { border-top-color: #a4bd91 !important; }
.dish-loader p { color: #8ca67a !important; }

.info-card { border-color: rgba(164,189,145,0.25) !important; }
.info-card::before {
    background: linear-gradient(90deg, transparent, #a4bd91, transparent) !important;
}
.info-card:hover {
    border-color: #a4bd91 !important;
    box-shadow: 0 15px 40px rgba(164,189,145,0.25) !important;
}
.info-card i,
.info-card h4 { color: #a4bd91 !important; }
.info-link {
    color: #a4bd91 !important;
    border-color: #a4bd91 !important;
}
.info-link:hover {
    background: #a4bd91 !important;
    color: #000 !important;
}

.reserva-shape.s1 { background: #a4bd91 !important; }

/* Scrollbar y selección */
::-webkit-scrollbar-thumb { background: #a4bd91 !important; }
::-webkit-scrollbar-thumb:hover { background: #bcd6a8 !important; }
::selection { background: #a4bd91 !important; color: #000 !important; }

/* ============================================
   BOTÓN UBER EATS REDISEÑADO
============================================ */
.uber-float-btn {
    background: #000 !important;
    border: 2px solid #06C167 !important;
    width: 65px !important;
    height: 65px !important;
    overflow: hidden !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.uber-float-btn img {
    display: none !important;
}

.uber-float-btn::after {
    content: "Uber\A Eats";
    white-space: pre;
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 13px;
    line-height: 1.1;
    color: #06C167;
    letter-spacing: 0.5px;
}

.uber-float-btn::before {
    background: rgba(0,0,0,0.5) !important;
}

.uber-float-btn:hover {
    background: #06C167 !important;
    transform: scale(1.12) !important;
}
.uber-float-btn:hover::after {
    color: #000 !important;
}

@media (max-width: 768px) {
    .uber-float-btn {
        width: 58px !important;
        height: 58px !important;
    }
    .uber-float-btn::after {
        font-size: 11px !important;
    }
}

/* ============================================
   AJUSTE FINAL HERO - ANIMACIÓN CINEMATOGRÁFICA
============================================ */

/* Logo aparece primero, rápido */
.hero-logo-wrap {
    animation: heroFadeIn 1s ease-out 0.2s both !important;
    margin-bottom: 35px !important;
}

/* Tagline aparece después */
.hero-tagline {
    animation: heroFadeIn 1s ease-out 1.2s both !important;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem) !important;
    letter-spacing: 6px !important;
    margin-bottom: 80px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

/* Botones bajados y con delay largo */
.hero-buttons {
    animation: heroFadeIn 1s ease-out 1.2s both !important;
    margin-bottom: 50px !important;
    margin-top: 40px !important;
}

/* Redes aparecen al final */
.hero-social {
    animation: heroFadeIn 1.2s ease-out 3s both !important;
    margin-top: 10px !important;
}

/* Scroll indicator al final */
.scroll-indicator {
    animation: heroFadeIn 1s ease-out 3.8s both, bounce 2s infinite 4s !important;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajuste del hero-inner para dar más espacio */
.hero-inner {
    padding-top: 30px !important;
    gap: 0 !important;
}

/* Responsive tagline más grande en móvil */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.75rem !important;
        letter-spacing: 4px !important;
        margin-bottom: 70px !important;
        padding: 0 10px !important;
    }
    .hero-buttons {
        margin-top: 30px !important;
        margin-bottom: 45px !important;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1.5rem !important;
        letter-spacing: 3px !important;
    }
}

/* ============================================
   BOTÓN UBER EATS - FUENTE OFICIAL
============================================ */

/* Importar fuente parecida a Uber Move */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

.uber-float-btn {
    background: #000 !important;
    border: 2px solid #06C167 !important;
    width: 68px !important;
    height: 68px !important;
    overflow: hidden !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
}

.uber-float-btn img {
    display: none !important;
}

/* Eliminamos el ::after antiguo */
.uber-float-btn::after {
    content: none !important;
}

/* Creamos el contenido con HTML real mediante pseudo más elegante */
.uber-float-btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 15px !important;
    line-height: 1 !important;
    color: white !important;
    text-decoration: none !important;
    text-align: center !important;
    font-weight: 400 !important;
}

.uber-float-btn::after {
    content: "Uber" !important;
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    color: white !important;
    letter-spacing: -0.5px !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
}

.uber-float-btn::before {
    background: rgba(0,0,0,0.5) !important;
}

/* Hover */
.uber-float-btn:hover {
    background: #06C167 !important;
    transform: scale(1.12) !important;
    border-color: #000 !important;
}
.uber-float-btn:hover::after {
    color: #000 !important;
}

@media (max-width: 768px) {
    .uber-float-btn {
        width: 60px !important;
        height: 60px !important;
    }
}

/* ============================================
   UBER EATS - TEXTO HTML REAL (versión final)
============================================ */
.uber-float-btn::after {
    content: none !important;
    display: none !important;
}

.uber-float-btn .uber-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    font-family: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif !important;
}

.uber-float-btn .uber-thin {
    font-weight: 400 !important;
    font-size: 13px !important;
    color: white !important;
    letter-spacing: -0.3px !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
}

.uber-float-btn .uber-bold {
    font-weight: 900 !important;
    font-size: 14px !important;
    color: #06C167 !important;
    letter-spacing: -0.3px !important;
    line-height: 1 !important;
}

.uber-float-btn:hover .uber-thin {
    color: #000 !important;
}
.uber-float-btn:hover .uber-bold {
    color: #000 !important;
}

@media (max-width: 768px) {
    .uber-float-btn .uber-thin { font-size: 11px !important; }
    .uber-float-btn .uber-bold { font-size: 12px !important; }
}

/* ============================================
   FIX SOMBRA LOGO EN MÓVIL
============================================ */
@media (max-width: 768px) {
    .hero-logo {
        filter: none !important;
        -webkit-filter: none !important;
    }
}

/* ============================================
   PÁGINAS LEGALES
============================================ */
.legal-page {
    padding: 80px 5% 100px;
    background: #fafafa;
    min-height: 80vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.legal-header {
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.legal-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 15px 0 10px;
}

.legal-date {
    color: #999;
    font-size: 13px;
    letter-spacing: 2px;
    font-family: Arial, sans-serif;
}

.legal-content h2 {
    color: #1a1a1a;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin: 40px 0 15px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid #a4bd91;
}

.legal-content h3 {
    color: #8ca67a;
    font-size: 1.05rem;
    margin: 25px 0 12px;
    letter-spacing: 1.5px;
}

.legal-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    font-size: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
}

.legal-content ul li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
    font-family: Georgia, serif;
    font-size: 15px;
}

.legal-content ul.legal-data {
    background: #f7faf4;
    list-style: none;
    margin-left: 0;
    padding: 25px 30px;
    border-left: 4px solid #a4bd91;
    border-radius: 8px;
}

.legal-content ul.legal-data li {
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
}
.legal-content ul.legal-data li:last-child { border-bottom: none; }

.legal-content a {
    color: #8ca67a;
    text-decoration: underline;
    font-weight: bold;
}
.legal-content a:hover { color: #6b8a5a; }

.legal-content strong { color: #1a1a1a; }

@media (max-width: 768px) {
    .legal-container { padding: 40px 25px; }
    .legal-content h2 { font-size: 1.1rem; }
    .legal-content p, .legal-content ul li { font-size: 14px; }
}

/* ============================================
   BANNER DE COOKIES
============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 25px 30px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.5);
    border-top: 2px solid #a4bd91;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 40px;
    flex-shrink: 0;
    animation: cookieBounce 2s ease-in-out infinite;
}
@keyframes cookieBounce {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h4 {
    color: #a4bd91;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-size: 15px;
}

.cookie-text p {
    color: #ccc;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    font-family: Georgia, serif;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.cookie-accept {
    background: #a4bd91;
    color: #000;
}
.cookie-accept:hover {
    background: #bcd6a8;
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}
.cookie-reject:hover {
    background: #333;
    color: white;
    border-color: #777;
}

.cookie-config {
    background: transparent;
    color: #a4bd91;
    border: 1px solid #a4bd91;
}
.cookie-config:hover {
    background: #a4bd91;
    color: #000;
}

@media (max-width: 768px) {
    .cookie-banner { padding: 12px 15px; }
    .cookie-content { flex-direction: row; flex-wrap: wrap; text-align: left; gap: 10px; align-items: center; }
    .cookie-icon { font-size: 24px; }
    .cookie-text h4 { font-size: 12px; margin-bottom: 3px; }
    .cookie-text p { font-size: 11px; line-height: 1.4; }
    .cookie-buttons { justify-content: flex-start; width: 100%; gap: 6px; }
    .cookie-btn { flex: 0 1 auto; padding: 7px 14px; font-size: 10px; letter-spacing: 1px; }
}

/* ============================================
   OCAMPO BAKES - PALETA DORADA DEL LOGO
   Añadir al final de style.css
============================================ */
 
/* Variables exclusivas de la página Bakes */
:root {
    --bakes-dorado: #f0d882;
    --bakes-dorado-claro: #e8c96d;
    --bakes-dorado-oscuro: #c9a227;
}
 
/* ---- NAVBAR en página Bakes ---- */
.navbar-bakes .nav-links li a:hover {
    color: var(--bakes-dorado) !important;
}
.navbar-bakes .nav-links li a:not(.nav-cta)::after {
    background: var(--bakes-dorado) !important;
}
.navbar-bakes .nav-cta-bakes {
    background: var(--bakes-dorado) !important;
    color: #000 !important;
}
.navbar-bakes .nav-cta-bakes:hover {
    background: var(--bakes-dorado-claro) !important;
}
 
/* Menú móvil en página Bakes */
@media (max-width: 850px) {
    .bakes-page nav.navbar ul#nav-links li a {
        color: var(--bakes-dorado) !important;
    }
    .bakes-page nav.navbar ul#nav-links li a.nav-cta {
        background: var(--bakes-dorado) !important;
        color: #000 !important;
    }
}
 
/* ---- FOOTER en página Bakes ---- */
.site-footer-bakes .footer-col h4 {
    color: #f0d882 !important;
}
.site-footer-bakes .footer-social a:hover {
    background: #f0d882 !important;
    border-color: #f0d882 !important;
    color: #000 !important;
}
.site-footer-bakes .footer-col ul li a:hover {
    color: #f0d882 !important;
}
.site-footer-bakes .footer-contact i {
    color: #f0d882 !important;
}
.site-footer-bakes .footer-hours li span:first-child {
    color: #f0d882 !important;
}
.site-footer-bakes .footer-legal a:hover {
    color: #f0d882 !important;
}

/* ---- SCROLLBAR en página Bakes ---- */
.bakes-page ::-webkit-scrollbar-thumb {
    background: #f0d882 !important;
}
.bakes-page ::-webkit-scrollbar-thumb:hover {
    background: #e8c96d !important;
}

/* ---- BANNER COOKIES en página Bakes ---- */
.cookie-banner-bakes {
    border-top-color: #f0d882 !important;
}
.cookie-banner-bakes .cookie-text h4 {
    color: #f0d882 !important;
}
.cookie-accept-bakes {
    background: #f0d882 !important;
    color: #000 !important;
}
.cookie-accept-bakes:hover {
    background: #e8c96d !important;
}
.cookie-config-bakes {
    color: #f0d882 !important;
    border-color: #f0d882 !important;
}
.cookie-config-bakes:hover {
    background: #f0d882 !important;
    color: #000 !important;
}

/* ============================================
   CARRUSEL SECCIÓN NOSOTROS
============================================ */
.about-carousel {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--dorado);
    transform: scale(1.3);
}

/* ============================================
   CARRUSEL DE ESPECIALIDADES
   ============================================ */

.specialty-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.specialty-track {
    display: flex;
    width: 100%;          /* ← AÑADIDO: fuerza el ancho correcto */
    min-width: 0;         /* ← AÑADIDO: evita desbordamiento en flex */
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.specialty-slide {
    min-width: 100%;
    width: 100%;          /* ← AÑADIDO: doble seguridad */
    flex-shrink: 0;
    box-sizing: border-box;
}

.specialty-slide .item-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: pointer;
    display: block;       /* ← AÑADIDO: evita espacio extra bajo la imagen */
}

.specialty-slide .item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;       /* ← AÑADIDO: elimina el hueco inferior que crean las imágenes inline */
    transition: transform 0.4s ease;
}

.specialty-slide .item-img-wrap:hover img {
    transform: scale(1.05);
}

.specialty-slide .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialty-slide .item-img-wrap:hover .img-overlay {
    opacity: 1;
}

.specialty-slide .img-overlay i {
    font-size: 28px;
    color: #fff;
    background: #bcd6a8;
    padding: 15px;
    border-radius: 50%;
    transform: scale(0.8);
    transition: transform 0.3s ease, background 0.3s ease;
}

.specialty-slide .item-img-wrap:hover .img-overlay i {
    transform: scale(1);
}

/* Flechas: ocultas */
.specialty-btn {
    display: none;
}

/* Dots indicadores */
.specialty-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.specialty-dots .specialty-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: 1.5px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.specialty-dots .specialty-dot:hover,
.specialty-dots .specialty-dot.active {
    background: #bcd6a8;
    border-color: #bcd6a8;
    transform: scale(1.25);
}
/* Badge fuente de reseña (Google / TripAdvisor) */
.review-source {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}


@media (max-width: 768px) {
    .specialty-carousel {
        max-width: 100%;
    }
}

/* ============================================
   FIX HERO MÓVIL - barra navegador navegador
============================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* ─── FIX CONTRASTE - Verde olivo oscuro para fondo CLARO ─── */
.about-section .gold,
.testimonials-section .gold,
.contact-section .gold,
.faq-page .gold,
.specialties .section-subtitle,
.testimonials-section .section-subtitle,
.contact-section .section-subtitle,
.about-section .section-subtitle,
.faq-section .section-subtitle {
    color: #6e8a5b !important;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    color: #888;
    letter-spacing: 1px;
}

/* ============================================
   FIX: scroll-indicator dentro del flujo del hero
============================================ */
.scroll-indicator {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: 35px !important;
    /* Ojo: NO ponemos transform aquí, dejamos que la animación bounce lo controle */
}

/* Keyframe bounce ajustado: sin translateX(-50%) porque ya no es absolute */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}