    /* --- 1. CARRUSEL  --- */
.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.carousel-item img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 85vh;
    z-index: 0;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 8%;
    right: 8%;
    text-align: left;
}

.carousel-item h1 {
    max-width: 60%;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.carousel-item h3 {
    max-width: 50%;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

#contEstadisticas h2{
    font-size: 32px;
}

@media (max-width: 768px) {

    .carousel-item h1,
    .carousel-item h3 {
        max-width: 100%;
    }
    
    .carousel-item h3 {
        font-size: 1rem;
    }

    #contEstadisticas h2{
        font-size: 24px !important;
    }

}



/* --- 2. SECCIÓN PROCESO DE PEDIDO --- */
.procesoPedido img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.procesoPedido img:hover {
    transform: scale(1.05);
}

/* --- 3. SECCIÓN PREGUNTAS FRECUENTES --- */
.preguntasFrecuentes {
    background-color: var(--colorAzul);
    padding: 60px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.preguntasFrecuentes h2 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

/* Acordeón */
.accordion-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.accordion-item:hover {
    transform: translateX(5px);
}

/* Pregunta */
.accordion-header {
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 0;
}

/* Respuesta oculta */
.accordion-body {
    margin-top: 10px;
    padding-left: 25px;
    display: none;
    color: #333;
    font-size: 0.95rem;
}


/* --- 4. MARCAS / TIENDAS --- */
.img-brand {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.img-brand:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- 5. CTA FINAL --- */
.listoParaComenzar h2 {
    margin-bottom: 30px;
}

/* --- 6. SECCIÓN CONTACTO (Dual) --- */

/* Tarjeta Base */
.contact-card {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

/* Tarjeta Azul (WhatsApp) */
.contact-card-blue {
    background: linear-gradient(135deg, var(--colorAzul) 0%, #2c527a 100%);
    color: white;
    border: none;
}

/* Inputs del formulario */
.input-custom {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.95rem;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

textarea.input-custom {
    border-radius: 20px;
}

.input-custom:focus {
    background-color: white;
    border-color: var(--colorAzul);
    box-shadow: 0 0 0 3px rgba(58, 110, 165, 0.15);
}

.contact-card label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
    margin-bottom: 5px;
    color: #666;
}

/* Botón grande de WhatsApp */
.contact-card-blue .btnPrimario {
    font-size: 1.2rem;
    padding: 15px 30px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Animación sutil de pulso para el botón de WhatsApp */
.pulse-animation {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Ajustes Responsive */
@media (max-width: 992px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-card-blue {
        margin-top: 20px;
    }
}

/* ─── SECCIÓN TENDENCIAS — Carrusel Horizontal ──────────────────────────── */
#contTendencias {
    overflow: hidden;
}

.tendencias-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tendencias-track-container {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0 16px;
}
.tendencias-track-container::-webkit-scrollbar { display: none; }

.tendencias-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Card individual */
.tendencia-card {
    display: flex;
    flex-direction: column;
    width: 230px;
    min-width: 230px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.tendencia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(58, 110, 165, 0.13);
    border-color: var(--colorAzul, #3A6EA5);
}

.tendencia-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.tendencia-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
    color: #a0aec0;
    font-size: 2.5rem;
}

.tendencia-card-body {
    padding: 14px 16px 8px;
    flex: 1;
}

.tendencia-card-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--colorVerde, #009B3A);
    background: rgba(0,155,58,0.08);
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
}

.tendencia-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tendencia-card-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--colorAzul, #3A6EA5);
    margin-bottom: 4px;
}

.tendencia-card-btn {
    display: block;
    padding: 10px 16px;
    background: var(--colorAzul, #3A6EA5);
    color: #fff !important;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.25s;
}

.tendencia-card-btn:hover {
    background: #2c527a;
}

/* Flechas de navegación */
.tendencias-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--colorAzul, #3A6EA5);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(58,110,165,0.3);
    z-index: 2;
}

.tendencias-arrow:hover:not(:disabled) {
    background: #2c527a;
    transform: scale(1.08);
}

.tendencias-arrow:disabled {
    background: #e2e8f0;
    color: #a0aec0;
    cursor: not-allowed;
    box-shadow: none;
}

/* Loader del carrusel */
.tendencias-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 80px;
    width: 100%;
    min-width: 300px;
}

/* Botón Ver Más */
.btn-panel-vermas {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--colorAzul, #3A6EA5);
    color: var(--colorAzul, #3A6EA5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: background 0.25s, color 0.25s;
}

.btn-panel-vermas:hover {
    background: var(--colorAzul, #3A6EA5);
    color: #fff !important;
}

@media (max-width: 576px) {
    .tendencia-card {
        width: 195px;
        min-width: 195px;
    }
    .tendencias-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
