
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;  
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

.hero-section-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.hero-section-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000; 
}

.hero-section-logo img {
    height: 70px;
    display: block;
}

.hero-section-nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.hero-section-nav-links a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-section-nav-links a:hover {
    color: #f3b913;
}

.hero-section-btn-nav {
    background-color: #f3b913;
    color: #000000 !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-section-btn-nav:hover {
    background-color: #dba40f;
    transform: translateY(-2px);
}
.hero-section-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001; 
}

.hero-section-hamburger span {
    width: 28px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .hero-section-hamburger {
        display: flex;
    }

    .hero-section-nav-links {
        position: fixed;
        top: 85px; 
        right: -300px; 
        width: 260px; 
        height: auto; 
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 25px 20px;
        gap: 20px;
        border-radius: 12px; 
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 
        
        z-index: 9999 !important;
        display: flex !important;
    }
   .hero-section-nav-links.active {
        right: 5% !important; 
          }


   .hero-section-btn-nav {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

   .hero-section-hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hero-section-hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }
    .hero-section-hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
.hero-section-container {
    position: relative; 
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 120px 20px 80px 20px; 
    overflow: hidden; 
}

.hero-section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    z-index: 1; 
}

.hero-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(33, 43, 56, 0.75); 
    
    mix-blend-mode: multiply; 
    
    z-index: 2; 
}

.hero-section-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    z-index: 3; 
}

.hero-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.hero-section-description {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #cccccc;
    line-height: 1.6;
}

.hero-section-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.qs-essence-title {
    font-weight: 400;
}

.hero-section-btn-primary {
    background-color: #f3b913;
    color: #000000;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-section-btn-primary:hover {
    background-color: #dba40f;
    transform: translateY(-2px);
}

.hero-section-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.hero-section-btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.hero-section-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #f3b913;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s ease;
}

.hero-section-floating-btn:hover {
    transform: scale(1.1);
}

.hero-section-floating-btn svg {
    width: 28px;
    height: 28px;
    fill: #000000;
}

.quienes-somos-section {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px 20px 60px 20px; 
    background-color: #ffffff;
    color: #2c3e50;
}

.qs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.qs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto; 
}

.qs-header h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 3.3rem;
    margin-bottom: 20px;
    color: #1e272e;
    font-weight: 400; 
}

.qs-header p {
    font-size: 1.3rem;
    line-height: 1.3;
    color: #7f8c8d;
}

.qs-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}


@media (max-width: 992px) {
    .qs-header h2 {
        font-size: 2.8rem;
    }
    
    .qs-content-wrapper {
        flex-direction: column; 
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section-navbar {
        height: 70px;
        padding: 0 20px;
    }

    .hero-section-logo img {
        height: 55px;
    }

    .hero-section-nav-links {
        display: none;
    }

    .hero-section-title {
        font-size: 2.2rem;
    }

    .hero-section-subtitle {
        font-size: 1.2rem;
    }

    .hero-section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-section-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .hero-section-btn-primary, 
    .hero-section-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 20px;
    }

    .quienes-somos-section {
        padding: 40px 15px;
    }

    .qs-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .qs-header p {
        font-size: 1.1rem;
    }

    .hero-section-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .hero-section-floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

.qs-image-container {
  flex: 1;
  min-height: 300px;
  background-color: #ffffff; 
  border-radius: 12px; 
  margin-top: 90px;
  box-shadow: none; 
}

.qs-img {
  width: 92%; 
  height: 88%; 
  margin: 0 auto; 
  object-fit: cover;
  display: block;
  border-radius: 12px; 
  
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.19), 0 5px 15px rgba(0, 0, 0, 0.09);
}

.qs-essence-container {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.qs-essence-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #1e272e;
  text-align: left;
  font-weight: 400; 
}

.qs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.qs-card {
  background-color: #ebebeb; 
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.qs-card h4 {
  font-size: 1.35rem;
  font-weight: 500; 
  color: #2c353f;
  margin-bottom: 10px;
}

.qs-card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgb(139, 139, 139); 
  line-height: 1.5;
}

.qs-icon-box {
  background-color: #ffca28; 
  width: 45px;
  height: 45px;
  border-radius: 10px; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.qs-icon-box i {
  font-size: 1.4rem; 
  color: #1e272e;    
  display: flex;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

  .seccion-progresiva {
    background-color: #ffffff; 
    padding: 35px 15px; 
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; 
  }

  .seccion-progresiva *, 
  .seccion-progresiva *::before, 
  .seccion-progresiva *::after {
    box-sizing: border-box;
  }

  .seccion-progresiva .bloque-gris-contenedor {
    background-color: #313340; 
    max-width: 1300px;
    margin: 0 auto;
    padding: 49px 30px; 
    border-radius: 10px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .seccion-progresiva .titulo-seccion {
    color: #ffffff;
    text-align: center;
    font-size: 1.8rem; 
    margin-top: 0;
    margin-bottom: 35px; 
    font-weight: 500; 
    letter-spacing: -0.5px; 
    
  }

  .seccion-progresiva .cuadrícula-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
  }

  .seccion-progresiva .tarjeta-beneficio {
    background-color: transparent; 
    padding: 5px 10px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .seccion-progresiva .tarjeta-beneficio:hover {
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-3px);
  }

  .seccion-progresiva .contenedor-icono {
    display: flex;
    justify-content: center;
    margin-bottom: 15px; 
  }

  .seccion-progresiva .circulo-icono-amarillo {
    background-color: #ffc107; 
    width: 65px; 
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  }

  .seccion-progresiva .circulo-icono-amarillo i {
    font-size: 1.5rem;
    color: #313340;    
    line-height: 1;
    display: block;
  }

  .seccion-progresiva .tarjeta-beneficio:hover .circulo-icono-amarillo {
    transform: scale(1.06); 
    background-color: #ffca28;
  }

  .seccion-progresiva .tarjeta-beneficio h3 {
    color: #ffffff;
    font-size: 1.15rem; 
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500; 
    letter-spacing: -0.2px;
  }

  .seccion-progresiva .tarjeta-beneficio p {
    color: #ccd0db; 
    font-size: 1rem; 
    line-height: 1.5; 
    font-weight: 400; 
    margin: 0;
  }

.especializacion-section {
  padding: 40px 20px;
  background-color: #e7e9ec; 
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

.especializacion-section * {
  box-sizing: border-box;
}


.especializacion-section .esp-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.especializacion-section .esp-title {
  font-size: 3.0rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 460;
  font-family: 'Montserrat', sans-serif;
}

.especializacion-section .esp-subtitle {
  font-size: 1.4rem;
  color: #718096;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 300; 
}

.especializacion-section .esp-btn-cta {
  display: inline-flex;
  align-items: center;
  background-color: #ffc107; 
  color: #1a202c;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.especializacion-section .esp-btn-cta:hover {
  background-color: #e0a800;
}

.especializacion-section .esp-btn-cta i {
  margin-left: 8px;
  font-size: 1.1rem;
}

.especializacion-section .esp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.especializacion-section .esp-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.especializacion-section .esp-icon-box {
  background-color: #ffc107;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.especializacion-section .esp-icon-box i {
  font-size: 1.75rem;
  color: #1a202c;
}

.especializacion-section .esp-card-title {
  font-size: 1.6rem;
  color: #2d3748;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.especializacion-section .esp-card-muted {
  font-size: 0.95rem;
  color: #a0aec0;
  margin-bottom: 15px;
  display: block;
}

.especializacion-section .esp-card-text {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.especializacion-section .esp-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.especializacion-section .esp-card-list li {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.especializacion-section .esp-card-list li::before {
  content: "•";
  color: #ffc107; 
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.especializacion-section .foco-wrapper {
  max-width: 1200px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 60px auto 0 auto; 
}


.especializacion-section .foco-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.especializacion-section .foco-titulo {
  font-size: 2rem;
  color: #2d3748;
  margin: 0 0 16px 0;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif; 
  letter-spacing: -0.5px;
}

.especializacion-section .foco-subtitulo {
  font-size: 1.3rem;
  color: #718096; 
  line-height: 1.6;
  margin: 0;
   font-weight: 300;
}

.especializacion-section .foco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.especializacion-section .foco-card {
  background: #ebeced;  
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.especializacion-section .foco-card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #e0a800); 
  opacity: 0.8;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.especializacion-section .foco-card-title {
  font-size: 1.25rem;
  color: #2d3748;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.especializacion-section .foco-card-text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}

.especializacion-section .foco-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.especializacion-section .foco-card:hover .foco-card-line {
  opacity: 1;
  height: 6px;
}

.proyectos-section {
  padding: 40px 20px 60px 20px;
  background-color: #2e303a; 
  font-family: 'Inter', 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.proyectos-section * {
  box-sizing: border-box;
}

.proyectos-section .proyectos-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.proyectos-section .proyectos-title {
  font-size: 3.0rem;
  color: #ffffff;
  margin: 0 0 12px 0;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.proyectos-section .proyectos-subtitle {
  font-size: 1.25rem;
  color: #a0aec0;
  margin: 0;
  line-height: 1.4;
  font-weight: 300;
}

.proyectos-section .proyectos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.proyectos-section .proyecto-card {
  height: 320px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end; 
  padding: 25px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.proyectos-section .proyecto-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.proyectos-section .proyecto-tag {
  color: #ffc107; 
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.proyectos-section .proyecto-card-title {
  color: #ffffff;
  font-size: 1.6rem;
  margin: 0 0 10px 0;
  font-weight: 600;
  line-height: 1.2;
}

.proyectos-section .proyecto-location {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}

.proyectos-section .proyecto-location i {
  color: #cbd5e1;
}

.proyectos-section .proyecto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.testimonials-section {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 45px;
}

.testimonials-header h2 {
  font-size: 2.9rem;
  color: #2b343a;
  margin-bottom: 10px;
  font-weight: 500;
}

.testimonials-header p {
  font-size: 1.4rem;
  color: #8a949b;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background-color: #ebedf0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.testimonial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user-data h3 {
  font-size: 1.15rem;
  color: #2b343a;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.testimonial-user-data span {
  font-size: 0.9rem;
  color: #8a949b;
}

.testimonial-quote-icon {
  font-size: 3.5rem;
  color: #ebdca5;
  line-height: 1;
  transform: translateY(-10px);
}

.testimonial-stars {
  color: #ffc107 !important;
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-stars i {
  color: #ffc107 !important;
}
.testimonial-text {
  font-size: 1rem;
  color: #4a555e;
  line-height: 1.6;
  margin: 0;
}

.contact-section {
  padding: 40px 20px;
  margin-top: -10px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 3.3rem;
  color: #2b343a;
  margin-bottom: 10px;
  font-weight: 400;
}

.contact-header p {
  font-size: 1.3rem;
  color: #8a949b;
  margin: 0;
}

.contact-main-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 1.1rem;
  color: #2b343a;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdfe3;
  border-radius: 12px;
  font-size: 1rem;
  color: #2b343a;
  background-color: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b7bd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ffc107;
}

.btn-submit {
  background-color: #ffc107;
  color: #2b343a;
  border: none;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 400;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #e0a800;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card-light {
  background-color: #ebedf0;
  border-radius: 16px;
  padding: 35px;
}

.info-card-light h3 {
  font-size: 1.4rem;
  color: #2b343a;
  margin: 0 0 25px 0;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon-box {
  background-color: #ffc107;
  color: #2b343a;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-text span {
  display: block;
  font-size: 1.1rem;
  color: #8a949b;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 1.3rem;
  color: #2b343a;
  margin: 0;
  line-height: 1.5;
  font-weight: 350;
}

.info-card-dark {
  background-color: #343a40;
  border-radius: 16px;
  padding: 35px;
  color: #ffffff;
}

.info-card-dark h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.info-card-dark ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card-dark ul li {
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
  color: #e9ecef;
}

.info-card-dark ul li::before {
  content: "•";
  color: #ffc107;
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.main-footer {
  background-color: #2e323d; 
  color: #ffffff;
  padding: 60px 20px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 25px 0;
  color: #ffffff;
}

.brand-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  max-width: 80px;
  height: auto;
  display: block;
}

.footer-slogan {
  font-style: italic;
  color: #a0a5b5;
  font-size: 1rem;
  margin: 0;
}

.footer-description {
  color: #a0a5b5;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.links-column ul li a {
  color: #a0a5b5;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}

.links-column ul li a:hover {
  color: #ffc107; 
}

.social-column {
  display: flex;
  flex-direction: column;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.social-icons a {
  background-color: #3d4352; 
  color: #a0a5b5;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  background-color: #4e5568;
  color: #ffffff;
}

.footer-location {
  color: #a0a5b5;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-location p {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #3d4352;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  color: #838896;
  font-size: 0.9rem;
  margin: 0;
}

@media screen and (max-width: 768px) {
    .seccion-progresiva {
        padding: 20px 10px; 
    }

    .seccion-progresiva .bloque-gris-contenedor {
        padding: 35px 20px; 
        border-radius: 8px;
    }

    .seccion-progresiva .titulo-seccion {
        font-size: 1.5rem;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .seccion-progresiva .cuadrícula-beneficios {
        grid-template-columns: 1fr;
        gap: 30px; 
    }

    .seccion-progresiva .tarjeta-beneficio {
        padding: 10px 5px;
    }

    .seccion-progresiva .contenedor-icono {
        margin-bottom: 12px;
    }

    .seccion-progresiva .tarjeta-beneficio:hover {
        transform: translateY(-1px);
    }

    .seccion-progresiva .tarjeta-beneficio h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .seccion-progresiva .tarjeta-beneficio p {
        font-size: 0.9rem; 
        padding: 0 10px; 
    }
}

@media (max-width:992px){

    .contact-section{
        padding:60px 20px;
    }

    .contact-main-layout{
        grid-template-columns:1fr;
        gap:35px;
    }

    .contact-header h2{
        font-size:2.7rem;
    }

}



@media (max-width:768px){

    .contact-section{
        padding:50px 18px;
    }

    .contact-header{
        margin-bottom:35px;
    }

    .contact-header h2{
        font-size:2.2rem;
        line-height:1.2;
    }

    .contact-header p{
        font-size:1rem;
        line-height:1.5;
    }

    .contact-main-layout{
        display:flex;
        flex-direction:column;
        gap:35px;
    }


    .contact-form{
        width:100%;
        gap:20px;
    }

    .form-group label{
        font-size:1.05rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        width:100%;
        padding:16px;
        font-size:1rem;
        border-radius:12px;
    }

    .btn-submit{
        width:100%;
        padding:16px;
        font-size:1.1rem;
        border-radius:12px;
    }


    .contact-info-column{
        gap:20px;
    }

    .info-card-light,
    .info-card-dark{
        padding:22px;
        border-radius:14px;
    }

    .info-card-light h3,
    .info-card-dark h3{
        font-size:1.35rem;
        margin-bottom:20px;
    }

    .info-item{
        display:flex;
        align-items:flex-start;
        gap:14px;
        margin-bottom:18px;
    }

    .info-item:last-child{
        margin-bottom:0;
    }

    .info-icon-box{
        width:42px;
        height:42px;
        font-size:1rem;
        border-radius:10px;
        flex-shrink:0;
    }

    .info-text{
        flex:1;
    }

    .info-text span{
        font-size:.95rem;
        margin-bottom:3px;
    }

    .info-text p{
        font-size:1rem;
        line-height:1.5;
        overflow-wrap:break-word;
        word-break:break-word;
    }

    .info-card-dark ul{
        gap:10px;
    }

    .info-card-dark ul li{
        font-size:1rem;
        line-height:1.5;
        padding-left:18px;
    }

}



@media (max-width:480px){

    .contact-section{
        padding:40px 15px;
    }

    .contact-header h2{
        font-size:1.8rem;
    }

    .contact-header p{
        font-size:.95rem;
    }


    .form-group input,
    .form-group select,
    .form-group textarea{
        padding:15px;
        font-size:1rem;
    }

    .btn-submit{
        padding:15px;
        font-size:1rem;
    }


    .info-card-light,
    .info-card-dark{
        padding:18px;
    }

    .info-card-light h3,
    .info-card-dark h3{
        font-size:1.2rem;
    }

    .info-icon-box{
        width:38px;
        height:38px;
    }

    .info-text span{
        font-size:.9rem;
    }

    .info-text p{
        font-size:.95rem;
    }

    .info-card-dark ul li{
        font-size:.95rem;
    }

}



html,
body{
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr; 
    gap: 35px;
  }
  
  .footer-column {
    text-align: center;
  }

  .brand-column .footer-logo {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .contact-main-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .proyectos-section {
    padding: 30px 15px 40px 15px;
  }

  .proyectos-section .proyectos-title {
    font-size: 2.2rem;
  }

  .proyectos-section .proyectos-subtitle {
    font-size: 1.05rem;
  }

  .proyectos-section .proyectos-grid {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .proyectos-section .proyecto-card {
    height: 280px; 
    padding: 20px;
  }
  
  .proyectos-section .proyecto-card-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .especializacion-section {
    padding: 40px 15px;
  }

  .especializacion-section .esp-title {
    font-size: 2.2rem;
  }

  .especializacion-section .esp-grid {
    grid-template-columns: 1fr;
  }

  .especializacion-section .esp-card {
    padding: 30px 20px;
  }

  .especializacion-section .foco-wrapper {
    padding: 30px 20px;
    margin-top: 40px; 
  }
  
  .especializacion-section .foco-titulo {
    font-size: 1.6rem;
  }
  
  .especializacion-section .foco-subtitulo {
    font-size: 1rem;
  }
}