
/* === TITULOS === */

/* === Tablets (1024px o menos) === */
@media screen and (max-width: 1024px) {
  .h2, .section-titulo {
    font-size: 1.8rem; /* Tamaño de fuente base para tablets */
  }

  .h3, .seccion-descripcion {
    font-size: 1rem; /* Tamaño de fuente base para tablets */
    text-align: center; /* Centrar texto en tablets */
    justify-content: center;
  }
}

/* === Móviles (768px o menos) === */
@media screen and (max-width: 768px) {
  .h2, .section-titulo {
    font-size: 1.5rem; /* Tamaño de fuente base para tablets */
  }

  .h3, .seccion-descripcion {
    font-size: 1rem; /* Tamaño de fuente base para tablets */
    text-align: center; /* Centrar texto en tablets */
    justify-content: center;
  }
}

/* === DESCRIPCION === */

/* === Tablets (1024px o menos) === */
@media screen and (max-width: 1024px) {
  .section-titulo {
    font-size: 1.8rem; /* Tamaño de fuente base para tablets */
    text-align: center; /* Centrar texto en tablets */
  }
}

/* === Móviles (768px o menos) === */
@media screen and (max-width: 768px) {
  .section-descripcion {
    font-size: 1.5rem; /* Tamaño de fuente base para tablets */
    padding: 0 1rem; /* Espaciado lateral para móviles */
    text-align: center; /* Centrar texto en móviles */
  }
}



/* === MEDIA QUERIES NAVBAR === */

/* === Tablets (1024px o menos) === */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem; /* Unificado para móviles y tablets */
    flex-wrap: wrap;
  }

  .menu {
    gap: 12px;
  }

  .menu a {
    font-size: 1rem;
  }

  .contact-btn a {
    padding: 6px 12px;
    font-size: 1rem;
  }

  .logo img {
    height: 3rem;
  }
}

/* === Móviles (768px o menos) === */
@media (max-width: 768px) {
  .logo {
    display: none;
  }

  /* si queremos ocultar tambien el boton de contacto, solo agregamos ".contact-btn, " */
  .menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu {
    padding: 1rem;
    gap: 0.5rem;
  }

  .mobile-menu a {
    font-size: 1rem;
  }

  .mobile-contact-btn {
    width: 35%;
    text-align: center;
    padding: 0.5rem;
  }
}


/* === MEDIA QUERIES HERO === */

/* 📟 Tablets (768px a 1023px) */

@media screen and (min-width: 768px) and (max-width: 1023px) {
  
  .hero-developer-image {
    margin-top: 2rem;
    width: 8rem;
    height: 8rem;
  }

  .hero-principal h1 {
    font-size: 2.4rem;
    text-align: center;
  }

  .hero-principal h2 {
    font-size: 1.5rem;
  }
}

/* 📱 Móviles (hasta 767px) */
@media screen and (max-width: 767px) {
  .hero-principal {
    padding: 2rem 1rem;
  }

  .hero-developer-image {
    width: 120px;
    height: 120px;
    margin: 10px;
  }

  .hero-principal h1 {
    font-size: 1.5rem;
  }

  .hero-principal h2 {
    font-size: 1rem;
    text-align: center;
  }

  /* Fondo del HERO */
  .fondo-paisaje {
    background: url('img/Hero/forest.jpg') center center / cover no-repeat !important;
    background-attachment: scroll; /* Evita problemas de parallax en móviles */
  }
}


/* === MEDIA QUERIES SOBRE MI === */ 
/* 📟 Tablets (768px a 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  
  .text-section,
  .info-tecnologias p {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.3;
    margin-left: 1%;
    margin-right: 1rem;
  }

  
  .badge-tech img {
    width: 1.2rem;
    height: 1.2rem;
  }

  .badges-matrix-container {
    margin-right: 1rem;
  }
  
  .badges-matrix{
    gap: 1rem;
  }
}

/* === Móviles (768px o menos) === */
@media screen and (max-width: 768px) {

  .text-section,
  .info-tecnologias p {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.3;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .link-certificaciones {
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
  }

  .link-cv {
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
  }

  .info-personal {
    max-height: max-content;
    max-height: min-content;
  }

  .badge-tech img {
    width: 0.7rem;
    height: 0.7rem;
  }

  .badges-matrix-container {
    margin-right: 0;
  }

  .badges-matrix{
    gap: 0.6rem;
  }

  .badge-label {
    font-size: 0.6rem;
  }

  .sobre-mi-links.mt-3 {
    text-align: center;
    justify-content: center;
  }
  
}



/* === MEDIA QUERIES PROYECTOS === */ 
/* === Móviles (768px o menos) === */
@media (max-width: 768px) {
    .project-card {
        flex: 0 0 calc(100% / 2);
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .proyectos-recientes {
        padding: 0 1rem;
    }

    .tech-stack {
      margin-left: -1rem;
      margin-right: -1rem;
    }

}

@media (max-width: 480px) {
    .project-card {
        flex: 0 0 100%;
    }
    
    .projects-section {
        padding: 0 1rem;
    }

    .carousel-nav.prev {
        left: 0.5rem;
    }

    .carousel-nav.next {
        right: 0.5rem;
    }
}
/* OVERLAY */
/* 🟣 Pantallas muy pequeñas (≤400px) */
@media screen and (max-width: 400px) {
  .overlay p {
    font-size: 18px;
  }
  .overlay i {
    font-size: 40px;
  }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.projects-section {
    animation: fadeInUp 0.8s ease;
}
/* === MEDIA QUERIES SERVICIOS === */

/* ⚫ Pantallas extra grandes (≥1200px) */
@media screen and (min-width: 1200px) {
  .servicios-container {
    grid-template-columns: repeat(4, 1fr); /* 4 columnas */
  }
}

/* 🖥️ Pantallas medianas y grandes (hasta 1199px) */
@media screen and (max-width: 1199px) {
  .servicios-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  }

  /* Centrar animaciones Lottie */
  .icono-lottie {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  dotlottie-wc {
    width: 180px !important;
    height: 180px !important;
  }
}

/* 📱 Móviles (hasta 668px) */
@media screen and (max-width: 668px) {
  .servicios-container {
    grid-template-columns: repeat(1, 1fr); /* 1 columna */
  }

  dotlottie-wc {
    width: 150px !important;
    height: 150px !important;
  }
}



/* === MEDIA QUERIES BENEFICIOS === */ 
/* === Móviles (768px o menos) === */

@media (max-width: 668px) {
  .beneficios-section {
    padding: 2rem 0 1rem 0;
  }
  .beneficios-grid {
    padding: 0 0.5rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .beneficio-card {
    min-height: 200px;
    padding: 1.2rem 0.7rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 400px;
  }

  .p .beneficio-desc{
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }

}
/* === MEDIA QUERIES TESTIMONIOS === */ 

/* 🟠 Tabletas (≤800px) */
@media screen and (max-width: 800px) {
  .testimonio-imagen {
    height: 120px;
    width: 120px;
  }
  .testimonio-texto {
    font-size: 18px;
  }
}

/* === MEDIA QUERIES CONTACTO === */


@media (max-width: 768px) {
  .hablemos-container {
    flex-direction: column !important;
    padding: 1.5rem 0.7rem;
    text-align: center;
  }
  .hablemos-titulo {
    font-size: 1.5rem;
  }
  .hablemos-desc {
    font-size: 1.05rem;
    margin: 0 auto;
  }
  .btn-hablemos-contacto {
    font-size: 1rem;
    padding: 0.6em 1.5em;
    margin-top: 1rem;
  }
}

/* === MEDIA QUERIES FOOTER === */



