@font-face {
    font-family: 'HelveticaNeue';
    src: url('./helvetica-neue-5/HelveticaNeueMedium.otf') format('opentype');
  
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueBold';
    src: url('./helvetica-neue-5/HelveticaNeueBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueItalic';
    src: url('./helvetica-neue-5/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'HelveticaNeueLight';
    src: url('./helvetica-neue-5/HelveticaNeueLight.otf') format('truetype');
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueBlack';
    src: url('./helvetica-neue-5/HelveticaNeueBlack.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
 
 
}
.container {
  max-width: 1300px;
  margin: 0 auto;
}
.cursor-follower {
    position: fixed; 
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999; 
}


/* Navigation Bar Styles */
.navbar {
    background-color: #000120;
    padding: 1rem;
    position: relative; 
    clip-path: polygon(0 0, 100% 0, 100% 80%, 97% 100%, 0 100%);
    height: 93px;
    z-index: 10050;
    overflow: visible;

}


/* Logo */

.navbar-brand {
    font-weight: 400;
    font-size: 18px;
    color: white;
}

/* Navbar Links */
.nav-link {
    font-weight: 400;
    color: white;
    margin-right: 0.2rem;
    position: relative;
    justify-content: center;
   
}

.nav-link.active,
.nav-link:hover {
    color: white;
    font-weight: 600;
 
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 20%;
  width: 50%;
  height: 2px;
  background-color: #150DF7;
  opacity: 1;
  transition: opacity 0.3s;
}
.navbar-nav {
    gap: 4rem; 
}
.nav-link::after
{
    content: '';
    position: absolute;
    bottom: 2px;
    left: 20%;
    width: 50%;
    height: 2px;
    background-color: #150DF7;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link:hover::after {
    opacity: 1;
}


.custom-modal {
  position: absolute;
  display: none;
  background-color: #000120;
  width: 250px;
  padding: 0rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
  z-index: 10000;
  left: 47%;

}
.custom-modal.show {
  display: block;
  top: calc(10% + 10px); /* Justo debajo del botón, con un pequeño margen */
 
  transform: translateX(-50%);
}

/* Media query para pantallas con altura menor a 700px */
@media (max-height: 700px) {
    .custom-modal.show {
        top: 90px; /* Posición fija para pantallas bajas */
        max-height: calc(100vh - 120px); /* Limita la altura del modal */
        overflow-y: auto; /* Permite scroll si es necesario */
    }
}

/* Media query para pantallas muy pequeñas (menos de 500px de altura) */
@media (max-height: 500px) {
    .custom-modal.show {
        top: 80px; /* Posición aún más cerca del header */
        max-height: calc(100vh - 100px);
    }
}

.services-item {
  position: relative; /* Posiciona el modal relativo al botón "Servicios" */
}

.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-list li {
    border-bottom: 1px solid #fff;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
}

.services-list a:hover {
    background-color: #1A176D;
    color: #fff;
}


/* Presupuesto Button */
.presupuesto-btn {
    background-color: white;
    color: #000120;
    font-weight: 700;
    padding:  10px 25px;
    border: none;
    font-size: 16px;
    font-family: 'Poppins';
    border-radius: 0;
    position: relative;
    margin-left: 0;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 90% 100%, 0 100%);
}

.presupuesto-btn:hover {
    background-color: #14107D;
    color: #FFFFFF;
  
}

.presupuesto-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: white;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
/* Mobile Fullscreen Menu */
.mobile-fullscreen-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000120;
  z-index: 1050;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-fullscreen-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-fullscreen-menu li {
  margin-bottom: 2rem; /* Espaciado entre los enlaces principales */
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF !important;
  text-decoration: none !important;

}
.mobile-fullscreen-menu a {
  margin-bottom: 2rem; 
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF ;
  text-decoration: none ;

  margin-bottom: 0;

}
/* Submenú */
.submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin-top: 1rem; 


}


.submenu.open {
  display: block;
}

.submenu li {
  margin-top: 10px;
  margin-bottom: 0rem; 
  font-size: 16px; 
  font-weight: 300;
  color: #FFFFFF;
}


.submenu li a {
  color: white;
  text-decoration: none;
  padding: 0.3rem 1rem;
  display: block;
  font-family: 'Poppins';
  margin-bottom: 0;
  font-weight: 300;
  font-size: 16px;
}

.submenu li a:hover {
  background-color: #1A176D;
  color: #FFFFFF;
}

#toggleSubmenu {
  margin-left: 10px;
}
/* Flecha con animación */
.arrow-icon {
  width: 12px;
  height: 12px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease-in-out;
}

.arrow-icon.rotate {
  transform: rotate(180deg);
}

/* Botón Presupuesto */
.presupuesto-btn-mobile {
  margin-top: 0;
  background-color: white;
  color: #000120 !important;
  font-weight: 700 !important;
  padding: 10px 25px;
  border-radius: 0;

  font-size: 16px;
  font-family: 'Poppins';
  clip-path: polygon(0 0, 100% 0, 100% 60%, 90% 100%, 0 100%);
}

.presupuesto-btn-mobile:hover {
    background-color: #14107D;
    color: #FFFFFF;
}

/* Mostrar el menú móvil */
.mobile-fullscreen-menu.active {
    display: flex;
}


.has-submenu {
    position: relative;
}

.has-submenu a {
    cursor: pointer;
}

.navbar-toggler {
    background: none;
    border: none;
    outline: none; 
    box-shadow: none;
    padding: 0;
    cursor: pointer;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    background: none; 
    outline: none;
    box-shadow: none; 
}

.navbar-toggler-icon {
    display: block;
    background-color: transparent; 
}

.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: white;
    display: block;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.toggler-icon::before {
    top: -8px;
}

.toggler-icon::after {
    top: 8px;
}

/* Animación al activar */
.navbar-toggler.active .toggler-icon {
    background-color: transparent;
}

.navbar-toggler.active .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active .toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}



@media (max-width: 994px) {
  .navbar{
    height: auto;
    
    clip-path: none
  }
}
@media (max-width: 400px) {
.logo{
    width: 150px;
}
}
@media (min-width: 994x) {
    .mobile-fullscreen-menu {
        display: none !important;
    }
}
/* Estilo para tabletas y resoluciones similares */
@media (min-width: 994px) and (max-width: 1024px) {
    .navbar-nav {
        gap: 1rem; 
        overflow-x: hidden;
    }
   
    .presupuesto-btn {
        margin-left: 20px;
    }

    .modal-dialog {
        position: absolute;
        top: -37%; 
        left: 40%;
        transform: translateX(-50%);
        margin: 0;
        max-width: 300px;
        width: auto;
        z-index: 1050;
    
    }

}

/* BANNER PRINCIPAL */


.banner {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url('./img/banner-empresa.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2rem;
    z-index: 10;
    top: -36px;
}

.banner-presupuesto{
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url('./img/banner-presupuesto.svg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2rem;
    z-index: 10;
    top: -44px;
}
@media (min-width : 1900px)
{}
/* Content inside Banner */
.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    margin-left: 20px;
    margin-top: 0px;
  
    
}

.main-title {
    font-family: 'Poppins';
    font-size: 45px;
    font-weight: 400;
    max-width: 1000px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.1;
}



/* Button */
.banner-btn {
    background-color: white;
    color: #000120;
    font-weight: 500;
    padding:0.7rem 1.5rem;
    font-size: 16px;
    border: none;
    position: relative;
    transition: background-color 0.3s;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    gap: 8px;
}
.arrow-icon svg {
    width: 16px;
    height: 16px;
    fill: #000120; /* Adjust color if needed */
}
.banner-btn:hover {
    background-color: #f0f0f0;
    color: #000120;
}

@media (max-width: 1024px) {
    .banner {
        height: 40vh;
   
}
.banner-presupuesto{
    height: 40vh;
    padding-left: 0;
}
    .main-title {
        font-size: 30px;
        font-family: 'Poppins';
    }

    .banner-btn {
        font-size: 14px;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 500px) {
    .banner {
        padding-left:0rem;
        height: auto;
        top: -20px;
    }

    .banner-presupuesto {
        padding-left:0rem;
        height: auto;
        top: -20px;
    }




    .banner-content {
        margin-left: 0;
        margin-top: 50px; 
        text-align: left; 
        padding: 1rem;
    }


    .main-title {
        font-size: 14px; 
        
        max-width: 400px;
        margin-bottom: 2rem;
        }

    .banner-btn {
        padding: 0.5rem 0.5rem;
        font-size: 12px; 
    }

    .arrow-icon svg {
        width: 14px;
        height: 14px;
    }
}


/* Banner texto */

.diagonal-banner {
    position: relative;
    background-color: #000120;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
    padding: 3rem 1rem;
    margin: 2rem auto;
    max-width: 90%;
   
    color: white;
}

.banner-content-two {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-underline {
    width: 82px;
    height: 4px;
    background-color: #177EF4;
    margin: 0.5rem auto 1.5rem;
}

.banner-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
   
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 24px;
    }

    .banner-text {
        font-size: 14px;
    }
    .diagonal-banner{
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 18px;
    }

    .banner-text {
        font-size: 12px;
    }
    .diagonal-banner{
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
        padding:2rem 1rem ;
    }
}

/* CARDS VALORES */

.cards-section {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
  }
  
  .cards-container {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
  }
  
  /* Estilos de la tarjeta */
  .card {
    width: 344px;
    height: 325px;
    perspective: 1000px; 
    border: none;
  }
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d; 
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  }
  
  .card:hover .card-inner {
    transform: rotateY(180deg);
  }
  

  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; 
    overflow: hidden;
  }
  
  .card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
 
   
  }
  
  .card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-title {
    background-color: #090745;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%, 0 30%);
    color: white;
    width: 338px;
    text-align: center;
    padding: 1rem 2rem;
    margin-top: -60px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins';

  }
  
 
  .card-back {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    color: white;
  
    transform: rotateY(180deg);
  }
  
  .card-back-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); 
    z-index: 1;
  }
  
  .card-back-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1rem 2rem;
  }
  
  .card-back-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 1rem;
  }
  .card-back-content p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }
  
  .card-back-content ul {
    text-align: left;
  padding-left: 0 !important;
  margin: 0;
   padding: 0;
   margin-right: 100px;
  }
  
  .card-back-content ul li {
    text-align: left;
    margin-bottom: 0.1rem;
    font-size: 16px;
  }
  

  @media (max-width: 1024px) {
    .cards-container {
        
        gap: 2rem; 
        align-items: center;
    }

    .card {
        width: 250px; 
        height: 290px; 
    }

    .card-title {
        font-size: 18px; 
        padding: 0.8rem; 
        margin-top: -20px;
    }

    .card-back-content {
        padding: 0.8rem; 
    }

    .card-back-content p, .card-back-content ul li {
        font-size: 14px;
       
    }
    .card-back-content ul {
      margin-right: 50px;
    }
}

@media (max-width: 768px) {
    .cards-section{
        padding: 2rem;
    }
    .cards-container {
        flex-direction: column;
        gap: 1.5rem; 
    }

    .card {
        width: 240px; 
        height: 280px; 
    }

    .card-title {
        font-size: 16px; 
        padding: 0.6rem; 
      
    }

    .card-back-content {
        padding: 1rem !important; 
    }

    .card-back-content h3 {
      text-align: center;
    }
    .card-back-content p, .card-back-content ul li {
        font-size: 13px; 

    }
    .card-back-content ul {
      margin-right: 0px;
    }
}



/* Banner gradiente */


.gradient-banner {
    background: linear-gradient(145deg, #150DF7, #1A176D);
    padding: 4rem 2rem;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .banner-content-3 {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .banner-title-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .banner-text-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
  }
  
/* Estilo para tablets */
@media (max-width: 1024px) {
    .gradient-banner {
      padding: 3rem 1.5rem;
    }
    
    .banner-content-3 {
      max-width: 900px;
    }
    
    .banner-title-3 {
      font-size: 28px;
      line-height: 1.4;
    }
    
    .banner-text-3 {
      font-size: 18px;
      line-height: 1.6;
    }
  }
  
  /* Estilo para móviles */
  @media (max-width: 768px) {
    .gradient-banner {
      padding: 2.5rem 1rem;
    }
    
    .banner-content-3 {
      max-width: 100%;
    }
    
    .banner-title-3 {
      font-size: 24px;
      line-height: 1.3;
    }
    
    .banner-text-3 {
      font-size: 16px;
      line-height: 1.5;
    }
  }
  




/*Form */

.form-section {
    padding: 6rem 2rem;
    text-align: center;
  }
  
  .section-title {
    font-size: 36px;
   font-weight: 600;
    
    margin-bottom: 1rem;
    color: #3F4041;
    font-family: 'Poppins';
  }
  
  .section-title span {
    color: #090745;
  }
  
  .form-subtitle {
    font-size: 24px;
    color: #3F4041;
    font-weight: 500;
    margin-bottom: 4rem;
    font-family: 'Poppins';
    line-height: 1;
  }
  
  .form-subtitle span {
    font-weight: 500;
    color: #090745;
  }
  


  /* Form Container */
  .form-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .form-row {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    flex: 1;
  }
 
  .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .input-wrapper img {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
  }
  
  .input-wrapper input {
    width: 100%;
    padding: 0.8rem 0.8rem 0.8rem 3rem;
 
    font-size: 16px;
   border: 2px solid #000120;
    outline: none;
    color: #7E7E7E;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
  }
  
  input::placeholder {
    color: #7E7E7E;
    font-size: 15px;
    font-weight:700 !important;
    margin-left: 0;
    font-family: 'Poppins';
  }




  
  /* Form Footer */
  .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  /* Contenedor del CV */
.upload-cv {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 13px;
    color: #00012080;
    font-weight: 600;
  }
  
  /* Input oculto */
  .cv-input {
    display: none; /* Oculta el input real */
  }
  
  /* Estilo del botón */
  .cv-button {
    display: inline-block;
    background-color: white;
    color: #000120;
    border: 1px solid #000120;
    padding: 0.5rem 1.2rem;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
  }
  
  /* Hover del botón */
  .cv-button:hover {
    background-color: #090745;
    color: white;
  }
  
  
  .submit-button {
    background-color: #000120;
    color: white;
    padding: 0.7rem 3.7rem;
    border: none;
    border: 1px solid #177EF4;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins';
    cursor: pointer;
  }
  
  .submit-button:hover {
    background-color: #3F4041;
  }
  
  /* Responsive Styles */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .form-row {
      flex-direction: column;
    }
  
    .form-footer {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .submit-button {
      align-self: flex-end;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .form-section {
      padding: 2rem 1rem;
    }
  
    .form-container {
      width: 100%;
    }
  
    .form-row {
      flex-direction: column;
    }
  
    .input-wrapper input {
      font-size: 14px;
      padding: 0.8rem 3rem;
    }
  
    .submit-button {
      width: 50%;
      margin: 0 auto;
    }
  }

  .form-title-underline {
    width: 82px;
    height: 4px;
    background-color: #090745;
    margin: 0.5rem auto; 
    margin-bottom: 2rem;
  }
  
/* Footer  */
.footer {
    background-color:#000120;
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
    padding: 4rem 0rem;
    color: white;
    position: relative;
    overflow: hidden;
  

}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000120;
   
    z-index: -1; /* Envía el fondo detrás del contenido */
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-section {
    color: #ffffff;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: center;
    gap: 0.5rem;
    
    margin: 1.5rem 0;
}

.footer-heading {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    
    position: relative;
}
.footer-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #177EF4;
    margin: 0.5rem auto 0;
    margin-bottom: 10px;
}

.footer-section p {
    display: flex;
    align-items:flex-start;
    gap: 0.5rem;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
    text-align: left;
    margin-bottom: 10px;
}

.footer-section img {
    width: 20px;
    height: 20px;
}
.footer-logo {
    width: 100px;
    margin-bottom: 1rem;
}

.footer-company {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-contact h3,
.footer-location h3 {
    font-size: 1.15rem;
    font-weight: bold;
    color: #3F4041;
    margin-bottom: 0.5rem;
    text-decoration: underline;
}

.footer-contact p,
.footer-location p{

    text-align: left;
}
/* Social icons */
.footer-social a {
    margin: 0 0.5rem;
}

/* Bottom line and Axyoma link */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    font-weight: 400;
    font-family: 'Poppins';
    color: #FFFFFF;
}

.footer-line {
    flex: 1;
    height:1px;
    background-color: #18A7F3;
    margin: 0; 

}
.footer-bottom a {
    margin: 0; 
    line-height: 2px; 
    font-size: 1rem;
    color: #f0f0f0;
    font-family: 'Poppins';
    text-decoration: none;
}

.footer-bottom a:hover{
    font-style: italic;
}

/* Footer contact links styles */
.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-section a:hover {
    color: #177EF4;
    text-decoration: underline;
}
/* Media query adjustments */
@media (max-width: 768px) {
    .footer{
        clip-path: none;
    }
    .footer-content {
        flex-direction: column;
    }
}

/* Presupuesto */


/* Banner telefono */

.custom-contact-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0; 
    background-color: #ffffff; 
}


.custom-banner-background {
    max-width: 90%; 
    height: auto;
  
}


.custom-banner-button {
    position: absolute;
    bottom: 20%;
    transform: translateY(50%);
    max-width: 20%;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-banner-background {
        max-width: 100%; 
        background-size: cover;
   
  
    }
    .custom-banner-button {
        max-width: 25%; 
    }
    .custom-contact-banner {
        padding: 0;
    }
}





.budget-section {
    padding: 4rem 6rem;
    text-align: center;
    position: relative;
  }
  
  .budget-title {
    font-size: 36px;
    font-weight: 600;
    color: #090745;
    margin-bottom: 3rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .budget-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 6rem; 
  }
  
  .budget-left {
    flex: 1;
    text-align: left;

  }
  
  .budget-left p {
    font-size: 20px;
    line-height: 1.6;
    width: 700px;
  }
  
  .budget-left .highlight {
    font-weight: 700;
    color: #14107D;
  }
  
  .budget-icons {
    margin-top: 2rem;
  }
  
  .icon-text {
    display: flex;
    align-items: center;
    gap: 1rem; 
    margin-bottom: 4rem;
    font-style: italic;
  }
  
  .icon-text img {
    width: 79px;
    height: 72px;
  }
  
  .icon-text p {
    font-size: 18px; /* Tamaño del texto */
    line-height: 70px; /* Igualar la altura del texto con el icono */
    margin: 0; /* Eliminar márgenes */
  }
  
  .budget-right {
    flex: 1;
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 31px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 450px;
    border-top: 5px solid #000120;
    border-bottom: 5px solid #000120;
  }
  
  .budget-right h2 {
    font-size: 30px;
    font-weight: 600;
    color: #000120;
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .form-two {
    display: flex;
    flex-direction: column;
    align-items: center;
  
  }
  
  .form-group-two{
    display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 0.50rem;
    border: 1px solid #000120;
    
    font-size: 13px;
  }
  
  form textarea {
    resize: none;
    height: 100px;
  }
  

  form button {
    background: #000120; /* Color ajustado */
    color: #fff;
    padding: 0.75rem 4rem; /* Tamaño más pequeño */
    border: 1px solid #177EF4;
   
    font-size: 14px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background: #14107D;
  }
  
  .form-two input::placeholder,
  .form-two textarea::placeholder {
    color: #00012080; 
    font-weight: 300 !important ; 
    font-size: 12px;
  }


  @media (max-width: 1378px) {
   form input,
  form textarea {
   
    font-size: 8px !important;
  

  }
   .form-two input::placeholder,
  .form-two textarea::placeholder {
    color: #00012080; 
    font-weight: 300 !important ; 
    font-size: 8px;
  }
  }

  /* Estilos para tablets (768px a 1024px) */
@media (max-width: 1024px) {
    .budget-section {
      padding: 3rem 2rem;
    }
  
    .budget-title {
      font-size: 28px;
      top: 1rem;
      left: 50%;
      transform: translateX(-50%);
    }
  
    .budget-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      margin-top: 5rem;
    }
  
    .budget-left {
      text-align: center;
      margin-top: -50px;
    }
  
    .budget-left p {
      font-size: 18px;
      max-width: 100%;
      margin-bottom: 10px;
    }
  
    .budget-icons {
      margin-top: 1rem;
    }
  
    .icon-text {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .icon-text img {
      width: 60px;
      height: 55px;
    }
  
    .icon-text p {
      font-size: 16px;
      line-height: 1.5;
      margin-top: 0.5rem;
    }
  
    .budget-right {
      padding: 1.5rem;
      max-width: 100%;
    }
  
    .budget-right h2 {
      font-size: 26px;
      margin-bottom: 1rem;
    }
  
    form button {
      padding: 0.5rem 3rem;
      font-size: 13px;
    }
  }
  
  
  @media (max-width: 500px) {
    .budget-section {
      padding: 2rem 1rem;
      overflow-x: hidden;
    }
  
   .section-title  {
    font-size: 30px !important;
   }
    .budget-container {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  
    .budget-left {
      text-align: center;
      margin-top: -40px;
    }
  
    .budget-left p {
      font-size: 16px;
      line-height: 1.4;
   
      max-width: 50%;
      margin: 0 auto;
    }
  
    .budget-icons {
      margin-top: 1rem;
      overflow-x: hidden !important;
    }
  
    .icon-text {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 1.5rem;
     
    }
  
    .icon-text img {
      width: 50px;
      height: 45px;
    }
  
    .icon-text p {
      font-size: 14px;
      line-height: 1.3;
      margin-top: 0.5rem;
    }
  
    .budget-right {
      padding: 1rem;
      max-width: 100%;
      border-radius: 20px;
    }
  
    .budget-right h2 {
      font-size: 22px;
    }
  
    form input,
    form textarea {
      font-size: 12px;
      padding: 0.5rem;
    }
  
    form textarea {
      height: 80px;
    }
  
    form button {
      padding: 0.5rem 2rem;
      font-size: 12px;
    }
}



/* Location */



.location-section {
    padding: 4rem 2rem;
    text-align: center;
  }
  

  .map-wrapper {
    max-width: 831px;
    margin: 0 auto;
    position: relative;
    border-top: 2px solid #000120;
    border-bottom: 2px solid #000120;
    padding: 15px; 
    margin-top: 70px;
     
  }
  .map-wrapper::before,
.map-wrapper::after {
  content: '';
  position: absolute;
  width: 2px; 
  height: 50%; 
  background-color: #000120;
}

.map-wrapper::before {
  left: 0; 
  top: 75%; 
  transform: translateY(-50%); 
}

.map-wrapper::after {
  right: 0; 
  bottom: 75%; 
  transform: translateY(50%); 
}

  
  .map-container {
    width: 100%;
    height: 353px; 
    overflow: hidden;
   
  }
  .contact-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    text-align: left;
    margin-top: 3rem;

  }
  
  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }
  
  .icon-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
  }
  
  .icon-title img {
    width: 24px;
    height: 24px;
  }
  
  .icon-title strong {
    font-weight: 800;
    font-size: 18px;
    color: #3F4041;
  }
  
  .contact-item p {
    font-size: 11px;
    color: #3F4041;
    margin: 0;
    text-decoration: none;
    text-align: left;
  }
  
  .divider {
    border-left: 1px solid #000120;
    height: 50px;
  }
  .contact-item a {
    text-decoration: none;
  }
  
.contact-item a:hover{
    font-weight: 500;
  }
  
  
  @media (max-width: 768px) {
    .location-section {
      padding: 2rem 1rem; 
    }
  
    .map-wrapper {
      max-width: 100%; 
      padding: 10px; 
      margin-top: 40px; 
    }
  
    .map-container {
      height: 250px; 
    }
  
    .contact-info {
      flex-direction: column; 
      align-items: center;
      gap: 2rem; 
      margin-top: 2rem; 
      text-align: center;
    }
  
    .contact-item {
      align-items: center; 
      text-align: center;
    }
  
    .icon-title {
      justify-content: center; 
    }
  
    .icon-title strong {
      font-size: 16px; 
    }
  
    .contact-item p {
      font-size: 12px;
      text-align: center;
    }
  
    .divider {
      display: none; 
    }
  }
  .mobile-only {
    display: none;
  }

  /* Responsive Adjustments */
@media (max-width: 500px) {
   
    
  .mobile-only {
    display: block;
    width: 100%; 
    height: auto; 
  }

.custom-banner-background {
    display: none;
}
.custom-banner-button {
    display: none;
}
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 20% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 300px; /* Más pequeño */
  text-align: center;
  border-radius: 8px;
}

.modal-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.modal-button {
  background-color: #000120;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.modal-button:hover {
  background-color: #1A176D;
}
.invalid {
  border: 2px solid rgb(81, 2, 2);
  outline: none;
}

/* Navigation Right Section */
.nav-right-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 4rem;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-social-icon {
    width: 22px;
    height: 22px;
    transition: opacity 0.3s;
}

.nav-social a:hover .nav-social-icon {
    opacity: 0.7;
}

/* Mobile Navigation Bottom Section */
.mobile-nav-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-nav-social {
    display: flex;
    gap: 1rem;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    width: 66px;
    height: 66px; 
   
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 1000; 
    transition: transform 0.3s ease; 
}

.whatsapp-float:hover {
    transform: scale(1.1); 
}

.whatsapp-float img {
    width: 80%;
    height: auto;
}

