/* ===========================
   CSS OPTIMIZADO - PRODUCTOS
   Mobile First - Sin Font Awesome
   =========================== */

/* ===========================
   SECCIONES BASE
   =========================== */
.categorias-section,
.info-productos,
.pedidos-personalizados,
.proceso-pedido,
.cta-final {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.info-productos {
    background: var(--light-gray);
}

.pedidos-personalizados {
    background: var(--white);
}

.proceso-pedido {
    background: var(--light-gray);
}

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

@media (min-width: 1024px) {
    .categorias-section,
    .info-productos,
    .pedidos-personalizados,
    .proceso-pedido,
    .cta-final {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

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

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

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

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

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

.categoria-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.categoria-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .categoria-image {
        height: 350px;
    }
}

.categoria-image picture {
    width: 100%;
    height: 100%;
}

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

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

.categoria-content {
    padding: 1.5rem;
    text-align: center;
}

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

.categoria-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

@media (min-width: 768px) {
    .categoria-content h3 {
        font-size: 1.8rem;
    }
}

.categoria-content p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===========================
   INFO PRODUCTOS
   =========================== */
.info-productos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

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

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

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

.info-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.info-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

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

/* ===========================
   PEDIDOS PERSONALIZADOS
   =========================== */
/* Mobile: 1 columna */
.pedidos-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

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

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

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

@media (min-width: 768px) {
    .pedidos-text p {
        font-size: 1.1rem;
    }
}

.pedidos-list {
    margin-bottom: 2rem;
}

.pedidos-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .pedidos-list li {
        font-size: 1.1rem;
    }
}

.pedidos-image {
    position: relative;
}

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

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

/* ===========================
   PROCESO DE PEDIDO
   =========================== */
.proceso-pedido h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

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

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

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

.step-item {
    text-align: center;
    padding: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

.step-item h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.step-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===========================
   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-primary {
    background: var(--auxiliar-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background: #C5A028;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

.btn-view {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-view:hover {
    background: #1ba3bc;
    transform: translateY(-2px);
}

/* ===========================
   FOOTER (igual que otras páginas
   =========================== */
.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;
}

@media (min-width: 768px) {
    .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;
}

/* ===========================
   MODAL (si se necesita en el futuro)
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    margin: 2% auto;
    padding: 2rem;
    width: 90%;
    max-width: 1200px;
    border-radius: 10px;
    position: relative;
    animation: slideDown 0.5s ease;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

/* ===========================
   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;
    }
}