/* * ==========================================
 * 1. CONFIGURACIÓN Y VARIABLES (CSS BASE v5 - Sofisticado)
 * ==========================================
 */
:root {
    /* Paleta "Akron Dark" - Estilo V2 Industrial */
    --color-bg-light: #1f1f1f;      /* Gris Oscuro Profundo (Fondo Principal) */
    --color-bg-card: #2d2d2d;       /* Gris Medio (Tarjetas/Secciones) */
    --color-primary: #FFFFFF;       /* Blanco (Texto Principal) */
    --color-secondary: #d1d1d1;     /* Gris Claro (Texto Secundario) */
    
    /* Acentos Akron - Se mantienen para continuidad de marca */
    --color-accent-1: #FFB84D;      /* Amarillo-Naranja Suave */
    --color-accent-1-light: #FFD699; /* Amarillo Claro */
    --color-accent-1-dark: #FF9F1C; /* Naranja Dorado */
    --color-accent-2: #FFFFFF;      /* Blanco para contraste en botones secundarios */
    --color-accent-2-light: #e0e0e0;
    --color-accent-3: #FFC266;
    
    --color-border: #404040;        /* Gris oscuro para bordes sutiles */
    --color-shadow: rgba(0,0,0,0.4); /* Sombras oscuras */

    /* Tipografía */
    --font-headings: 'Rajdhani', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Espaciado y Layout */
    --grid-gutter: 2rem;
    --container-width: 1280px;
    --header-height: 90px;
    --radius-md: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    padding-top: var(--header-height);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--color-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilidades SUITCSS (u-) */
.u-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.u-textCenter { text-align: center; }
.u-flexCenter { display: flex; align-items: center; justify-content: center; }
.u-mb-1 { margin-bottom: 1rem; }
.u-mb-2 { margin-bottom: 2rem; }
.u-mb-3 { margin-bottom: 3rem; }
.u-accent { color: var(--color-accent-1); }

/* Botones v6 - Premium Interactive */
.Button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9em 2.2em;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-headings);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efecto shine animado */
.Button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 2;
}

.Button:hover::before {
    left: 100%;
}

/* Botón Primario - Gradiente Dinámico*/
.Button--primary {
    background: linear-gradient(135deg, 
        var(--color-accent-1) 0%, 
        var(--color-accent-1-dark) 100%);
    color: white;
    box-shadow: 
        0 4px 20px rgba(196, 30, 58, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Button--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--color-accent-1-bright) 0%, 
        var(--color-accent-1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.Button--primary:hover {
    box-shadow: 
        0 6px 30px rgba(196, 30, 58, 0.6),
        0 0 40px rgba(196, 30, 58, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.Button--primary:hover::after {
    opacity: 1;
}

.Button--primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Botón Secundario - Steel Effect */
.Button--secondary {
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(184, 184, 184, 0.05) 100%);
    border: 2px solid var(--color-accent-2);
    color: var(--color-accent-2);
    position: relative;
}

.Button--secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--color-accent-2) 0%, 
        var(--color-accent-2-glow) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.Button--secondary:hover {
    color: #0f0f0f;
    border-color: var(--color-accent-2-glow);
    box-shadow: 
        0 0 25px rgba(184, 184, 184, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.Button--secondary:hover::after {
    opacity: 1;
}

/* Botón Outline - Minimal Elegante */
.Button--outline {
    background: transparent;
    border: 1.5px solid var(--color-secondary);
    color: var(--color-secondary);
    position: relative;
}

.Button--outline::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid white;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 3px;
}

.Button--outline:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.Button--outline:hover::after {
    opacity: 1;
}

.Button--full { width: 100%; }

/* * ==========================================
 * 2. COMPONENTES GLOBALES
 * ==========================================
 */

/* Header v6 - Light Premium Navigation */
.Header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-accent-1) 30%, 
        var(--color-accent-1-light) 50%, 
        var(--color-accent-1) 70%, 
        transparent 100%) 1;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px var(--color-shadow);
    transition: all 0.3s ease;
}

.Header:hover {
    box-shadow: 0 4px 30px rgba(255, 184, 77, 0.15);
}

.Header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.Logo {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.Logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(196, 30, 58, 0.3));
}

.Logo img {
    max-height: 60px;
    width: auto;
}

/* Nav v5 - Premium Interactive */
.Nav-list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.Nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: inline-block;
}

/* Efecto de fondo animado */
.Nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 184, 77, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: -1;
}

.Nav-link:hover::before {
    left: 100%;
}

/* Barra inferior con gradiente */
.Nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-accent-1-dark) 0%, 
        var(--color-accent-1) 50%, 
        var(--color-accent-1-dark) 100%);
    box-shadow: 0 0 10px rgba(255, 184, 77, 0.4);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
}

.Nav-link:hover::after {
    width: 80%;
}

/* Estado Hover */
.Nav-link:hover {
    color: var(--color-accent-1-dark);
    background: rgba(255, 184, 77, 0.08);
    transform: translateY(-2px);
}

/* Estado Activo - Más prominente */
.Nav-link.is-active {
    color: var(--color-accent-1-dark);
    background: linear-gradient(135deg, 
        rgba(255, 184, 77, 0.15) 0%, 
        rgba(255, 184, 77, 0.08) 100%);
    border: 1px solid rgba(255, 184, 77, 0.3);
    box-shadow: 
        0 0 15px rgba(255, 184, 77, 0.15),
        inset 0 0 15px rgba(255, 184, 77, 0.05);
    position: relative;
}

.Nav-link.is-active::after {
    width: 90%;
    background: linear-gradient(90deg, 
        var(--color-accent-1-dark) 0%, 
        var(--color-accent-1) 50%, 
        var(--color-accent-1-dark) 100%);
    box-shadow: 
        0 0 15px rgba(255, 159, 28, 0.6),
        0 0 30px rgba(255, 184, 77, 0.4);
}

/* Efecto de brillo en hover (sutil) */
.Nav-link.is-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 184, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 184, 77, 0.1) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.MobileMenuTrigger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Footer v6 - Enhanced Social Icons */
/* Footer v6 - Light Premium */
.Footer {
    background: #FFFFFF;
    border-top: 1px solid var(--color-border);
    border-image: none;
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.03);
}

.Footer::before {
    display: none;
}

.Footer-col h4 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.Footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg,
        var(--color-accent-1) 0%,
        transparent 100%);
}

.Footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.Footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F5F5F5;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.Footer-socials a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle,
        var(--color-accent-1) 0%,
        var(--color-accent-1-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.Footer-socials a:hover::before {
    opacity: 1;
}

.Footer-socials a:hover {
    border-color: var(--color-accent-1-bright);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 10px 30px rgba(196, 30, 58, 0.4),
        0 0 40px rgba(196, 30, 58, 0.3);
}

.Footer-socials a i {
    position: relative;
    z-index: 1;
}

/* * ==========================================
 * 3. COMPONENTES UI (Cards, Drawers, Forms)
 * ==========================================
 */

/* Section Styles */
.Section { padding: 6rem 0; position: relative; }
.Section--alt { background: #F9F9F9; }

.Section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    color: var(--color-primary);
}

.Section-title span { color: var(--color-accent-1); }

/* Grid System */
.Grid {
    display: grid;
    gap: 2rem;
}
.Grid--cols2 { grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); }
.Grid--cols3 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }

/* Card Styles v7 - Light Premium 3D Effect */
.Card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Borde gradiente animado */
.Card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 2px;
    background: linear-gradient(135deg,
        transparent 0%,
        var(--color-accent-1) 50%,
        transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.Card:hover::before {
    opacity: 1;
}

/* Glow effect */
.Card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 184, 77, 0.12) 0%,
        transparent 60%
    );
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.Card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: transparent;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 0 30px rgba(255, 184, 77, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.Card:hover::after {
    opacity: 1;
}

.Card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--color-border);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: grayscale(20%) brightness(0.9);
}

.Card:hover .Card-img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.05);
}

.Card-body { 
    padding: 2rem; 
    flex: 1; 
    display: flex; 
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.Card-title { 
    margin-bottom: 0.5rem; 
    font-size: 1.4rem; 
    color: white;
    transition: color 0.3s ease;
}

.Card:hover .Card-title {
    color: var(--color-accent-1-bright);
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
}

.Card-subtitle { 
    color: var(--color-accent-2); 
    font-size: 0.8rem; 
    margin-bottom: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.Card:hover .Card-subtitle {
    color: var(--color-accent-2-glow);
}

.Card-desc { 
    font-size: 0.95rem; 
    color: var(--color-secondary); 
    margin-bottom: 1.5rem; 
    flex: 1;
    transition: color 0.3s ease;
}

.Card:hover .Card-desc {
    color: var(--color-primary);
}

/* DRAWER SYSTEM v2 - Premium Lateral Forms */
.DrawerOverlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.DrawerOverlay.is-open { 
    opacity: 1; 
    pointer-events: all; 
}

.Drawer {
    position: fixed;
    top: 0; right: 0;
    width: 520px;
    max-width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.98) 0%, 
        rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, 
        var(--color-accent-1) 0%, 
        var(--color-accent-1-dark) 50%,
        var(--color-accent-1) 100%) 1;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2100;
    display: flex;
    flex-direction: column;
    box-shadow: 
        -20px 0 60px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(196, 30, 58, 0.15);
}

.DrawerOverlay.is-open .Drawer {
    transform: translateX(0);
}

.Drawer-header {
    padding: 2.5rem 2rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg,
        var(--color-accent-1) 0%,
        transparent 100%) 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,
        rgba(20, 20, 20, 0.9) 0%,
        rgba(15, 15, 15, 0.95) 100%);
    position: relative;
}

.Drawer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-accent-2) 50%,
        transparent 100%);
}

.Drawer-content {
    padding: 2.5rem 2rem;
    overflow-y: auto;
    flex: 1;
}

.Drawer-content::-webkit-scrollbar {
    width: 8px;
}

.Drawer-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.Drawer-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
        var(--color-accent-1) 0%,
        var(--color-accent-1-dark) 100%);
    border-radius: 4px;
}

.Drawer-content::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-1-bright);
}

.Drawer-close {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 4px;
    color: var(--color-accent-2);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Drawer-close:hover { 
    color: white;
    background: var(--color-accent-1);
    border-color: var(--color-accent-1-bright);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.4);
    transform: scale(1.1);
}

/* Generic Modal (For details view, minimal usage) */
.ModalOverlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(5px);
    z-index: 2500; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.ModalOverlay.is-open { opacity: 1; pointer-events: all; }
.ModalContent {
    background: var(--color-bg-card); width: 90%; max-width: 900px; max-height: 90vh;
    border: 1px solid var(--color-border); overflow-y: auto;
    transform: scale(0.95); transition: transform 0.3s; padding:0;
}
.ModalOverlay.is-open .ModalContent { transform: scale(1); }
.ModalClose { 
     position: absolute; top: 15px; right: 20px; background: none; border: none;
     color: white; font-size: 2rem; cursor: pointer; z-index: 100;
}

/* Forms v5 */
.Form-group { margin-bottom: 1.5rem; }

.Form-label {
    display: block; margin-bottom: 0.5rem;
    color: var(--color-accent-2); font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 1px;
}

.Form-input, .Form-textarea, .Form-select {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid var(--color-border);
    padding: 1rem;
    color: white;
    font-family: inherit;
    transition: all 0.3s;
    border-radius: 2px;
}

.Form-input:focus, .Form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-1);
    background: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(153,0,51,0.1);
}

.HoneyPot { display: none; }

/* * ==========================================
 * 4. CAROUSEL & SLIDERS
 * ==========================================
 */
.SliderContainer { position: relative; padding: 0 20px; }
.SliderWrapper { overflow: hidden; margin: -20px; padding: 20px; }
.SliderTrack { display: flex; gap: 2rem; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.SliderItem { flex: 0 0 320px; width: 320px; }

.SliderArrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(0,0,0,0.5);
    color: white; border: 1px solid var(--color-border);
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; z-index: 10; transition: all 0.3s;
}
.SliderArrow:hover { background: var(--color-accent-1); border-color: var(--color-accent-1); }
.SliderArrow--prev { left: -10px; }
.SliderArrow--next { right: -10px; }

/* Media Queries */
@media (max-width: 768px) {
    :root { --header-height: 70px; }
    .Nav { 
        position: fixed; top: var(--header-height); left: 0; width: 100%; height: 100vh;
        background: var(--color-bg-dark); z-index: 999;
        padding: 2rem;
        transform: translateX(100%); transition: transform 0.3s;
    }
    .Nav.is-open { transform: translateX(0); }
    .Nav-list { flex-direction: column; text-align: center; gap: 2rem; font-size: 1.5rem; }
    .MobileMenuTrigger { display: block; }
    
    .SliderContainer { padding: 0; }
    .SliderArrow { display: none; }
    .SliderWrapper { overflow-x: auto; scroll-snap-type: x mandatory; }
    .SliderItem { scroll-snap-align: center; flex: 0 0 85vw; width: 85vw; }
    
    .Drawer { width: 100%; border-left: none; border-top: 2px solid var(--color-accent-1); }
    .Grid--cols2, .Grid--cols3 { grid-template-columns: 1fr; }
}
