body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* Blanco mate puro */
    color: #334155;
    overflow-x: hidden;
}

/* --- Estilo del Botón de WhatsApp Principal --- */
.btn-whatsapp-main {
    background-color: #25D366;
    color: white;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}
.btn-whatsapp-main:hover {
    transform: translateY(-3px);
}
@keyframes pulse-wa {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* --- Contenedor del Carrusel con Difuminado en Bordes --- */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

/* Degradados para el efecto difuminado a los lados */
.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/* Track del Carrusel */
.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: auto;
    gap: 1.5rem;
    padding: 1rem 3rem; /* Espaciado interno para lucir los bordes difuminados */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Ocultar barra en Firefox */
    cursor: grab;
}
.carousel-track:active {
    cursor: grabbing;
}
.carousel-track::-webkit-scrollbar {
    display: none; /* Ocultar barra en Chrome/Safari */
}

/* Tarjeta del Producto - Diseño Plano Mate sin sombras */
.product-card {
    min-width: 270px;
    max-width: 270px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0; 
    display: flex;
    flex-direction: column;
    user-select: none;
}
.product-img-wrapper {
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

/* --- Estilos de Testimonios FB --- */
.fb-container {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    border-radius: 12px;
}
.fb-comment-box {
    background: #f0f2f5;
    border-radius: 18px;
    padding: 10px 14px;
    display: inline-block;
    max-width: 100%;
}
.fb-name {
    color: #050505;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
}
.fb-text {
    color: #050505;
    font-size: 15px;
    line-height: 1.4;
    margin-top: 2px;
    word-wrap: break-word;
}
.fb-photo-attached {
    margin-top: 8px;
    border-radius: 12px;
    max-width: 250px;
    width: 100%;
    display: block;
    border: 1px solid #ced0d4;
}
.fb-actions {
    font-size: 12px;
    color: #65676b;
    margin-top: 4px;
    margin-left: 12px;
}
.fb-actions a {
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: #65676b;
}
.fb-actions a:hover { text-decoration: underline; }