body {
    background-color: #FFFFFF;
    color: #414141;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Video Container & Play Overlay */
.video-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    background: #000;
    cursor: pointer;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    z-index: 30;
    transition: opacity 0.3s ease;
}

.overlay-box {
    background: #0077b6;
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    pointer-events: none;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.2);
}

.video-hidden {
    display: none !important;
}

/* Barra de Carga Personalizada */
.progress-container {
    max-width: 850px;
    margin: 0 auto 2rem auto;
    background: #e5e7eb;
    height: 24px;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    width: 0%;
    transition: width 1s linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
}

/* Countdown Button Animation */
@keyframes pulse-sutil {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.countdown-btn {
    background-color: #D03534;
    color: white;
    animation: pulse-sutil 2s infinite ease-in-out;
    box-shadow: 0 4px 10px rgba(208, 53, 52, 0.3);
}

.buy-btn {
    background-color: #0D8203;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(13, 130, 3, 0.25);
    border-radius: 4px;
}

.buy-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 12px 25px rgba(13, 130, 3, 0.35);
}

.testimonial-card {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f6;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
    padding: 1.5rem 1rem 1rem 1rem;
    color: white;
}

.collage-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .collage-container {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: dense;
    }
    .item-tall { grid-row: span 2; }
}

.fb-container {
    font-family: Helvetica, Arial, sans-serif;
    background-color: white;
}

.fb-comment-box {
    background: #f0f2f5;
    border-radius: 18px;
    padding: 12px 16px;
    display: inline-block;
}

.fb-name {
    color: #050505;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
}

.fb-text {
    color: #050505;
    font-size: 15px;
    line-height: 1.33;
    margin-top: 2px;
}

.fb-actions {
    font-size: 12px;
    color: #65676b;
    margin-top: 4px;
    margin-left: 12px;
}

.fb-actions span {
    font-weight: 700;
    cursor: pointer;
}

.fb-actions span:hover { text-decoration: underline; }