/* Custom Styles para Clase.ink */
:root {
    --color-background: #FCFBF7;
    --color-primary: #A45D39; /* Terracota Argentina */
    --color-secondary: #2D3E40; /* Verde Petróleo Oscuro */
    --color-text: #1A1A1A;
    --color-accent: #E8D5C4;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
}

.hero-gradient {
    background: linear-gradient(135deg, #FCFBF7 0%, #E8D5C4 100%);
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-link-hover {
    position: relative;
}

.nav-link-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link-hover:hover::after {
    width: 100%;
}

.card-argentina {
    background: white;
    border-radius: 0px;
    border-left: 4px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.card-argentina:hover {
    transform: translateX(10px);
}

/* Tipografía manuscrita para acentos */
.accent-font {
    font-family: 'Lora', serif;
    font-style: italic;
}