html {
    font-family: 'Figtree', sans-serif;
}

body {
    background-color: #1e1e1e;
    /* Igual que el fondo de VSCode */
    color: #e0e0e0;
    /* Texto claro pero no blanco puro */
    font-family: 'Inter', sans-serif;
    /* Moderna y legible */
    line-height: 1.6;
    margin: 0;
}

a {
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    color: #fa0580;
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    color: #dd74cf
}

html body header {
    display: flex;
    justify-content: space-between;
    background-color: #2c2c2c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    /* padding: 1rem 2rem; */
    padding: 15px 30px;
    border-bottom: 1px solid #333;
    position: fixed;
    z-index: 2;
    width: 95vw;
    /* ancho completo de la ventana */
}

header .logo {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    font-weight: 700;
}

html body nav ul {
    list-style-type: none;
    font-size: 16px;
}

html body nav ul li {
    display: inline-block;
}

html body nav ul li a {
    padding: 0 15px;
}

.hero {
    position: relative;
    z-index: 1;
    display: flex;
    background-color: #2c2c2c;
    padding: 80px 50px 20px 50px;
    justify-content: center;

}

.hero .hero-content {
    width: 1200px;
    display: flex;
    flex-direction: row;
}

.hero h1 {
    font-family: 'Figtree', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;

}

.hero p {
    font-family: 'Figtree', sans-serif;
    margin-bottom: 50px;
}

.left {
    width: 800px;
    align-self: center;
}


.btn {
    background-color: #dd74cf;
    color: #e0e0e0;
    padding: 15px 30px;
    border-radius: 5px;
}

.btn:hover {
    color: #333
}

.center {
    display: flex;
    justify-content: center;
}

.content {
    width: 1200px;
}

.row {
    display: flex;
    flex-direction: row;
}

.padded {
    padding: 20px 30px;
}

.vert-pad {
    padding: 20px 0;
}

.card {
    background-color: #333;
    box-shadow: 0 1px 2px #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px 30px;
}

.third {
    width: 360px;
    margin: 20px;
}

.contact-form input {
    font-family: 'Figtree', sans-serif;
    border: none;
    height: 30px;
    padding: 5px 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    width: calc(100% - 40px);
}

.contact-form textarea {
    font-family: 'Figtree', sans-serif;
    border: none;
    height: 100px;
    padding: 15px 10px;
    resize: none;
    margin-bottom: 15px;
    border-radius: 5px;
    width: calc(100% - 40px);
}

.full-width {
    width: 97%;
}

.footer {
    padding: 10px 0 0 0;
    background-color: #2c2c2c;
    color: #e0e0e0;

}

.social {
    padding: 10px;
}

.social-links a {
    margin: 0 10px;
}

.made-width {
    padding: 0 30px;
    color: #444444;
}

/* Tablets: menos de 1024px */
@media (max-width: 1024px) {

    .hero .hero-content,
    .content {
        width: 90%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left {
        width: 100%;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .third {
        width: 90%;
        margin: 10px 0;
    }
}

/* Smartphones: menos de 768px */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        width: 100%;
    }

    nav ul {
        padding: 0;
        margin: 10px 0 0 0;
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 5px 0;
    }

    nav ul li a {
        padding: 10px 15px;
        display: block;
    }

    .hero {
        padding: 100px 20px 30px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .card {
        padding: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }
}

/* --- CORRECCIONES PARA SECCIÓN SOBRE MÍ --- */

/* 1. Aumenta el espacio vertical (altura) de la sección */
#secc01 .vert-pad {
    padding: 80px 0;
    /* Antes era 20px. Esto le dará mucho más "aire" arriba y abajo */
}

/* 2. Ajusta el ancho para que sea flexible y no fijo en 800px */
#secc01 .left {
    width: auto;
    /* Sobrescribe los 800px fijos */
    flex: 1;
    /* Hace que esta columna sea 1.5 veces más ancha que la derecha */
    padding-right: 40px;
    /* Agrega separación extra con la columna derecha */
}

/* 3. Define la columna derecha para que ocupe el espacio restante */
#secc01 .right {
    flex: 1;
    /* Ocupa 1 parte proporcional */
    padding-left: 20px;
}