/* Custom CSS for Bucaros Website */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

/* ====== Overlay de Zoom ====== */
.zoom-overlay {
    position: fixed;
    inset: 0;
    display: none;
    /* oculto por defecto */
    align-items: center;
    justify-content: center;
    flex-direction: column;
  padding: 1rem;
    background: rgba(0, 0, 0, .9);
    z-index: 9999;
    touch-action: none;
}

.zoom-overlay.is-open {
    display: flex;
}

.zoom-toolbar {
    position: fixed;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    z-index: 10000;
    margin-bottom: 0.5rem;
  justify-content: flex-end;
  width: 100%;
  max-width: 1000px;
}

.zoom-btn {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 18px;
    padding: 0.35rem 0.55rem;
    cursor: pointer;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, .18);
}

.zoom-stage {
    position: relative;
   flex: 1;
  width: 100%;
  max-width: 100vw;
  max-height: 100vh;
    overflow: hidden;
    display: flex;
  align-items: center;
  justify-content: center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    cursor: grab;
}

.zoom-stage:active {
    cursor: grabbing;
}

.zoom-img {
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
    max-width: 100%;
    max-height: 100%;
     object-fit: contain;        /* MUY IMPORTANTE: que se vea completa */
  transform-origin: center center;
    transform: translate(0, 0) scale(1);
    transition: transform .06s ease;
}

/* ====== Navegación en overlay (galería) ====== */
.zoom-nav {
   position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zoom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    pointer-events: auto;
    transition: background .2s ease, transform .12s ease;
    z-index: 9999999;
}

.zoom-arrow:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-50%) scale(1.03);
}

.zoom-arrow.prev {
    left: 14px;
}

.zoom-arrow.next {
    right: 14px;
}

.zoom-counter {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .45);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    margin-top: 0.5rem;
    font-size: 13px;
}

/* fallback natural: hidden */
section,
.container,
.row {
    overflow-x: clip;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}


/* Color Variables */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #FFB6C1;
    --dark-color: #4A2C2A;
    --light-color: #F5F5DC;
    --success-color: #25D366;
    --warning-color: #FFC107;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-width: 80px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
/* ✅ Alternativa segura */
.container-wide {
    padding-left: clamp(16px, 5vw, 48px);
    padding-right: clamp(16px, 5vw, 48px);
}

.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .40)),
        url('/images/Banner-home.gif') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b6b" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23ff6b6b" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1" fill="%23ff6b6b" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
    background-size: 200px 200px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 50px;
    padding-top: 10%;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 300;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.8s both;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-title-center {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.texto-negro {
    color: #000;
}

.pag-fresas .about-section {
    padding-top: 5% !important;
}

.pag-fresas .about-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Section */
.about-section .about-bg {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.about-section img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 45%;
    margin-left: 25%;
}

.page-desayunos .about-section img {
    margin-left: 5%;
    width: 100%;
}

.about-section .section-title {
    margin-right: 20%;
}

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

.about-section.about-cta .row {
    text-align: center;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .35)),
        /* si no tienes imagen, quedará el degradado oscuro */
        url('/images/deliciosas-fresas-banadas-chocolate.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px;
    justify-content: center;
}

.about-section.about-cta h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: .25rem;
}

.about-section.about-cta p {
    color: #fff;
    margin: 0 auto .75rem;
}

.btn-fresas {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 9999px;
    justify-content: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.btn-fresas:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon img {
    max-width: 60px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-icon i {
    max-width: 100px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Gift Section */
.gift-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
}

.g-4,
.gx-4 {
    --bs-gutter-x: 4.5rem;
}

.gift-section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.presentation-section {
    background:
        radial-gradient(1200px 400px at 0% 0%, rgba(255, 255, 255, .6), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--accent-color) 0%, #ffe9e4 100%);
    padding-bottom: none !important;
    text-align: center;
}

.presentation-section .row {
    row-gap: 28px;
}

.presentation-section .btn {
    border-radius: 9999px;
    padding: 12px 24px;
    box-shadow: 0 8px 18px rgba(139, 69, 19, .20);
}

/* Products Section */
.sect-prod {
    padding-top: 50px;
}

.productos-section {
    padding: 100px 0;
    background: #fff;
}

.Products-Section .section-title {
    margin-bottom: 14px;
}

.Products-Section p {
    max-width: 1100px;
    margin: 0 auto 12px;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 2rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-product {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    color: #fff;
}

/* Observations Section */
.observations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--warning-color) 0%, #453b03 100%);
}

.chocolate-icon img {
    color: var(--dark-color);
    max-width: 60px !important;
}

/* Special Features Section */
.special-features-section {
    padding: 100px 0;
}

.feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-box .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.strawberry-icon img {
    text-align: center;
    margin: 1rem 0;
    max-width: 60px;
}

/* Surprise Section */
.surprise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
}

.surprise-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.surprise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.surprise-icon img {
    max-width: 60px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.accordion-button {
    background: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c1810 100%);
    padding: 50px 0 20px;
}

.footer-logo {
    filter: brightness(1.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--success-color);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        padding: 0% 4%;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-top: 20px;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }

    .about-section .section-title {
        margin: 5%;
    }

    .about-section h2,
    p {
        text-align: center;
    }

    .page-desayunos .about-section img {
        margin-left: 0px;
        ;
    }

    .about-desayunos p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(139, 69, 19, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===== Catálogo de Fresas ===== */
.productos-section {
    padding: 40px 16px;
    background: transparent;
}

.productos-section .wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.productos-section .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
}

@media (min-width: 900px) {
    .productos-section .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Tarjeta */
.productos-section .product-card {
    display: grid;
    gap: 14px;
    text-align: center;
}

.productos-section .product-media {
    background: #f7f1ee;
    border-radius: 6px;
    overflow: hidden;
    /* Rectangular como en la captura */
    aspect-ratio: 4 / 3;
}

.productos-section .product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Título dorado, serif y grueso (sin fuentes externas) */
.productos-section .product-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #caa465;
    /* dorado */
    font-family: Georgia, 'Times New Roman', serif;
}

/* Precio */
.productos-section .price {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-top: -2px;
}

.productos-section .price .currency {
    font-weight: 800;
}

/* Descripción */
.productos-section .product-desc {
    color: #595959;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 10% 8px;
}

/* Botón estilo “píldora” con contorno punteado como en la imagen */
.productos-section .btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .06s ease, box-shadow .2s ease;
}

.productos-section .btn-whatsapp {
    background: #7a4a2f;
    /* chocolate */
    color: #f6efe9;
    /* crema */
    border: 2px solid #7a4a2f;
    outline: 2px dotted #d78575;
    /* contorno punteado */
    outline-offset: 6px;
    padding: 10px 20px;
}

.productos-section .btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

/* ===== Carrusel dentro de la tarjeta ===== */
.productos-section .p-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #f7f1ee;
}

.productos-section .p-carousel-track {
    display: flex;
    gap: 0;
    transition: transform .35s ease;
    will-change: transform;
}

.productos-section .p-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
}

.productos-section .p-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Controles */
.productos-section .p-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s;
}

.p-carousel-btn,
.carousel-btn {
    inset-inline: auto;
}

.productos-section .p-carousel:hover .p-carousel-btn {
    opacity: 1;
}

.productos-section .p-carousel-btn.prev {
    left: 8px;
}

.productos-section .p-carousel-btn.next {
    right: 8px;
}

.productos-section .p-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 8px 0 0;
}

.productos-section .p-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d9d9d9;
    border: 0;
}

.productos-section .p-carousel-dot.is-active {
    background: #7a4a2f;
}

/* ===== Página Desayunos: mejoras visuales y coherencia ===== */
.page-desayunos .hero-section {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .35)),
        /* si no tienes imagen, quedará el degradado oscuro */
        url('/images/desayunos%20sorpresa%20(1).webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-desayunos .hero-title {
    letter-spacing: .2px;
}

.page-desayunos .cta-button {
    border-radius: 50px;
}

/* Contenedor más contenido en esta landing */
.page-desayunos .about-section .container,
.page-desayunos .presentation-section .container,
.page-desayunos .gift-section .container,
.page-desayunos .special-features-section .container,
.page-desayunos .surprise-section .container {
    max-width: 100%;
    padding: 2% 10%;
}

.page-desayunos .presentation-section {
    background:
        linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .40)),
        url('/images/desayunos%20sorpresa%20(3).webp') center/cover no-repeat;
}

.page-desayunos .presentation-section h2 {
    color: #fff;
}

.page-desayunos .presentation-section p {
    color: #fff;
}

/* Tarjetas del catálogo: resaltar título dorado y jerarquía limpia */
.page-desayunos .productos-section .product-card {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    border: 1px solid #eee;
    background: #fff;
}

.page-desayunos .productos-section .product-media {
    background: #faf7f5;
    border-radius: 12px;
}

.page-desayunos .productos-section .product-title {
    font-family: Georgia, 'Times New Roman', serif;
    color: #caa465;
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 4px;
}

.page-desayunos .productos-section .price {
    font-weight: 800;
    color: #7a4a2f;
    margin-bottom: 8px;
}

.page-desayunos .productos-section .product-desc {
    color: #5c5c5c;
    margin: 0 8% 12px;
    line-height: 1.6;
}

/* Botón WhatsApp más protagonista y amigable */
.page-desayunos .productos-section .btn-whatsapp {
    background: #7a4a2f;
    color: #f6efe9;
    border: 2px solid #7a4a2f;
    outline: 2px dotted #d78575;
    outline-offset: 6px;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform .06s ease, box-shadow .2s ease;
}

.page-desayunos .productos-section .btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
    color: #f6efe9;
}

/* Carrusel propio (p-carousel) refinado */
.page-desayunos .productos-section .p-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #faf7f5;
}

.page-desayunos .productos-section .p-carousel-track {
    display: flex;
    transition: transform .35s ease;
}

.page-desayunos .productos-section .p-carousel-slide {
    min-width: 100%;
    aspect-ratio: 4 / 3;
}

.page-desayunos .productos-section .p-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-desayunos .productos-section .p-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border: 0;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s;
}

.page-desayunos .productos-section .p-carousel:hover .p-carousel-btn {
    opacity: 1;
}

.page-desayunos .productos-section .p-carousel-btn.prev {
    left: 10px;
}

.page-desayunos .productos-section .p-carousel-btn.next {
    right: 10px;
}

.page-desayunos .productos-section .p-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 0;
}

.page-desayunos .productos-section .p-carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d9d9d9;
    border: 0;
}

.page-desayunos .productos-section .p-carousel-dot.is-active {
    background: #7a4a2f;
}

/* Mejoras móviles */
@media (max-width: 576px) {
    .page-desayunos .productos-section .product-title {
        font-size: 22px;
    }

    .page-desayunos .productos-section .product-desc {
        margin: 0 4% 10px;
    }
}

/* ===== Desayunos: carrusel dentro de about-section ===== */
.about-desayunos .about-media {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
}

.about-desayunos .p-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.p-carousel-slide,
.carousel-slide {
    box-sizing: border-box;
}

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

/* Controles */
.about-desayunos .p-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s;
}

.p-carousel,
.carousel {
    position: relative;
    overflow: hidden;
}

.p-carousel-track,
.carousel-track {
    display: flex;
    gap: 0;
    transition: transform .35s ease;
    will-change: transform;
}


.about-desayunos .p-carousel:hover .carousel-btn {
    opacity: 1;
}

.about-desayunos .p-carousel-btn.prev {
    left: 10px;
}

.about-desayunos .p-carousel-btn.next {
    right: 10px;
}

.about-desayunos .p-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 0;
}

.about-desayunos .p-carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d9d9d9;
    border: 0;
}

.about-desayunos .p-carousel-dot.is-active {
    background: #7a4a2f;
}

@media (max-width: 991px) {

    .about-desayunos p {
        text-align: left;
    }
}

.texto-blanco {
    color: #fff !important;
}

/* ===== Anti overflow horizontal global ===== */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* bloquea el scroll horizontal */
}

/* Evita que “rows” de Bootstrap sangren fuera del viewport si algún contenedor se queda corto de padding */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    padding-left: max(10%, .75rem) !important;
    padding-right: max(10%, .75rem) !important;
}

/* Asegurar que medios nunca sobrepasen el ancho */
img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Botones con outline punteado: reduce “sangrado” en pantallas estrechas */
@media (max-width: 576px) {
    .productos-section .btn-whatsapp {
        outline-offset: 4px;
    }
}