/* Default Styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: "Mukta Malar", sans-serif;
    /* overflow: hidden; */
}

html{
    font-size: 62.5%;
}
/* End of Default Styles */
p{
    text-align: justify;
}
/* Container */
.container{
    width: 50%;
    height: 100%;
    background-color: #fff;
    /* overflow: hidden; */
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 6rem;
    background-color: #010048;
    padding: 0 15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    z-index: 1002;
}

.logo span {
    font-family: "Electrolize", cursive;
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-shadow: 
        2px 2px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000;
}


/* End of Logo */
/* Botón Hamburguesa */
.hamburger {
    display: none; /* Oculto por defecto */
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    z-index: 1002;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger:hover {
    color: #00bcd4;
    transform: translateY(-50%) scale(1.1);
}

/* Navi-Items */
.nav-items {
    width: 65%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    transition: all 0.4s ease;
}

.nav-item {
    list-style: none;
}

.nav-link {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fefefe;
    letter-spacing: 0.1rem;
    text-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    padding: 8px 10px;
    border-radius: 15px;
    border: 2px solid transparent;
    background: transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn{
    width: 13rem;
    height: 5rem;
    background-color: #fff;
    
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    letter-spacing: 0.1rem;
    color: #f88344;
    text-transform: uppercase;
}
.nav-btn:hover{
    transform: translateY(-0.2rem);
    transition: transform 0.3s;

    
}



.nav-link:hover {
    background: rgb(255, 35, 1);
    color: white;
    border-color: #000000;
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px rgba(255, 152, 0, 0.25),
        0 8px 16px rgba(255, 152, 0, 0.15);
    letter-spacing: 1px;
}


/* Efecto de onda al hacer clic */
.nav-link:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(255, 152, 0, 0.2);
}
/* End of Navi-Items */

/* End of Navigation */

/* Header */
header {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 14% 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* DOS COLUMNAS */
    gap: 80px;
    align-items: start; /* Cambiado de center a start */
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

/* ===== COLUMNA IZQUIERDA - TEXTO (CONFINADO) ===== */
.banner-column {
    animation: slideInLeft 0.8s ease;
    width: 100%; /* Ancho completo de la columna */
    max-width: 100%; /* No exceder el ancho */
    position: relative; /* Normal, no absolute */
    left: 0; /* Reset */
    top: 0; /* Reset */
    display: flex;
    flex-direction: column;
}

/* Contenedor interno para el texto */
.banner-content {
    width: 100%;
    max-width: 600px; /* Límite máximo de ancho */
    margin-right: auto; /* Mantener a la izquierda */
}
.banner-content h1 {
    font-family: "Croissant One", cursive;
    font-size: 6.5rem;
    color: #010048;
    margin-bottom: 20px;
    line-height: 1.2;
    width: 100%; /* Ocupa todo el ancho disponible */
    word-wrap: break-word; /* Romper palabras largas */
    overflow-wrap: break-word;
}
.banner-content .intro-text {
    margin-bottom: 25px;
    width: 100%;
}

.banner-content h3 {
    font-family: "Mooli", cursive;
    font-size: 3rem;
    color: #333;
    margin: 8px 0;
    font-weight: 400;
    width: 100%;
    display: block;
}

.banner-content h3:nth-of-type(2) {
    font-size: 4rem;
    font-weight: 700;
    color: #010048;
    margin-top: 5px;
    position: relative;
    display: inline-block;
    width: auto; /* Ancho según contenido */
}


.banner-content h3:nth-of-type(2)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #010048, #00bcd4);
    border-radius: 2px;
}

/* Párrafo CONFINADO */
.banner-content p {
    font-family: "Mukta Malar", sans-serif;
    text-align: justify;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-left: 4px solid #00bcd4;
    width: 100%; /* Ocupa el 100% de su contenedor */
    max-width: 100%; /* No más ancho que su columna */
    box-sizing: border-box; /* Incluye padding en el ancho */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

/* ===== COLUMNA DERECHA - IMAGEN ===== */
.image-column {
    display: flex;
    justify-content: flex-start; /* Cambiado de center a flex-start */
    align-items: flex-start; /* Alinear arriba */
    animation: slideInRight 0.8s ease;
    width: 100%;
}
.image-column .mypic {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.image-column img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Texto del Banner */
.banner {
    flex: 1;
    animation: slideInLeft 0.8s ease;
}


img{
    border-radius: 50%;
    width: 400px;
    
}

.normalimg{
    border-radius: 0px;
    width: 70%;    
    padding-left: 250px;

}
.midimg{

    border-radius: 0px;
    width: 80%;    

    /*padding-left: 100px;*/  
}
.mideximg{
    border-radius: 0px;
    width: 90%;    

    padding-left: 5%;  
    justify-content: center;
}
.extendimg{
    border-radius: 0px;
    width: 100%;    
    padding-left: 10px;  
}
/* Imagen */
.mypic {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: slideInRight 0.8s ease;
}

.mypic img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.mypic img:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Animaciones */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Elementos decorativos */
.header-decor {
    position: absolute;
    z-index: 1;
    opacity: 0.05;
}

.decor-circle-1 {
    width: 400px;
    height: 400px;
    background: #010048;
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.decor-circle-2 {
    width: 300px;
    height: 300px;
    background: #00bcd4;
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}
/* End of Header */

/* Banner */
.banner{
    position: absolute;
    
    top: 32%;
    left: 15%;
    z-index: 4;
}
.banner h1 {
    font-family: "Croissant One", cursive;
    font-size: 8rem;
    color: #010048;
    margin-bottom: 15px;
    line-height: 1.1;
}

.banner .subtitle {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 15px 0 25px;
}

.banner .subtitle h3 {
    font-family: "Mooli", cursive;
    font-size: 2.8rem;
    color: #666;
    font-weight: 400;
    margin: 0;
}

.banner .subtitle .name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #010048;
    position: relative;
}

.banner .subtitle .name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00bcd4;
    border-radius: 2px;
}

.banner p {
    font-family: "Mukta Malar", sans-serif;
    font-size: 1.8rem;
    line-height: 1.7;
    color: #555;
    margin-top: 25px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #00bcd4;
}


.banner h3{
    font-family: "Mooli", cursive;
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #313131;
    /* text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3); */
    margin: 0 0 1rem 0rem;
}

/* End of Banner */
.about{
    position: relative;
    top: 32%;
    left: 10%;
    display: flex;
    z-index: 4;
}
/* Background */
.backgrounds div{
    position: absolute;
}
/* End of Background */
/* End of Container */


/* Sección de la cuadrícula */
.grid-section {
    padding: 40px 20px;
    background: #f8f9fa;
    margin-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #010048;
    margin-bottom: 40px;
    font-family: 'Electrolize', sans-serif;
}

/* Contenedor de la cuadrícula 3x6 */
.grid-container-3x6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    grid-template-rows: repeat(6, auto);   /* 6 filas */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Items individuales */
.grid-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}


.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #00bcd4;
}

.grid-item i {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 15px;
}

.grid-item h3 {
    color: #010048;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Mukta Malar', sans-serif;
}

.grid-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}


.grid-container-3x6 .grid-item h1 {
    font-size: 3rem !important; /* Más grande que los demás */
    color: #010048;
    font-weight: 800;
    margin: 15px 0;
    font-family: 'Mukta Malar', sans-serif;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.grid-container-3x6 .grid-item p {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #010048;
    line-height: 1.4;
    margin-top: 10px;
    font-family: 'Mooli', sans-serif;
    
}

/* =========================================== */
/*         MENÚ HAMBURGUESA CORREGIDO          */
/* =========================================== */

/* Botón Hamburguesa - DEBE estar visible */
.hamburger {
    display: block !important; /* FORZAR visibilidad */
    background: none;
    border: none;
    color: white;
    font-size: 2.8rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 1002;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00bcd4;
}

/* Menú Normal - OCULTO por defecto en móviles */
.nav-items {
    width: 65%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
}

/* Cuando el menú está ABIERTO */
.nav-items.active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #010048;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        right: -300px;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

/* Overlay cuando el menú está abierto */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1000;
}

.menu-overlay.active {
    display: block;
}

/* Items del menú cuando está expandido */
.nav-items.active .nav-item {
    width: 100%;
    margin: 0;
}

.nav-items.active .nav-link {
    display: block;
    padding: 20px 30px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    text-align: left;
    margin: 0;
    width: 100%;
}

.nav-items.active .nav-link:hover {
    background: rgba(255, 35, 1, 0.9);
    padding-left: 40px;
}

/* =========================================== */
/*         MEDIA QUERIES SIMPLIFICADAS         */
/* =========================================== */

/* Pantallas grandes - menú normal */
@media (min-width: 1025px) {
    .hamburger {
        display: none !important; /* Oculto en desktop */
    }
    
    .nav-items {
        display: flex !important; /* Siempre visible */
        position: static;
        width: 65%;
        height: auto;
        flex-direction: row;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-link {
        padding: 8px 10px;
        border-radius: 15px;
        text-align: center;
    }
}

/* Tablets y móviles - menú hamburguesa */
@media (max-width: 1024px) {
    .hamburger {
        display: block !important;
    }
    
    .nav-items:not(.active) {
        display: none !important; /* Oculto cuando no está activo */
    }
    
    .navbar {
        padding: 0 2rem;
    }
}
/* =========================================== */
/*    RESPONSIVE - MANTENER TEXTO EN COLUMNA  */
/* =========================================== */

/* Para laptops (1200px) */
@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 60px;
    }
    
    .banner-content {
        max-width: 500px;
    }
    
    .banner-content h1 {
        font-size: 4rem;
    }
    
    .banner-content p {
        font-size: 1.8rem;
        padding: 22px;
    }
}

/* Tablets (900px) */
@media (max-width: 900px) {
    .hero-wrapper {
        gap: 50px;
    }
    
    .banner-content h1 {
        font-size: 3.5rem;
    }
    
    .banner-content h3 {
        font-size: 2.4rem;
    }
    
    .banner-content h3:nth-of-type(2) {
        font-size: 3rem;
    }
    
    .banner-content p {
        font-size: 1.7rem;
        padding: 20px;
    }
}

/* Tablets y móviles (768px) - CONVERTIR A 1 COLUMNA */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr; /* UNA SOLA COLUMNA */
        gap: 40px;
        text-align: center;
    }
    
    .banner-column {
        order: 2; /* Texto abajo */
        width: 100%;
        align-items: center; /* Centrar contenido */
    }
    
    .banner-content {
        max-width: 600px; /* Más ancho en una columna */
        margin: 0 auto; /* Centrar */
        text-align: left; /* Texto alineado a la izquierda */
    }
    
    .image-column {
        order: 1; /* Imagen arriba */
        justify-content: center; /* Centrar imagen */
    }
    
    .image-column .mypic {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .banner-content p {
        text-align: left; /* Mantener alineación izquierda */
    }
}

/* Móviles (480px) */
@media (max-width: 480px) {
    header {
        padding: 80px 4% 40px;
    }
    
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .banner-content h3 {
        font-size: 2rem;
    }
    
    .banner-content h3:nth-of-type(2) {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.6rem;
        padding: 18px;
    }
    
    .image-column .mypic {
        max-width: 320px;
    }
}



/* ===== ICONOS BLANCO Y NEGRO ===== */
.social-bw {
    margin-top: 5px;
    padding-top: 5px;
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
}

.connect-title {
    font-family: "Electrolize", sans-serif;
    font-size: 2rem;
    color: #010048;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    display: inline-block;
}

.connect-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.bw-icons {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

/* Iconos en blanco y negro base */
.bw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2rem;
    color: #333; /* Color gris oscuro */
    background: transparent;
    border: 2px solid #ddd;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efecto hover - Se vuelven blancos o negros */
.bw-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #333;
    background: #333;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Versión alternativa: Invertir colores en hover */
.bw-icon.alternate:hover {
    background: white;
    color: #333;
    border-color: #333;
}


/* Responsive para iconos blanco y negro */
@media (max-width: 1024px) {
    .bw-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .bw-icons {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .social-bw {
        text-align: center;
    }
    
    .connect-title {
        text-align: center;
        width: 100%;
    }
    
    .connect-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .bw-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .bw-icon {
        width: 44px;
        height: 44px;
        font-size: 1.7rem;
    }
    
    .bw-icon::after {
        font-size: 1.2rem;
        padding: 6px 12px;
    }
    
    .minimal-icons {
        justify-content: center;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .connect-title {
        font-size: 1.8rem;
    }
    
    .bw-icons {
        gap: 15px;
    }
    
    .bw-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    
    .social-bw {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .minimal-icons {
        gap: 20px;
    }
    
    .minimal-icon {
        font-size: 1.9rem;
    }
}

@media (max-width: 375px) {
    .bw-icon {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    
    .bw-icons {
        gap: 12px;
    }
    
    .minimal-icons {
        gap: 15px;
    }
}

/* =========================================== */
/*                  FOOTER                     */
/* =========================================== */

.main-footer {
    background: #010048;
    color: #ffffff;
    padding: 60px 0 40px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00bcd4, #010048, #00bcd4);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* ===== SECCIÓN DE REDES SOCIALES ===== */
.footer-social {
    text-align: center;
}

.footer-title {
    font-family: "Electrolize", sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #00bcd4;
    border-radius: 2px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.footer-icon:hover,
.footer-icon:focus {
    transform: translateY(-5px) scale(1.1);
    background: #ffffff;
    border-color: #00bcd4;
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
    outline: none;
}

.footer-icon:hover i,
.footer-icon:focus i {
    color: #010048;
}

/* ===== INFORMACIÓN DE COPYRIGHT ===== */
.footer-info {
    text-align: center;
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-family: "Mukta Malar", sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

.source-code {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.source-code p {
    font-family: "Mukta Malar", sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.source-link {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 5px;
    border-radius: 3px;
}

.source-link:hover,
.source-link:focus {
    color: #ffffff;
    background: rgba(0, 188, 212, 0.2);
    text-decoration: underline;
    outline: none;
}

.additional-info p {
    font-family: "Mukta Malar", sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-style: italic;
}

/* ===== LOGO DEL FOOTER ===== */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo-text span {
    font-family: "Electrolize", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text .year {
    font-size: 3rem;
    color: #00bcd4;
}

/* ===== ELEMENTOS DECORATIVOS ===== */
.footer-decor {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.footer-decor-1 {
    width: 200px;
    height: 200px;
    background: #00bcd4;
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.footer-decor-2 {
    width: 150px;
    height: 150px;
    background: #ffffff;
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
}

/* =========================================== */
/*           RESPONSIVE - FOOTER               */
/* =========================================== */

/* Tablets (1024px) */
@media screen and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Tablets (768px) */
@media screen and (max-width: 768px) {
    .main-footer {
        padding: 50px 0 30px;
        margin-top: 60px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .footer-icon {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .copyright p {
        font-size: 1.5rem;
    }
    
    .source-code p {
        font-size: 1.5rem;
    }
    
    .additional-info p {
        font-size: 1.4rem;
    }
    
    .logo-text span {
        font-size: 2rem;
    }
    
    .logo-text .year {
        font-size: 2.5rem;
    }
}

/* Móviles (480px) */
@media screen and (max-width: 480px) {
    .main-footer {
        padding: 40px 0 25px;
        margin-top: 50px;
    }
    
    .footer-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .footer-icons {
        gap: 15px;
    }
    
    .footer-icon {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }
    
    .copyright p {
        font-size: 1.4rem;
    }
    
    .source-code {
        padding: 12px;
    }
    
    .source-code p {
        font-size: 1.4rem;
    }
    
    .logo-text span {
        font-size: 1.8rem;
    }
    
    .logo-text .year {
        font-size: 2.2rem;
    }
}


/* =========================================== */
/*   STUDENT AGREEMENT - CSS MINIMALISTA      */
/* =========================================== */

/* Contenedor principal */
.student-agreement {
    padding: 40px 20px;
    margin: 40px 0;
}

.agreement-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Título principal */
.agreement-title {
    color: #010048;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Secciones de responsabilidades */
.responsibility-section {
    margin-bottom: 50px;
}

.section-title {
    color: #010048;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Lista de responsabilidades */
.responsibility-list {
    list-style-type: disc;
    padding-left: 25px;
}

.responsibility-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
}

/* Sección de firma - SIN RECUADRO */
.signature-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.signature-text {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.student-name {
    font-size: 26px;
    color: #010048;
    font-weight: bold;
}



/* RESET Y CONFIGURACIÓN BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}






/* ANOTHER CODE  */
        
        /* Contenedor principal */
        .code-container {
            max-width: 900px;
            width: 100%;
            margin: 5px auto;
        }
        
        /* Título del bloque */
        .block-title {
            background-color: #00979d;
            color: white;
            padding: 12px 25px;
            border-radius: 12px 12px 0 0;
            font-family: Arial, sans-serif;
            font-weight: bold;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -5px 10px rgba(0,0,0,0.05);
        }
        
        /* Botón de copiar en el header */
        .copy-header-btn {
            background-color: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 6px 15px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 13px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.2s ease;
        }
        
        .copy-header-btn:hover {
            background-color: rgba(255,255,255,0.3);
            transform: scale(1.02);
        }
        
        .copy-header-btn:active {
            transform: scale(0.98);
        }
        
        /* Bloque de código */
        .arduino-block {
            background-color: #0d1117;
            color: #f0f6fc;
            padding: 1px 1px 1px 15px;
            border-radius: 0 0 16px 16px;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: 20px;
            line-height: 1.7;
            overflow-x: auto;
            overflow-y:scroll;
            max-height: 400px;
            border: 1px solid #30363d;
            border-top: none;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3);
            position: relative;
        }
        
        /* Estilos de sintaxis */
        .arduino-block .keyword { color: #ff7b72; font-weight: bold; }
        .arduino-block .function { color: #79c0ff; }
        .arduino-block .number { color: #a5d6ff; }
        .arduino-block .string { color: #a5d6ff; }
        .arduino-block .comment { color: #8b949e; font-style: italic; }
        
        /* Estilo para el texto del código */
        .arduino-block pre {
            margin: 0;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        
        /* Botón flotante de copiar (alternativo) */
        .copy-float-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #2d2d2d;
            color: #e0e0e0;
            border: 1px solid #404040;
            padding: 8px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-family: Arial, sans-serif;
            display: flex;
            align-items: center;
            gap: 5px;
            opacity: 0.6;
            transition: opacity 0.2s ease;
            z-index: 10;
        }
        
        .arduino-block:hover .copy-float-btn {
            opacity: 1;
        }
        
        .copy-float-btn:hover {
            background-color: #3d3d3d;
            color: white;
        }
        
        /* Mensaje de confirmación */
        .copy-toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #00979d;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0,151,157,0.3);
            animation: fadeInOut 2s ease forwards;
            z-index: 1000;
        }
        
        @keyframes fadeInOut {
            0% { opacity: 0; transform: translate(-50%, 20px); }
            15% { opacity: 1; transform: translate(-50%, 0); }
            85% { opacity: 1; transform: translate(-50%, 0); }
            100% { opacity: 0; transform: translate(-50%, -20px); }
        }

/* END OF ANOTHER CODE */

/* CONTENEDOR CENTRADO ABSOLUTAMENTE */
.checklist-wrapper {
    /* CENTRADO PERFECTO */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    z-index: 10;
}

/* CONTENEDOR DE LA TABLA */
.checklist-container {
    background: white;
    padding-left:15%;
    padding-right:15%;
    padding-bottom:20px;
    padding-top:20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #fdfdfd;
    font-size: 18px;
    
}

/* TÍTULO */
.checklist-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

.checklist-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #2ecc71;
}



/* TABLA ESTILIZADA */
.checklist-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    
}

.checklist-table thead {
    background: linear-gradient(135deg, #3498db, #2980b9);

}

table, th, td {
  border:2px solid black;
  border-collapse: collapse;
}

td{
    text-align: left;
    padding-left: 20px;
    padding-right: 30px;
}

.checklist-table th {
    padding: 18px 20px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: none;
}

.checklist-table th:first-child {
    width: 80px;
    text-align: center;
}

.checklist-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    
}

.checklist-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.checklist-table tbody tr:hover {
    background-color: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.checklist-table td {
    padding: 16px 20px;
    font-size: 1rem;
    color: #333;
    border: none;
}

.checklist-table td:first-child {
    text-align: center;
}


.checkmark {
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 0%;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 1.2rem;
    padding-left:20px;
}

.status-cell{
padding-left:10px;
padding-right:10px;
}


#currentDate {
    font-weight: 600;
    color: #2c3e50;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .checklist-wrapper {
        width: 95%;
        padding: 20px 0;
    }
    
    .checklist-container {
        padding: 25px;
        font-size: 2rem;
    }
    
    .checklist-title {
        font-size: 3rem;
    }
    
    .checklist-table th,
    .checklist-table td {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .checklist-table th:first-child {
        width: 60px;
    }
    
    .checkmark {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .checklist-wrapper {
        width: 98%;
        padding: 15px 0;
    }
    
    .checklist-container {
        padding: 20px;
    }
    
    .checklist-title {
        font-size: 1.5rem;
    }
    
    .checklist-table {
        display: block;
        overflow-x: auto;
    }
    
    .checklist-table th,
    .checklist-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .checklist-table th:first-child {
        width: 50px;
    }
}



.checklist-container {
    animation: fadeIn 0.8s ease-out;
}

/* SI TIENES NAVBAR, AJUSTA ESTO */
body.with-navbar .checklist-wrapper {
    top: calc(50% + 40px); /* Ajusta 40px según la altura de tu navbar */
}


