@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
:root {
    --primaryColor: rgba(255, 255, 255, 0.83);
    --accentColor: #cbd9e6;
    --backgroundDark: #233e5d;
    --secondaryColor: rgba(245, 239, 235, 0.75);
    --cardBackground: #fdfdfd;
    --textSoft: #000000;
}
a{
    text-decoration: none;
    color: #5454ff;
}
.skills-title {
    color: var(--backgroundDark);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.name {
    color: var(--textSoft);
}
html{
    scroll-behavior: smooth;
}
html, body {
    height: 100%;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    font-weight: 100;
    background-color: rgba(161, 194, 255, 0.4);
    background-image: radial-gradient(80% 80% at 50% -20%, rgba(38, 125, 255, 0.2), rgba(217, 227, 255, 0.15));
    background-repeat: no-repeat;
    background-size: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

/* NAVBAR GENERAL */
.main-nav {
    background-size: contain;
    background-repeat: repeat;
    padding: 20px;
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: var(--primaryColor);
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo de la lista de navegación */
.nav_links {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 12px 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

/* Ocultar scrollbar en navegadores webkit */
.nav_links::-webkit-scrollbar {
    display: none;
}

/* Estilo de los enlaces */
.nav_links a {
    color: var(--backgroundDark);
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: letter-spacing 0.3s ease, color 0.3s ease;
    position: relative;
    white-space: nowrap; /* Esto fuerza que no salten de línea */
    padding: 5px 2px;
}

/* Animación en hover: expansión de letras */
.nav_links a:hover {
    letter-spacing: 4px;
    color: #061225;
}

/* Línea animada abajo del enlace */
.nav_links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: rgba(106, 173, 253, 0.89);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav_links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* HEADER */
.header-section {
    display: flex;
    text-align: left;
}

.section {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.pro-pic {
    border: 2px solid #312b2b;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 15px;
    text-align: center;
}

.info h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family:'Raleway', sans-serif;
    align-content: center;
}

.info p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--textSoft);
}

.titulos{
    padding: 0;
    font-size: 22px;
    text-align: center;
    list-style-type: none;
}

.titulos li {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 5px;
}

.nav-redes{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.redes-btn{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.redes-btn a{
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(217, 227, 255, 0.15);
    border: 0.5px solid rgba(0, 0, 0, 0.34);
    border-radius: 30px;
    padding: 0.7rem 1rem;
    width: 140px;
    height: 40px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
    justify-content: center;
}

.redes-btn a:hover{
    background-color: rgba(0, 0, 0, 0.20);
    transform: translateX(4px);
}

.redes-btn svg{
    width: 20px;
    height: 20px;
    color: #0e76a8;
}

.redes-btn span{
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Sobre MI */
.about-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.contenido{
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    gap: 30px;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    border-radius: 30px;
    position: relative;
    padding-top: 3rem;
}

.about-icon {
    position: absolute;
    top: 30px;
    left: 50px;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Título centrado */
.contenido h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--backgroundDark);
    position: relative;
}

.contenido h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0dcaf0;
    border-radius: 2px;
}

.contenido p{
    font-size: 18px;
    line-height: 1.6;
    color: var(--textSoft);
}

/* SKILLS */
.skills-section {
    background-color: transparent;
    padding: 40px 20px;
    text-align: center;
}

.skills-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family:'Raleway', sans-serif;
    position: relative;
}

.skills-title svg {
    margin-left: 8px;
    vertical-align: middle;
    width: 28px;
    height: 28px;
}

.skills-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0dcaf0;
    margin: 10px auto 0;
    border-radius: 5px;
}

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.skills-category {
    flex: 1;
    min-width: 250px;
    max-width: 450px;
}

.skills-category h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    color: var(--backgroundDark);
    position: relative;
}

.skills-category h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #0dcaf0;
    margin: 6px auto 0;
    border-radius: 5px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    justify-items: center;
}

.skill-card {
    background-color: var(--secondaryColor);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.30);
    padding: 16px;
    width: 140px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

.skill-card .icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(1.2);
}

.skill-card p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: var(--textSoft);
}

/* Barras de nivel */
.skill-bar {
    margin-top: 8px;
    height: 14px;
    border-radius: 8px;
    background-color: #444;
    position: relative;
    overflow: hidden;
}

.skill-bar span {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: white;
    z-index: 2;
    white-space: nowrap;
}

/* Niveles */
.skill-card.basic .skill-bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 40%;
    background-color: green;
    top: 0;
    left: 0;
    border-radius: 8px;
    z-index: 1;
}

.skill-card.intermediate .skill-bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 70%;
    background-color: goldenrod;
    top: 0;
    left: 0;
    border-radius: 8px;
    z-index: 1;
}

.skill-card.advanced .skill-bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: crimson;
    top: 0;
    left: 0;
    border-radius: 8px;
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SUBRAYADO COMO SKILLS EN PORTFOLIO Y CONTACTO */
.portfolio-title::after,
.skills-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0dcaf0;
    margin: 10px auto 0;
    border-radius: 5px;
}

#contacto .skills-title {
    font-size: 2rem;
    font-family:'Raleway', sans-serif;
}
/* --------------------- PORTFOLIO --------------------- */
.portfolio-section{background-color:transparent;padding:40px 20px;text-align:center}
.portfolio-title{font-size:2rem;margin-bottom:10px;font-family:'Playfair Display',serif;color:var(--backgroundDark)}
.portfolio-title svg{margin-left:8px;vertical-align:middle;width:28px;height:28px}
.portfolio-description{color:var(--textSoft);margin-bottom:30px;padding:0 15px}

/* Grid responsivo (cards más chicas) */
.projects-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); /* unidad */
    gap:1.25rem;
    justify-content:center;
    max-width:1100px;
    margin:0 auto;
}

/* Las cards normales ocupan 2 unidades (≈360px); la mini, 1 */
.project-card{ grid-column:span 2; }
.project-mini{ grid-column:span 1; max-width:100%; padding:10px; }
.project-mini h3{ font-size:.9rem; }
.project-mini p{ font-size:.85rem; -webkit-line-clamp:3; }

/* En pantallas chicas, todas 1 unidad */
@media (max-width:540px){
    .project-card,.project-mini{ grid-column:span 1; }
}

/* Card base (compacta) */
.project-card{
    position:relative;
    background:var(--cardBackground);
    border:1px solid rgba(0,0,0,.08);
    border-radius:14px;
    padding:12px;
    display:grid;
    grid-template-rows:auto auto 1fr auto;
    gap:.65rem;
    box-shadow:0 8px 24px rgba(0,0,0,.12);
    transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.project-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,.16);
    border-color:rgba(0,0,0,.14);
}

/* Imagen 16:9 */
.project-cover{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:10px;
    background:#eef3ff;
}

/* Texto */
.project-card h3{
    margin:.1rem 0 .15rem;
    font-size:.95rem;
    line-height:1.3;
    color:var(--backgroundDark);
}
.project-card p{
    color:var(--textSoft);
    font-size:.9rem;
    line-height:1.45;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* Chips y links */
.project-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.2rem}
.project-tags span{
    font-size:.72rem;
    padding:.24rem .5rem;
    border-radius:999px;
    border:1px solid rgba(0,0,0,.15);
    background:rgba(217,227,255,.35);
    color:var(--backgroundDark);
}

.project-links{margin-top:.2rem;display:flex;gap:.5rem;flex-wrap:wrap}
.project-links a{
    display:inline-block;padding:.4rem .7rem;border-radius:.55rem;
    text-decoration:none;font-weight:600;font-size:.9rem;
    border:1px solid var(--backgroundDark);color:var(--backgroundDark);
    transition:background .2s ease,color .2s ease,transform .2s ease;
}
.project-links a:hover{background:var(--backgroundDark);color:#fff;transform:translateY(-2px)}

/* Acentos por clase */
.project-card.accent-teal{box-shadow:0 0 0 1px rgba(13,202,240,.35) inset,0 8px 24px rgba(0,0,0,.10)}
.project-card.accent-blue{box-shadow:0 0 0 1px rgba(77,163,255,.35) inset,0 8px 24px rgba(0,0,0,.10)}
.project-card.accent-violet{box-shadow:0 0 0 1px rgba(138,124,247,.35) inset,0 8px 24px rgba(0,0,0,.10)}
.project-card.accent-green{box-shadow:0 0 0 1px rgba(34,197,94,.35) inset,0 8px 24px rgba(0,0,0,.10)}

/* Placeholder */
.placeholder-card{
    background-color:rgba(255,255,255,.05);
    border:2px dashed var(--textSoft);
    color:var(--textSoft);
    padding:40px 30px;border-radius:12px;width:100%;max-width:300px;font-style:italic
}

.portfolio-title::after{
    content:'';display:block;width:60px;height:3px;background-color:var(--accentColor);
    margin:10px auto 0;border-radius:5px
}

/* Accesibilidad: card clickeable a repo */
.project-card[data-href]{ cursor:pointer; }
.project-card[data-href] .project-links a{ cursor:pointer; } /* cursor normal en links internos */
.project-card[data-href]:focus{ outline:3px solid #22c1ff; outline-offset:3px; }

/* Links de estado */
.project-links a.disabled{ opacity:.55; cursor:not-allowed; border-style:dashed; pointer-events:none; }
.project-links a.ghost{ border-color:#0d6efd; color:#0d6efd; }
.project-links a.ghost:hover{ background:#0d6efd; color:#fff; }

/* --------- Card PRIVADA (mismo tamaño que las demás) --------- */
.project-card.is-private{ cursor:default; }
.project-card.is-private:hover{ transform:none; box-shadow:0 8px 24px rgba(0,0,0,.12); }
.project-card.is-private .project-cover{ filter:grayscale(.35) saturate(.9); }

/* Chip/Badge arriba a la izquierda */
.status-badges{
    position:absolute; top:10px; left:10px; display:flex; gap:.4rem; pointer-events:none;
}
.badge{
    display:inline-flex; align-items:center; gap:.35rem;
    font-size:.72rem; padding:.22rem .55rem; border-radius:999px;
    border:1px solid rgba(0,0,0,.15); line-height:1; background:#111; color:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.18);
}
.badge--private{ background:#1f2937; border-color:#0b1220; }
.badge--wip{ background:#fff3cd; color:#7a5d00; border-color:#f3e089; } /* WIP: Work In Progress */

/* Responsive */
@media (max-width:768px){
    .projects-wrapper{ gap:1.25rem }
    .project-card{ padding:12px }
    .project-card h3{ font-size:1rem }
    .project-card p{ -webkit-line-clamp:4 }
}
@media (max-width:560px){
    .projects-inline-note{ flex-direction:column; align-items:flex-start }
    .projects-inline-note .note-icon{ width:32px; height:32px }
}
@media (prefers-reduced-motion:reduce){
    .project-card,.project-links a{ transition:none!important }
}

/* Tooltip (tu caja de descripción por click en skills) */
.description-box{
    position:absolute;z-index:9999;max-width:260px;background:#111;color:#fff;
    padding:.6rem .8rem;border-radius:.6rem;box-shadow:0 10px 24px rgba(0,0,0,.25);font-size:.85rem
}

.project-card { position: relative; }

.project-card .badge{
    position:absolute; top:10px; left:10px;
    padding:.28rem .55rem; border-radius:8px;
    background:rgba(0,0,0,.6); color:#fff; font-size:.72rem;
    border:1px solid rgba(255,255,255,.18); user-select:none;
}
.badge--locked::before{ content:"🔒 "; }

/* CONTACTO */
.contact-section {
    padding: 40px 20px;
    background-color: transparent;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    position: relative;
    color: var(--textSoft);
}

.contact-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accentColor);
    margin: 10px auto 0;
    border-radius: 5px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 10px;
    background-color: var(--cardBackground);
    color: black;
    font-size: 16px;
    resize: none;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--accentColor);
}

.contact-form button {
    padding: 12px 20px;
    background-color: var(--accentColor);
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #38bde5;
}

/* Estilo personalizado para el botón de descarga */
.download-btn {
    padding: 12px 24px;
    font-size: 1rem;
    background-color: green;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 0;
    color: white;
    border: none;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

/* Efectos al pasar el ratón */
.download-btn:hover {
    background-color: #218838; /* Color verde más oscuro */
    transform: scale(1.05); /* Agranda el botón al pasar el ratón */
}

/* Efectos al hacer clic */
.download-btn:active {
    transform: translateY(2px); /* Efecto al hacer clic */
}
#whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px; /* podés ajustar esto para subirlo o bajarlo */
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 0.6rem 1rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, background 0.3s;
    z-index: 1000;
}

#whatsapp-button:hover {
    background-color: #1ebc59;
    transform: translateY(-3px);
}

#whatsapp-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}

#whatsapp-button span {
    font-size: 1rem;
    letter-spacing: 0.3px;
}


footer {
    background-color: #1f1f1f; /* Oscuro pero no negro */
    color: #f1f1f1; /* Texto claro para contraste */
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-name {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #999;
}
.footer-links a {
    color: #ccc;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #00bfff;
}
.footer-location {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #888;
}
footer p {
    margin: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

footer p:hover {
    opacity: 1;
}

/* TABLET MEDIA QUERIES */
@media screen and (max-width: 992px) {
    body {
        font-size: 20px;
    }

    .nav_links a {
        font-size: 20px;
        letter-spacing: 1px;
        margin-outside: 4px;
    }

    .nav_links {
        gap: 25px;
        padding: 10px 2px;
    }

    .section {
        gap: 30px;
    }

    .pro-pic {
        width: 160px;
        height: 160px;
    }

    .info h1 {
        font-size: 28px;
    }

    .titulos {
        font-size: 20px;
    }

    .skills-title, .portfolio-title, .contact-title {
        font-size: 1.8rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .skill-card {
        width: 130px;
    }

    .contenido {
        width: 90%;
        padding: 25px 15px;
    }

    .about-icon {
        top: 20px;
        left: 30px;
    }
}

/* MOBILE MEDIA QUERIES */
@media screen and (max-width: 768px) {
    body {
        font-size: 18px;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        padding: 5px 0;
    }

    .logo {
        text-align: center;
    }

    .nav_links {
        gap: 15px;
        padding: 8px 2px;
        justify-content: space-around;
    }

    .nav_links a {
        font-size: 12px;
        gap: 10px;
        padding: 3px 0;
        margin-outside: 4px;
        letter-spacing: 1px;
    }

    .nav_links a:hover {
        letter-spacing: 2px;
    }

    .section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .pro-pic {
        width: 140px;
        height: 140px;
    }

    .info h1 {
        font-size: 24px;
    }

    .info p {
        font-size: 16px;
    }

    .titulos {
        font-size: 18px;
        padding: 0 5px;
    }

    .titulos li h5 {
        font-size: 16px;
    }

    .redes-btn {
        gap: 8px;
        justify-content: center;
    }

    .redes-btn a {
        width: 130px;
        height: 36px;
        padding: 0.5rem 0.8rem;
    }

    .redes-btn svg {
        width: 18px;
        height: 18px;
    }

    .redes-btn span {
        font-size: 0.8rem;
    }

    .about-section {
        padding: 30px 10px;
    }

    .contenido {
        padding: 20px 10px;
        margin: 0 auto;
        gap: 20px;
        width: 95%;
    }

    .contenido h3 {
        font-size: 1.6rem;
    }

    .contenido p {
        font-size: 16px;
    }

    .about-icon {
        display: none;
    }

    .skills-title, .portfolio-title, .contact-title {
        font-size: 1.6rem;
    }

    .skills-category h3 {
        font-size: 1.3rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .skill-card {
        width: 100%;
        max-width: 140px;
        padding: 12px 8px;
    }

    .skill-card .icon img {
        width: 40px;
        height: 40px;
    }

    .skill-card p {
        font-size: 0.85rem;
        margin: 5px 0;
    }

    .skill-bar {
        height: 12px;
    }

    .skill-bar span {
        font-size: 0.65rem;
        left: 5px;
    }

    .portfolio-section {
        padding: 30px 10px;
    }

    .portfolio-description {
        font-size: 16px;
    }

    .projects-wrapper {
        gap: 15px;
    }

    .project-card {
        width: 100%;
        padding: 15px;
    }

    .placeholder-card {
        padding: 30px 20px;
        width: 100%;
    }

    .contact-section {
        padding: 30px 10px;
    }

    .contact-form {
        gap: 12px;
        padding: 0 5px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 15px;
    }

    .contact-form button {
        padding: 10px 16px;
        font-size: 15px;
    }

    .download-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    #whatsapp-button {
        padding: 0.5rem 0.8rem;
        right: 15px;
        bottom: 15px;
    }

    #whatsapp-button svg {
        width: 20px;
        height: 20px;
    }

    #whatsapp-button span {
        font-size: 0.9rem;
    }

    footer {
        padding: 1.5rem 0.8rem;
        margin-top: 3rem;
    }

    .footer-links a {
        font-size: 1.3rem;
        margin: 0 0.3rem;
    }

    .footer-name, .footer-location {
        font-size: 0.85rem;
    }
}

/* SMALL PHONE MEDIA QUERY */
@media screen and (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .logo {
        width: 50px;
    }

    .nav_links {
        gap: 10px;
    }

    .nav_links a {
        font-size: 14px;
        margin-outside: 3px;
    }

    .pro-pic {
        width: 120px;
        height: 120px;
    }

    .info h1 {
        font-size: 22px;
    }

    .titulos {
        font-size: 16px;
    }

    .titulos li h5 {
        font-size: 14px;
    }

    .download-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .redes-btn a {
        width: 120px;
        height: 34px;
        padding: 0.4rem 0.7rem;
    }

    .skills-title, .portfolio-title, .contact-title {
        font-size: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .skill-card {
        width: 100%;
        padding: 10px 6px;
    }

    .skill-card .icon img {
        width: 35px;
        height: 35px;
    }

    .skill-card p {
        font-size: 0.8rem;
    }

    .skill-bar {
        height: 10px;
    }

    .skill-bar span {
        font-size: 0.6rem;
        left: 3px;
    }

    #whatsapp-button span {
        display: none;
    }

    #whatsapp-button {
        border-radius: 50%;
        padding: 0.5rem;
    }
}