/* ===========================
   CSS OPTIMIZADO - TORTAS
   Mobile First - Sin Font Awesome
   =========================== */
.galeria-productos {
    background: var(--light-gray);
}

.sabores-section {
    background: var(--white);
}

.cta-section {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}


/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.8;
}

/* ===========================
   DESCRIPCIÓN DE CATEGORÍA
   =========================== */
.descripcion-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .descripcion-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.descripcion-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

@media (min-width: 768px) {
    .descripcion-text h2 {
        font-size: 2.5rem;
    }
}

.descripcion-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

.caracteristicas-categoria {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .caracteristicas-categoria {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caracteristica {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.caracteristica svg {
    flex-shrink: 0;
}

.caracteristica span {
    font-size: 0.95rem;
    color: var(--dark-color);
}

.descripcion-image {
    position: relative;
}

.descripcion-image picture {
    width: 100%;
}

.descripcion-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
    width: 100%;
    height: auto;
}

/* ===========================
   GALERÍA DE PRODUCTOS
   =========================== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray);
    font-size: 1rem;
}

/* Mobile: 1 columna */
.productos-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .productos-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .productos-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.producto-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.producto-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.producto-imagen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 940 / 788;
}

.producto-imagen picture {
    width: 100%;
    height: 100%;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.producto-item:hover .producto-imagen img {
    transform: scale(1.1);
}

.producto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.producto-item:hover .producto-overlay {
    opacity: 1;
}

.btn-ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ver-mas:hover {
    background: #1EBE57;
    transform: scale(1.05);
}

.producto-info {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .producto-info {
        padding: 2rem;
    }
}

.producto-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

@media (min-width: 768px) {
    .producto-info h3 {
        font-size: 1.5rem;
    }
}

.producto-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   SABORES DISPONIBLES
   =========================== */
.sabores-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

@media (min-width: 1024px) {
    .sabores-section h2 {
        font-size: 2.5rem;
    }
}

.sabores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .sabores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sabor-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.sabor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.sabor-item svg {
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.sabor-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .cta-section p {
        font-size: 1.2rem;
    }
}

/* ===========================
   BOTONES
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
}

@media (min-width: 768px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.btn-whatsapp {
    background: #0ccf26;
    color: var(--white);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: #4A3628;
    color: var(--white);
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .footer {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h4 {
    color: var(--auxiliar-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 150px;
    height: 150px;
}

.footer-logo h3 {
    color: var(--auxiliar-color);
    font-size: 1.5rem;
}

.footer-description {
    margin-bottom: 1rem;
    color: #CCC;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    color: #CCC;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-hours h5 {
    color: var(--auxiliar-color);
    margin-bottom: 0.5rem;
}

.footer-hours p {
    color: #CCC;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

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

/* ===========================
   SMOOTH SCROLL
   =========================== */
html {
    scroll-behavior: smooth;
}

/* ===========================
   ACCESIBILIDAD
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}