/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 24 2026 | 22:53:32 */
/* =========================================
   SECCIONES: SOBRE MÍ Y CONTACTO (CORREGIDO Y SIMÉTRICO)
   ========================================= */

/* --- 1. CONFIGURACIÓN DE FONDO Y ESTRUCTURA --- */
.contenedor-externo{
	padding:1rem 2rem;
}

.seccion-oscura {
    /* Relleno idéntico arriba y abajo 
    background-color: #0f172a; 
    
    FONDO MENOS OPACO (Más transparente para ver la red)
    background-image: 
        linear-gradient(to bottom, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.88)),
        url('https://cerrajerojuan.com/wp-content/uploads/2025/11/unnamed.jpg'); */    

    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Efecto Parallax */
    
    color: white;
    text-align: center;
    
    /* Sin bordes inferiores */
    border-top: none;
    border-bottom: none; 
    position: relative;
}

/* Contenedor Maestro (Centrado General) */
.contenedor-seccion {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* --- 2. TIPOGRAFÍA UNIFICADA --- */
.titulo-grande{
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    color: #FFC107 !important;
	margin-top:0;
}

.titulo-centro{
	padding-top:1rem;
}
.subtitulo-seccion, 
.texto-contacto {
    color: #ffffff !important;
    font-size: 1.1rem;
    margin-bottom: 50px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* Cabecera específica de contacto */
.cabecera-contacto {
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.cabecera-contacto .texto-contacto {
    margin-top: 15px;
    color: #e0e0e0;
}

/* --- 3. ALINEACIÓN DE GRILLAS (SIMETRÍA TOTAL) --- */
/* Esto obliga a que el contenido de 'Sobre Mí' y 'Contacto' midan lo mismo de ancho */
.grid-stats, 
.grid-contacto {
    display: flex;
    flex-wrap: wrap;
}

/* Alineación vertical */
.grid-stats { align-items: center; justify-content: center; }
.grid-contacto { align-items: flex-start;  justify-content: space-between;}


/* --- 4. ELEMENTOS INTERNOS (FLEXIBLES) --- */
/* Hacemos que ocupen el espacio disponible sin límites raros */
.stat-card{
    flex: 1; /* Crecen equitativamente */
	max-width: 300px; /* Ancho maximo */
    min-width: 280px; /* Ancho mínimo*/
	margin:1rem;
}

.col-info, .col-form{
	
} 

/* --- 5. ESTILOS DE CRISTAL (GLASSMORPHISM) --- */

/* Tarjetas de Estadísticas */
.stat-card {
    padding: 40px 20px;
    
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 193, 7, 0.05) !important;
    border-color: #FFC107;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.1);
}

.icono-stat { font-size: 2.5rem; margin-bottom: 10px; }
.contador { font-size: 3rem; color: #FFC107; font-weight: 800; margin: 0; text-shadow: 0 0 20px rgba(255, 193, 7, 0.3); }
.bio-resumen p { max-width: 700px; margin: 0 auto; line-height: 1.8; font-size: 1.1rem; color: #e0e0e0; }

/* Items de Info (Contacto) */
.info-item {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 25px; padding: 20px;
    text-align: left;
    
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.3s;
}
.info-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateX(5px);
}
.icono-amarillo { font-size: 1.5rem; }
.info-item h4, .info-item p { margin: 0; color: white !important; }

/* Formulario */
.form-estilo {
    padding: 40px;
    text-align: left;
    
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
}

.form-titulo { color: #FFC107; margin-bottom: 20px; text-transform: uppercase; text-align: center; }

.grupo-input { position: relative; margin-bottom: 25px; }
.grupo-input input, .grupo-input textarea {
    width: 100%; padding: 10px 0; background: transparent; border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); color: white; font-size: 1rem; outline: none; transition: border-color 0.3s;
}
.grupo-input label { position: absolute; top: 10px; left: 0; color: #aaa; pointer-events: none; transition: 0.3s ease all; }
.grupo-input input:focus ~ label, .grupo-input input:not(:placeholder-shown) ~ label,
.grupo-input textarea:focus ~ label, .grupo-input textarea:not(:placeholder-shown) ~ label {
    top: -20px; font-size: 0.8rem; color: #FFC107;
}
.grupo-input input:focus, .grupo-input textarea:focus { border-bottom-color: #FFC107; }

.boton-enviar {
    width: 100%; background: #FFC107; color: #0f172a; border: none; padding: 15px;
    font-weight: 900; border-radius: 30px; cursor: pointer; transition: 0.3s; text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}
.boton-enviar:hover { background: white; transform: scale(1.02); letter-spacing: 1px; }

/* --- ANIMACIONES DE ENTRADA (JS REQUERIDO) --- */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s ease-out;
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.activo {
    opacity: 1;
    transform: translate(0, 0);
}



