/* ===========================
   Botones
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    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-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-whatsapp {
    background: #0ccf26;
    color: var(--white);
    display: inline-block;
    padding: 5px;
    margin: 5px;
    border-radius: 10px;
}


.btn-whatsapp-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: #25D366;
    color: var(--white);
}

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

.btn-view:hover {
    background: #A01729;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
}

.btn-phone:hover {
    background: #A01729;
}

/* ===========================
   Productos Page
   =========================== */
.categorias-section {
    background: var(--white);
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.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: 350px;
    overflow: hidden;
}

.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: 2rem;
    text-align: center;
}

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

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

/* Modal de Galería */
.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);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1rem;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

.modal-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

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

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.info-item .info-icon {
    margin-bottom: 1rem;
}

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

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

.pedidos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.pedidos-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

.pedidos-list i {
    color: #25D366;
    font-size: 1.2rem;
}

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

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

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
}

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

.step-item h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cta-final {
    background: var(--primary-color);
    color:var(--white);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}
/* ===========================
   Footer
   =========================== */
.footer {
    background: #4A3628;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-logo h3 {
    color: var(--auxiliar-color);
}

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

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

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.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-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #AAA;
}

/* Otras Categorías */
.otras-categorias {
    padding: 80px 0;
    background: var(--white);
}

.otras-categorias h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.categorias-relacionadas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

.categoria-card-small img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.categoria-card-small h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.categoria-card-small p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
}

/* ===========================
   WhatsApp Flotante
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1EBE57;
    transform: scale(1.1);
}
/* ===========================
   Animaciones
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@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);
    }
}

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