﻿:root {
    --brand-red: #E40046;
    --brand-cream: #FDF7F0;
    --text-dark: #1a1a1a;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-cream);
    color: var(--text-dark);
}
.font-serif { font-family: 'Playfair Display', serif; }
.brand-accent { color: var(--brand-red); }
.bg-brand-accent { background-color: var(--brand-red); }
.border-brand-accent { border-color: var(--brand-red); }

.nav-colored { background-color: var(--brand-red); box-shadow: 0 4px 20px rgba(228, 0, 70, 0.2); }
.footer-colored { background-color: var(--brand-red); }

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(228, 0, 70, 0.1); }

/* Ajuste para los widgets de Elfsight */
.elfsight-app-container { width: 100%; min-height: 400px; }

/* Splash Screen */
#splash-screen {
    position: fixed;
    inset: 0;
    background-color: var(--brand-cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
#splash-screen.hidden-splash {
    opacity: 0;
    visibility: hidden;
}
.splash-logo {
    animation: pulseLogo 1s ease-in-out infinite alternate;
}
@keyframes pulseLogo {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* FAQ Accordion */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary ~ * {
    animation: sweep .3s ease-in-out;
}
@keyframes sweep {
    0%    {opacity: 0; transform: translateY(-10px)}
    100%  {opacity: 1; transform: translateY(0)}
}

/* Ocultar branding gratuito de Elfsight */
a[href*="elfsight.com"],
.eapps-link,
[class*="elfsight-app"] > a {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* ----------------------------------
   Awwwards Custom Cursor
---------------------------------- */
    .cursor-dot, .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 10000;
        pointer-events: none;
        display: none; /* Oculto por defecto */
    }
    
    @media (pointer: fine) {
        .cursor-dot, .cursor-outline {
            display: block; /* Solo visible en desktop/mouse */
        }
        
        body, a, button, input, textarea, select {
            cursor: none !important;
        }
    }
    
    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--brand-red);
    }
    
    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(228, 0, 70, 0.5);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }
    
    /* Hover state for links and interactive elements */
    .cursor-hover .cursor-outline {
        width: 60px;
        height: 60px;
        background-color: rgba(228, 0, 70, 0.1);
        border-color: var(--brand-red);
    }
}

/* ----------------------------------
   Timeline Animado ("El Proceso")
---------------------------------- */
.timeline-item {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}
.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}
.timeline-dot {
    transition: all 0.4s ease-out;
}
.timeline-item.active .timeline-dot {
    background-color: var(--brand-red);
    border-color: white;
    box-shadow: 0 0 0 4px rgba(228, 0, 70, 0.2);
}


