/* ==========================================================================
   SOBRE-MI.CSS - Ajustes específicos para la página de autor
   Depende de: index.css para los componentes base
   ========================================================================== */

/* --- Ajustes del Hero --- */
.hero-sobre-mi {
    padding: 80px 0 40px; 
    background: transparent;
}

.contenedor-centrado {
    grid-template-columns: 1fr !important; 
    max-width: 800px;
    margin: 0 auto !important; 
    justify-items: center; 
}

.layout-centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.layout-centro .sidebar-label {
    margin-bottom: 20px;
}

.layout-centro h1,
.layout-centro .hero-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* --- Ajustes del Contenedor Principal --- */
.reset-fondo {
    background: transparent;
    border-bottom: none;
    padding-top: 0;
}

.tarjeta-alta {
    height: 100%; 
}

/* --- Estilos de Texto y Listas --- */
.contenido-texto p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contenido-texto p:last-child {
    margin-bottom: 0;
}

.lista-tech {
    list-style: none;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.lista-tech li {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.lista-tech li::before {
    content: '⚡';
    font-size: 1rem;
    filter: grayscale(0.2); 
}

.lista-tech li strong {
    color: var(--text-main);
    font-family: var(--font-titles);
    font-weight: 700;
}

/* ==========================================================================
   CALL TO ACTION FINAL (Botón Premium Centrado)
   ========================================================================== */
.cta-central {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 80px;
    padding-bottom: 60px;
}

.btn-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--text-main) !important; /* Negro/Color oscuro elegante */
    color: var(--bg-card) !important;
    border-radius: 12px;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: none;
}

.btn-hero:hover {
    background: var(--primary) !important; /* Morado IAFlow al pasar el cursor */
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
}

/* --- Adaptabilidad Móvil --- */
@media (max-width: 768px) {
    .hero-sobre-mi {
        padding: 40px 0 20px;
    }
    
    .contenido-texto p {
        font-size: 1.05rem;
    }
    
    .cta-central {
        margin-top: 50px;
    }
    
    .btn-hero {
        width: 100%;
    }
}