:root {
    --bg-color: #EFE8DE;
    --text-main: #1a1a1a;
    --text-secondary: #5e5e5e;
    --accent: #704214; /* Tono cuero */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*overflow: hidden;*/
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.logo {
    max-width: 250px;
    margin-bottom: 3rem;
    filter: grayscale(1);
}

.category {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.description {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent);
    margin: 0 auto 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--text-main);
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background-color: var(--text-main);
    color: var(--bg-color);
}

footer {
    margin-top: 4rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

/* Animaciones simples */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

.fade-in-delayed {
    animation: fadeIn 2.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ... (root y estilos base se mantienen) ... */

.logo {
    /* Reducido un 15% del tamaño anterior (aprox 210px) */
    max-width: 150px; 
    margin-bottom: 2.5rem;
    filter: grayscale(1);
    transition: transform 0.3s ease;
}

/* --- Estilos del Scroll Down --- */
.scroll-down {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-down span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    font-weight: 500;
}

.scroll-down .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    position: relative;
    overflow: hidden;
}

/* Animación de la línea de scroll */
.scroll-down .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-main);
    animation: scroll-anim 2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scroll-anim {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Ajuste de Footer para que no choque con el scroll */
footer {
    margin-top: 2rem;
    padding-bottom: 2rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}