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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(rgba(18, 16, 14, 0.6), rgba(26, 23, 21, 0.7)), url('1.jpg');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: #E9E4DD;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero {
    text-align: center;
    padding: 40px 0; /* menos alto para compactar */
    color: white;
}

.hero-content {
    background: rgba(24, 22, 20, 0.55);
    border-radius: 16px;
    padding: 32px 24px; /* compacto */
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #E5D8C7; /* tono mate claro */
}

.subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.85;
}

.countdown-container {
    margin: 24px 0; /* compactar */
}

.countdown-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #C8A97E; /* dorado mate */
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.time-unit {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 12px;
    min-width: 88px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease;
}

.time-unit:hover {
    transform: translateY(-3px);
}

.time-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #C8A97E; /* mate */
    margin-bottom: 6px;
}

.time-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A79A8B;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; /* antes 30px */
    margin: 20px 0; /* antes 60px */
}

.feature {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2rem; /* reducir */
    margin-bottom: 10px;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #C8A97E; /* mate */
}

.feature p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.55;
}

.contact-info {
    margin-top: 16px; /* reducir */
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    opacity: 0.85;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    color: #E9E4DD;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(233, 228, 221, 0.25);
    border-radius: 14px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #C8A97E;
    color: #C8A97E;
    transform: translateY(-1px);
}

.coffee-beans {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bean {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.05; /* más sutil y moderno */
    animation: float 8s ease-in-out infinite;
}

.bean-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bean-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.bean-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.bean-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.bean-5 {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 24px 0;
    }
    .hero-content {
        padding: 20px 16px;
    }
    .logo {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    .countdown-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    .countdown-timer {
        gap: 8px;
        margin-bottom: 12px;
    }
    .time-unit {
        min-width: 72px;
        padding: 10px 8px;
    }
    .time-number {
        font-size: 1.4rem;
    }
    .features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 12px 0;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        flex-direction: column;
        align-items: center;
    }
    
    .time-unit {
        width: 100%;
        max-width: 200px;
    }
}
