/* =============================================
   EYBER AUTO ASESORES — Coming Soon
   ============================================= */

:root {
    --dark: #0a0a0a;
    --red: #e63946;
    --gold: #c9a84c;
    --white: #ffffff;
    --font: 'Poppins', sans-serif;
    --font-d: 'Playfair Display', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    height: 100%; overflow-x: hidden;
    font-family: var(--font); color: var(--white);
}

.bg-image {
    position: fixed; inset: 0; z-index: 0;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}
.bg-overlay {
    position: fixed; inset: 0; z-index: 1;
    background: linear-gradient(160deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 40%, rgba(230,57,70,0.15) 100%);
}
#particles {
    position: fixed; inset: 0; z-index: 2; pointer-events: none;
}

.content {
    position: relative; z-index: 3;
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 40px 24px;
}

.logo {
    width: 80px; height: 80px;
    border: 2px solid var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--red);
    margin-bottom: 24px;
    animation: fadeInDown 1s ease forwards;
    opacity: 0;
}
.logo i { animation: pulse 2s ease-in-out infinite; }

.badge {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 24px;
    animation: fadeInDown 1s 0.2s ease forwards; opacity: 0;
}

h1 {
    font-family: var(--font-d); font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 16px;
    animation: fadeInDown 1s 0.4s ease forwards; opacity: 0;
}
h1 span {
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300; color: rgba(255,255,255,0.65);
    letter-spacing: 1px; margin-bottom: 48px;
    animation: fadeInDown 1s 0.6s ease forwards; opacity: 0;
}

.countdown {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 48px;
    animation: fadeInUp 1s 0.8s ease forwards; opacity: 0;
}
.cd-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 16px 20px;
    min-width: 80px; backdrop-filter: blur(10px);
}
.cd-num {
    display: block; font-family: var(--font-d);
    font-size: 2.2rem; font-weight: 900;
    background: linear-gradient(180deg, var(--white), rgba(255,255,255,0.6));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cd-label {
    display: block; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-top: 4px;
}
.cd-sep {
    font-size: 1.5rem; font-weight: 700;
    color: var(--red); opacity: 0.5;
}

.services-preview {
    display: flex; gap: 24px; flex-wrap: wrap;
    justify-content: center; margin-bottom: 40px;
    animation: fadeInUp 1s 1s ease forwards; opacity: 0;
}
.sp-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
}
.sp-item i { color: var(--red); font-size: 0.75rem; }

.contact-line {
    margin-bottom: 28px;
    animation: fadeInUp 1s 1.2s ease forwards; opacity: 0;
}
.contact-line a {
    color: rgba(255,255,255,0.5); text-decoration: none;
    font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
}
.contact-line a:hover { color: var(--red); }

.socials {
    display: flex; gap: 12px; margin-bottom: 40px;
    animation: fadeInUp 1s 1.4s ease forwards; opacity: 0;
}
.socials a {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none;
    font-size: 0.95rem; transition: all 0.3s ease;
}
.socials a:hover {
    background: var(--red); border-color: var(--red);
    color: var(--white); transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(230,57,70,0.4);
}

footer {
    font-size: 0.75rem; color: rgba(255,255,255,0.25);
    letter-spacing: 0.5px;
    animation: fadeInUp 1s 1.6s ease forwards; opacity: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@media (max-width: 640px) {
    .countdown { gap: 4px; }
    .cd-item { padding: 12px 10px; min-width: 60px; border-radius: 8px; }
    .cd-num { font-size: 1.6rem; }
    .cd-sep { font-size: 1rem; }
    .services-preview { gap: 10px; }
    .sp-item { font-size: 0.75rem; padding: 6px 12px; }
    .logo { width: 64px; height: 64px; font-size: 1.4rem; }
}
