@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --light: #eaecee;
    --color-text: #3c3e41;
    --box-shadow: 
    5px 5px 15px #c1c8d3, 
    -5px -5px 15px #ffffff;
    --gradient-bg: linear-gradient(-45deg, #D000F7, #24BAE3);
}

a {
    color: #3c3e41;
    text-decoration: none;
}

body {
    margin: 10px;
    background-color: var(--light);
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

header {
    position: fixed;
    top: 0;
    width: calc(100% - 20px);
    padding: 10px;
    border-bottom: 1px solid #dce1e4;
    display: grid;
    grid-template-columns: 30% 70%;
    background-color: var(--light);
    z-index: 1;
}

header .logo img {
    height: 50px;
    border-radius: 33px;
}

header ul {
    margin: 0;
    list-style: none;
    display: flex;
    height: 100%;
    justify-content: end;
    align-items: center;
}

header ul li {
    padding: 0 30px;
}

.container {
    width: 1200px;
    max-width: 90%;
    margin: auto;
}

header .navDiv,
header .nav label,
header input {
    display: none;
}

.contact {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.contact li {
    width: 50px;
    height: 50px;
    margin: 20px;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: 0.5s;
}

.contact li:hover {
    background-image: var(--gradient-bg);
    color: #fff;
}

/* Media Queries preservadas (sin modificaciones de projects/skills) */
@media screen and (min-width:1224px) {
    /* Estilos para desktop */
}

@media only screen and (max-width:1024px) {
    header ul {
        padding: 0;
    }
    .banner {
        grid-template-columns: 40% 60%;
    }
    .banner .content h1 {
        font-size: 2em;
    }
}

@media screen and (max-width: 767px) {
    .banner {
        grid-template-columns: 1fr;
    }
    .banner .content h1 {
        font-size: 0.5em;
    }
    header .navDiv {
        display: flex;
        justify-content: end;
        margin-right: 5px;
    }
    header label {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: linear-gradient(-45deg, #D000F7, #24BAE3);
        box-shadow: var(--box-shadow);
        border-radius: 50%;
    }
    header .nav {
        position: fixed;
        background-color: #F0F3F5;
        z-index: 1;
        width: 70%;
        height: 100vh;
        left: 0;
        top: 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 70px);
        transform: translateX(-100%);
        transition: 0.5s;
    }
    input#menu:checked ~ .nav {
        transform: translateX(0%);
    }
    header .nav label {
        width: 50px;
        height: 50px;
        box-shadow: var(--box-shadow);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: linear-gradient(-45deg, #D000F7, #24BAE3);
    }
    .banner .content {
        padding-right: 5px;
    }
}













/* Estilos del Footer - Versión mejorada */
.site-footer {
    background-color: var(--light);
    padding: 25px 0;
    border-top: 1px solid #dce1e4;
    margin-top: 80px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    color: #000000; /* Color morado del gradient */
    transform: translateY(-2px);
}

.footer-logo {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
    padding: 5px;
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 
        3px 3px 6px #c1c8d3, 
        -3px -3px 6px #ffffff;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.1);
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.1),
        3px 3px 6px #c1c8d3, 
        -3px -3px 6px #ffffff;
}

.footer-copyright {
    font-size: 0.9em;
    color: var(--color-text);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-brand {
        margin-bottom: 15px;
    }
    
    .footer-logo {
        height: 30px;
    }
}