/* ============================================
   HERO HOME v2 - DISEÑO ELEGANTE Y DEPORTIVO
   Minimalista, sofisticado, con clase
   ============================================ */

/* Hero Principal - Clean & Elegant */
.ttc-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

/* Imagen de fondo - sutil */
.ttc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0.4;
    filter: grayscale(20%) contrast(1.1);
}

/* Overlay minimalista - solo oscurecimiento sutil */
.ttc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Línea superior discreta */
.ttc-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--brand) 50%,
        transparent 100%
    );
}

/* Contenedor del contenido */
.ttc-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Badge superior - minimal */
.ttc-hero-badge {
    display: inline-block;
    color: #ffffff;
    padding: 0.4rem 0;
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.7;
    border-bottom: 1px solid rgba(225, 29, 47, 0.3);
}

/* Título principal - Elegante y Bold */
.ttc-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
}

/* Acento rojo solo en una palabra */
.ttc-hero-title .accent {
    color: var(--brand);
    display: inline;
}

/* Subtítulo - Refinado */
.ttc-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Stats - Diseño horizontal minimalista */
.ttc-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ttc-stat-item {
    text-align: center;
    position: relative;
}

/* Separador entre stats */
.ttc-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.ttc-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ttc-stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 300;
}

/* Botón de acción - Minimalista */
.ttc-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.ttc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    font-weight: 400;
}

/* Botón primario - subtle */
.ttc-btn-primary {
    background: var(--brand);
    color: white;
    border: 1px solid var(--brand);
}

.ttc-btn-primary:hover {
    background: transparent;
    color: var(--brand);
    transform: translateY(-2px);
}

/* Botón secundario - outline */
.ttc-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ttc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
    transform: translateY(-2px);
}

/* Scroll indicator - discreto */
.ttc-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.ttc-scroll-indicator:hover {
    opacity: 0.6;
}

.ttc-scroll-indicator i {
    font-size: 1.5rem;
    color: #ffffff;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   SECCIÓN DE INSCRIPCIONES - ELEGANT
   ============================================ */

.ttc-inscripciones-wrapper {
    position: relative;
    z-index: 3;
    padding: 0 2rem;
    margin-top: -4rem; /* Overlap sutil con el hero */
}

.ttc-inscripciones-card {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 29, 47, 0.2);
    border-radius: 2px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Línea de acento superior */
.ttc-inscripciones-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--brand);
}

/* ============================================
   SECCIÓN DE CONTENIDO ADICIONAL
   ============================================ */

.ttc-content-section {
    padding: 6rem 2rem;
    background: var(--background);
}

.ttc-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid de cards - 3 columnas */
.ttc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ttc-card {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ttc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ttc-card:hover {
    border-color: rgba(225, 29, 47, 0.3);
    transform: translateY(-4px);
}

.ttc-card:hover::before {
    transform: scaleX(1);
}

.ttc-card-icon {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 1.5rem;
}

.ttc-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ttc-card-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ttc-card-link {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    color: var(--brand);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ttc-card-link:hover {
    color: white;
    gap: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .ttc-hero {
        min-height: 100vh;
    }
    
    .ttc-hero-content {
        padding: 0 1.5rem;
    }
    
    .ttc-hero-badge {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }
    
    .ttc-hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .ttc-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .ttc-hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .ttc-stat-item:not(:last-child)::after {
        display: none;
    }
    
    .ttc-stat-number {
        font-size: 2.5rem;
    }
    
    .ttc-hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ttc-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ttc-inscripciones-card {
        padding: 2rem;
    }
    
    .ttc-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ttc-hero-title {
        font-size: 2.5rem;
    }
    
    .ttc-stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   UTILIDADES PARA SECCIONES
   ============================================ */

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Línea decorativa */
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--brand);
    margin: 0 auto 2rem;
}
