@charset "utf-8";
/* CSS Document */


/* --- ESTILOS GENERALES --- */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Contenedor que agrupa Encabezado + Menú para que queden fijos */
.cabecera-fija {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Siempre por encima de todo */
}

/* Estilo del Encabezado */
.contenedorP {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 5px solid #FF1A1A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contenedorH {
    display: flex;
    align-items: center;
    gap: 1px;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.8));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(6deg);
}

.tituloP {
    display: flex;
    flex-direction: column;
}

.contenedorP h1 {
    color: #33CCCC;
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.titulom {
    color: #FF1A1A;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 5px;
    text-align: center;
}

/* --- MENÚ --- */
nav {
    background-color: #1a1a1a;
    padding: 12px;
    text-align: center;
    border-bottom: 3px solid #33CCCC;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0  20px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #FF1A1A;
}

/* --- BANNER CON VIDEO --- */
.banner {
    /* Empuja el contenido hacia abajo para que no quede oculto bajo la cabecera fija */
    margin-top: 130px; 
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
	border-bottom: 3px solid #FF1A1A;
}

.contenedorV {
    width: 100%;
    height: 100%;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay h2 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.overlay p {
    font-size: 1.1rem;
    margin-top: 10px;
}



/*mi pie de pagina*/
/* --- ESTILOS DEL PIE DE PÁGINA --- */
.pie-pagina {
    background-color: #0f172a; /* Azul muy oscuro (igual que tu sidebar) */
    color: white;
    padding: 50px 0 0 0;
    border-top: 4px solid #FF1A1A; /* Línea roja vibrante */
    margin-top: 0;
}

.contenedor-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px 40px 20px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: #33CCCC; /* Azul cian de tu logo */
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FF1A1A;
    padding-left: 10px;
}

.logo-footer {
    width: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(51, 204, 204, 0.3));
}

.tag-tech {
    display: inline-block;
    background: #FF1A1A;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 10px;
}

/* Barra inferior final */
.copyright {
    background-color: #020617; /* Negro tech */
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
}









@charset "utf-8";
/* CSS Document */

