
.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

  html {
    scroll-behavior: smooth;
  }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', sans-serif;
  }
  
  .header {
    background: white;
    padding: 15px 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.233);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 30px;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #465062;
    font-weight: 600;
    font-size: 15px;
  }
  
  .btn-contact {
    background-color: #ff7a2d;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  .btn-contact:hover {
    background-color: #ff6a15;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: white;
      padding: 20px;
    }
  
    .nav.active {
      display: block;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 20px;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  .banner {
    background: #fff;
    padding: 85px 20px 60px;
    text-align: center;
    position: relative;
  }
  
  .banner h1 {
    font-size: 3.2rem;
    font-weight: 500;
    color: #465062;
    line-height: 1.3;
   z-index: 20;
    
  }
  .sub {
    position: absolute;
    right: 28%;
    top: 100%;
    width: 450px;
    z-index: 10;
}
  .banner .subrayado {
    position: relative;
    display: inline-block;
  }
  
  .banner .subrayado::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 8px;
    background-image: url('img/subrayado.png'); /* usa la imagen curva naranja */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .banner p {
    margin: 30px 0;
    color: #2d2d2d;
    font-size: 1rem;
  }
  
  .btn-banner {
    background-color: #ff7a2d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin: 20px 0;
    transition: background 0.3s;
  }
  
  .btn-banner:hover {
    background-color: #ff610a;
  }
  
  .camara-img {
    width: 160px;
   
  }
  
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    z-index: 999;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .banner h1 {
      font-size: 2rem;
    }
  
    .camara-img {
      width: 150px;
    }
  
    .whatsapp-btn {
      width: 45px;
    }
  }
  

  .servicios {
    text-align: center;
    padding: 60px 80px;
  }
  
  .servicios h2 {
    font-size: 2.2rem;
    color: #465062;
    font-weight: 500;
    margin-bottom: 40px;
  }
  
  .grid-servicios {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .card {
    background: #f8f8f8;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.145);
    transition: 0.3s;
  }
  
  .card img {
    height: 50px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .ver-mas {
    text-decoration: none;
    color: #ff6a15;
    font-weight: bold;
  }
  
  /* MODAL */
  .modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    text-align: left;
    position: relative;
  }
  
  .modal-content h3 {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .modal-content h3 img {
    height: 40px;
    margin-right: 10px;
  }
  
  .modal p {
    color: #444;
    font-size: 1rem;
  }
  
  .modal-lista {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .modal-lista li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #333;
  }
  
  .modal-lista li span {
    color: #ff6a15;
    position: absolute;
    left: 0;
  }
  .modal-header {
    display: flex;
    gap: 28px;
    margin-bottom: 10px;
}
  
  .beneficio {
    font-weight: 600;
    color: #333;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
.sub {
    position: absolute;
    right: 23%;
    top: 100%;
    z-index: 10;
    width: 60%;
}
}
.proyectos {
    text-align: center;
    padding: 60px 20px;
  }
  
  .proyectos h2 {
    font-size: 2.2rem;
    color: #2f3a4c;
    margin-bottom: 10px;
  }
  
  .proyectos p {
    color: #555;
    max-width: 750px;
    margin: auto;
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .grid-proyectos {
    display: grid;
    padding: 0px 50px;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  
  .proyecto-card {
    height: 400px;
    width: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.085);
    transition: transform 0.3s;
  }
  
  .proyecto-card:hover {
    transform: translateY(-5px);
  }
  
  .proyecto-card .info {
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
    padding: 30px;
    color: rgb(0, 0, 0);
    text-align: left;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  
  .proyecto-card .info h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
  }
  
  .proyecto-card .info span {
    font-size: 0.9rem;
    color: #000000;
  }
  
  /* RESPONSIVE */
  @media (max-width: 992px) {
    .grid-proyectos {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .grid-proyectos {
      grid-template-columns: 1fr;
    }
  
    .proyecto-card {
      height: 250px;
    }
  }
  
  .quienes-somos {
    position: relative;
    padding: 60px 120px;
    text-align: center;
  }
  
  .quienes-somos h2 {
    font-size: 2.2rem;
    color: #2f3a4c;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .quienes-somos p {
    text-align: center;
    max-width: 850px;
    margin: auto;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 50px;
  }
  
  .contenedor {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .col {
    flex: 1 1 400px;
  }
  
  .bloque {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .bloque img {
    height: 35px;
    margin-bottom: 8px;
  }
  
  .bloque h3 {
    color: #2f3a4c;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  
  .bloque p {
    font-size: 1.1rem;
    color: #333;
  }
  
  .bloque ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
    color: #333;
  }
  
  .bloque ul li {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .img-mision img {
    width: 70%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-top: 20px;
  }
  
  /* Imágenes decorativas */
  .cam {
    position: absolute;
    width: 180px;
    z-index: 0;
  }
  
  .cam-left {
    top: 0;
    left: 0;
  }
  
  .cam-right {
    top: 0;
    right: 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contenedor {
      flex-direction: column;
    }
  
    .cam {
      display: none;
    }
  
    .quienes-somos h2 {
      font-size: 1.8rem;
    }
  }
  .estadisticas {
    background: url('img/Rectangle\ 39357.png') center/cover no-repeat;
    color: white;
    padding:  160px 20px;
    text-align: center;
  }
  
  .contenedor-estadisticas {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .dato h3 {
    font-size: 2.5rem;
    color: #ff6a15;
    margin-bottom: 10px;
  }
  
  .dato p {
    font-size: 1rem;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contenedor-estadisticas {
      flex-direction: column;
      gap: 30px;
    }
  
    .dato h3 {
      font-size: 2rem;
    }
  }
  
  
  .seccion-contacto {
    background: #ffffff;
    padding: 60px 20px;
  }
  
  .contenedor-contacto {
    max-width: 1000px;
    margin: auto;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    flex-wrap: wrap;
  }
  
  .lado-formulario {
    flex: 1 1 450px;
    background: #f9f9f9;
    padding: 40px;
  }
  
  .lado-formulario h2 {
    margin-bottom: 20px;
    color: #2f3a4c;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  form input,
  form textarea {
    padding: 10px 15px;
    border: 1px solid #f8c287;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  
  form button {
    background: #ff6a15;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  form button:hover {
    background: #e3570d;
  }
  
  .lado-info {
    flex: 1 1 350px;
    background: #374258;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
  }
  
  .info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 0.95rem;
  }
  
  .info-item i {
    font-size: 1.2rem;
    margin-top: 4px;
    color: #ffffff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contenedor-contacto {
      flex-direction: column;
    }
  
    .lado-formulario,
    .lado-info {
      padding: 30px 20px;
    }
  }
  
  .footer {
    background: #111;
    color: #ccc;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 60px;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .footer-col {
    flex: 1 1 200px;
  }
  
  .logo-footer {
    width: 200px;
    margin-bottom: 15px;
  }
  
  .footer-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .footer-col ul li a:hover,
  .footer-highlight {
    color: #ff6a15;
    text-decoration: none;
  }
  
  .footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding: 15px 20px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #777;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: 30px;
    }
    .servicios {
        text-align: center;
        padding: 60px 26px;
    }
    .grid-proyectos {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .quienes-somos {
        position: relative;
        padding: 60px 20px;
        text-align: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }
    
  }
  