.iconos {
    margin-left: 70px;
    margin-right: 70px; 
    background-color: #8993a7; /* Fondo suave claro */

}

/*----------------------------------------------------*/


.button {
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    background-color: #25D366; /* Color verde WhatsApp */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
  }
  
  .button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .maps-button {
    background-color: #4285F4; /* Azul Google Maps */
  }
  
/*----------------------------------------------------*/


.contact-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #ffffff; /* Fondo blanco */
}

.form-card {
  background-color: #8993a7; /* Fondo suave claro */
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 188, 156, 0.15);
}

.form-title {
  color: #2f3640;
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  font-size: 16px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #1abc9c;
  box-shadow: 0 0 0 3px #1abc9c33;
}

.form-button {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  color: #fff;
}

.form-button.whatsapp {
  background-color: #25D366;
}

.form-button.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.form-button:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.button-icon {
  width: 22px;
  height: 22px;
}
  
/*----------------------------------------------------*/


  .custom-footer {
    background-color: #8993a7; /* Fondo suave claro */
    padding: 60px 20px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-title {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #f1f1f1;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  .footer-link {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    background-color: #2f3640;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 200px;
  }
  
  .footer-link i {
    font-size: 32px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .footer-link span {
    font-size: 18px;
    font-weight: 500;
  }
  
  .footer-link:hover {
    background-color: #1abc9c;
    color: #ffffff;
    transform: translateY(-5px);
  }
  
  .footer-link:hover i {
    transform: scale(1.2);
  }
  
  /*----------------------------------------------------*/


.portfolio-item img {
  width: 100%;
  height: 700px; /* o 300px, según tu diseño */
  object-fit: cover;
}

/*----------------------------------------------------*/

.interactive-navbar {
  background: linear-gradient(to right, #25d3ca76, #1abc9c95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  border-radius: 16px;
  margin: 20px auto;
  max-width: 95%;
  transition: all 0.3s ease;
}

.nav-link.nav-animated-link {
  color: white;
  font-weight: bold;
  position: relative;
  padding: 10px 18px;
  margin: 0 8px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-link.nav-animated-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  background: #ffffff;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link.nav-animated-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-link.nav-animated-link:hover::after {
  width: 60%;
}

.navbar-toggler {
  border-color: white;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*----------------------------------------------------*/

.about-section-modern {
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 60px 20px;
}

.about-card-modern {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  margin: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 188, 156, 0.2);
}

.section-title {
  font-size: 24px;
  color: #2f3640;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.divider-line {
  height: 3px;
  width: 60px;
  background-color: #25D366;
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.about-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.info-list {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  color: #333;
}

.info-list li {
  margin-bottom: 10px;
}

.feature-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.icon-feature {
  font-size: 24px;
  color: #25D366;
  margin-right: 15px;
  margin-top: 4px;
}

.feature-block p {
  margin: 0;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

/*----------------------------------------------------*/

.iconos-modern {
  background: linear-gradient(135deg, #8993a7, #6c7383);
  padding: 60px 20px;
  border-radius: 20px 20px 0 0;
}

.icon-box {
  background-color: #fff;
  padding: 30px 20px;
  margin: 15px 0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.2);
}

.icon-circle {
  background-color: #403b8f95;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.icon-circle i {
  color: #fff;
  font-size: 28px;
}

.icon-box:hover .icon-circle {
  background-color: #25D366;
}

.icon-value {
  font-size: 28px;
  font-weight: bold;
  color: #2f3640;
}

.icon-label {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/*----------------------------------------------------*/

.iconos-modern {
  background: linear-gradient(135deg, #e0e4ec, #cfd4dd);
  padding: 60px 20px;
  border-radius: 20px 20px 0 0;
}

.portfolio-item {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover img {
  opacity: 0.95;
}

.filters a {
  background: #9bb6e1;
  color: #333;
  border-radius: 20px;
  padding: 8px 16px;
  margin: 0 8px 20px 0;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.filters a.active,
.filters a:hover {
  background-color: #156ccf;
  color: #fff;
}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@400;600&display=swap');

.des-card {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  border: 2px solid #007bff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  padding: 20px;
  cursor: pointer;

  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;

  flex-wrap: wrap; /* Para que en pantallas pequeñas se acomode vertical */
}

.des-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 123, 255, 0.2);
}

.des-card .img-holder {
  flex: 1 1 300px;
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.des-card .img-holder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.des-card .content-holder {
  flex: 2 1 400px;
}

.des-card .title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #003d99;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.des-card .title::before {
  content: '➤';
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff;
  font-size: 1.2rem;
}

.des-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
  transition: color 0.3s;
  text-align: justify;
}

.des-card:hover p {
  color: #222;
}

/* RESPONSIVE: cambia a columna en pantallas pequeñas */
@media (max-width: 768px) {
  .des-card {
    flex-direction: column;
    align-items: center;
  }

  .des-card .img-holder,
  .des-card .content-holder {
    max-width: 100%;
  }

  .des-card .title {
    text-align: center;
  }
}


/* //////////////////////////////////////////////////////////////////////////// */

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: all 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #000;
  left: 0;
  transition: all 0.3s;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}
