
.tm-slide-content-div {
  position: relative;
  padding: 20px;
  color: #49666c; /* Color del texto */
}

h2, p, span {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) /* Sombra de texto para mejorar visibilidad */
}

h2 {
  font-size: 2em; /* Tamaño más grande para los títulos */
  font-weight: bold;
}

.primary-button a {
  background-color: #007BFF; /* Fondo azul para el botón */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.primary-button a:hover {
  background-color: #0056b3; /* Cambio de color al pasar el mouse */
}

#main-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

#main-nav ul li {
  margin: 0 15px;
}

#main-nav ul li a {
  color: white; /* Color blanco para los enlaces */
  font-size: 18px; /* Tamaño adecuado para los enlaces */
  font-weight: bold; /* Resaltar el texto */
  text-transform: uppercase; /* Hacer los enlaces en mayúsculas */
  text-decoration: none; /* Quitar subrayado */
  transition: all 0.3s ease; /* Transición para efectos de hover */
}

#main-nav ul li a:hover {
  color: #ff6347; /* Cambiar color al pasar el ratón (por ejemplo, un color naranja) */
  text-decoration: underline; /* Subrayado al pasar el ratón */
}

/* Efecto para el enlace activo */
#main-nav ul li a.scroll-top {
  color: #ff6347; /* Resaltar "Inicio" con color especial */
}

.image img{
  height: 240px;
  width: 260px;
}

.footer-2 {
  position: relative;
  color: #49666c;
  background-size: 800px 800px;
  background-position: top left;
  background-repeat: repeat;
  padding: 30px 0;
}


.container {
  position: relative;
  z-index: 1; /* Asegúrate de que el contenido esté por encima de la textura */
}

.social-list {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.social-item {
  margin: 0 15px;
}

.social-item a {
  color: #ffffff;
  text-decoration: none;
}

.icon-lg {
  font-size: 24px;
  transition: color 0.3s;
}

.social-item a:hover {
  color: #f39c12;
}
.mission-vision-section {
  background: #F9F1E1; /* Color de fondo suave */
  padding: 50px 0;
  border-top: 2px solid #A8C4B3;
}

.card {
  background: rgba(255, 255, 255, 0.8); /* Fondo blanco semi-transparente */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px); /* Efecto de elevación al pasar el ratón */
}

.card-image {
  max-width: 100%;
  height: auto;
}

.card-content {
  padding: 20px;
}

.section-title {
  color: #49666c; /* Título en verde oscuro */
  font-size: 24px;
  margin: 15px 0;
  font-weight: bold;
}

.section-description {
  color: #333333; /* Texto en gris oscuro */
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-title {
      font-size: 20px;
  }
  .section-description {
      font-size: 12px;
  }
}
.mission-vision-section-new {
  position: relative;
  background: #F9F1E1; /* Color de fondo suave */
  padding: 50px 0;
}

.slider-new {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.slide-new {
  display: none; /* Ocultar por defecto */
}

.card-new {
  background: rgba(255, 255, 255, 0.9); /* Fondo blanco semi-transparente */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card-image-new {
  max-width: 100%;
  height: auto;
}

.card-content-new {
  padding: 20px;
}

.section-title-new {
  color: #49666c; /* Título en verde oscuro */
  font-size: 24px;
  margin: 15px 0;
  font-weight: bold;
}

.section-description-new {
  color: #333333; /* Texto en gris oscuro */
  font-size: 17px;
  line-height: 1.5;
}

button.prev-new, button.next-new {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #49666c;
  z-index: 1000;
}

button.prev-new {
  left: 10px;
}

button.next-new {
  right: 10px;
}

.mission-vision-section-comparative {
  background: #F9F1E1; /* Color de fondo suave */
  padding: 50px 0;
  border-top: 2px solid #A8C4B3;
}

.card-comparative {
  background: rgba(255, 255, 255, 0.9); /* Fondo blanco semi-transparente */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card-image-comparative {
  max-width: 100%;
  height: auto;
}

.card-content-comparative {
  padding: 20px;
}

.section-title-comparative {
  color: #49666c; /* Título en verde oscuro */
  font-size: 24px;
  margin: 15px 0;
  font-weight: bold;
}

.section-description-comparative {
  color: #333333; /* Texto en gris oscuro */
  font-size: 14px;
  line-height: 1.5;
}

/* Estilo responsivo */
@media (max-width: 768px) {
  .mission-vision-section-comparative .row {
      flex-direction: column; /* Colocar en columna en pantallas pequeñas */
  }
}

.services-section {
  padding: 50px 0;
  background-color: #E5F6F2; /* Color de fondo suave y amigable */
}

.section-heading {
  margin-bottom: 40px;
}

.service-card-new {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 20px;
  margin: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.7s;
}

.service-card-new:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background-color: #97c7b9;
  color: #ffffff;
}


.service-card-new:hover .icon-service-new{
  color: #ffffff;
}

.service-card-new:hover h4{
  color: #ffffff;
}

.service-card-new:hover p{
  color: #ffffff;
}

.icon-service-new {
  font-size: 40px; /* Tamaño de icono */
  color: #49666c; /* Color que combina con el tema */
  margin-bottom: 15px;
}

#contact {
  background-position: center;
}

h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  font-size: 14px; /* Tamaño de texto en la descripción */
  color: #555; /* Color del texto de descripción */
}

/* Estilo responsivo */
@media (max-width: 768px) {
  .service-card-new {
      margin: 10px 0;
  }
}
.products-section {
  padding: 50px 0;
  background-color: #f0f8f8; /* Color de fondo claro */
}

.section-heading {
  margin-bottom: 40px;
}

.projects-holder-modern {
  position: relative;
}

.project-filter-modern {
  text-align: center;
  margin-bottom: 30px;
}

.project-filter-modern li {
  display: inline-block;
  margin: 0 15px;
  cursor: pointer;
  font-weight: bold;
  color: #49666c;
}

.project-filter-modern .active {
  color: #3a5c56; /* Color de filtro activo */
}

.thumb-modern {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s;
}

.thumb-modern:hover {
  transform: scale(1.05);
}

.hover-effect-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.thumb-modern:hover .hover-effect-modern {
  opacity: 1;
}

.hover-effect-modern i {
  font-size: 30px;
  color: #f8b6a1; /* Color del icono */
}

/* Estilo responsivo */
@media (max-width: 768px) {
  .thumb-modern {
      margin-bottom: 15px;
  }
}
.header-contact {
  display: flex; /* Utiliza flexbox para alinear el icono y el texto */
  align-items: center; /* Centra verticalmente */
  margin-left: 20px; /* Espacio entre el logo y el contacto */
  margin-top: 23px;
}

.phone-link {
  color: #49666c; /* Color del texto */
  font-size: 16px; /* Tamaño de la fuente */
  text-decoration: none; /* Sin subrayado */
  display: flex; /* Flexbox para alineación */
  align-items: center; /* Centrar verticalmente */
}

.phone-link i {
  margin-right: 5px; /* Espaciado entre el icono y el texto */
  font-size: 18px; /* Tamaño del icono */
}

.row-urnas2{
  margin-top: 30px;
}

.flex-active-slide img{
  height: 700px;
}

.flexslider{
  height: 700px;
}

/* Estilos para móviles */
@media (max-width: 768px) {
  #main-nav ul {
      flex-direction: column; /* Cambiar la dirección de los elementos a columna */
  }
  #main-nav ul li {
      margin: 10px 0; /* Espaciado entre los elementos del menú */
  }
}
      
/* Estilo responsivo */
@media (max-width: 768px) {
  .logo img{
      width: 63px;
      height: 63px;
  }

  .row-header{
      margin-top: -15px;
  }

  .projects-holder{
      text-align: center;
  }
  
  .icon-service-new{
      font-size: 35px;
      margin-bottom: 5px;
  }
  
  .service-card-new h4{
      font-size: 20px;
  }
  
  .service-card-new p{
      font-size: 13px;
  }
  
  .service-card-new{
      height: 270px;
  }

  .row-urnas2{
    margin-top: 0px;
  }

  .flex-active-slide img{
    height: 290px;
  }

  .flexslider{
    height: 290px;
  }
  
  .lb-image{
    width: 320px !important;
    height: 320px !important;
  }
}

@media (max-width: 2000px) {
  .lb-image{
    width: 650px;
    height: 650px;
  }
}

.contact-form {
  max-width: 600px; /* Set a max width for larger screens */
  width: 100%; /* Allow it to be full width on smaller screens */
  margin: 0 auto; /* Center the form */
}

@media (max-width: 768px) {
  .contact-form {
      padding: 15px; /* Add padding for smaller screens */
  }
}

.form-control {
  width: 100%; /* Make inputs and textareas full width */
  margin-bottom: 15px; /* Space between fields */
}

.btn {
  width: 100%; /* Make button full width */
}

.fixed-img {
    height: 250px;
    overflow: hidden;
}

.fixed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contenido-articulo p {
  margin-bottom: 1.25em;
  line-height: 1.6;
  font-size: 16px;
  color: #444;
}

.contenido-articulo ul {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
  list-style-type: disc;
}

.contenido-articulo ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
  list-style-type: decimal;
}

.contenido-articulo strong {
  font-weight: 700;
  color: #333;
}

.contenido-articulo em,
.contenido-articulo i {
  font-style: italic;
  color: #666; /* Puedes cambiar el color si quieres */
}

.contenido-articulo a {
  color: #5fb382;
  text-decoration: underline;
}

.contenido-articulo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.map-border {
  border: 4px solid #333;  /* borde sólido, color gris oscuro */
  border-radius: 8px;      /* bordes redondeados para mejor look */
  box-shadow: 0 0 50px rgba(3, 3, 3, 6);
}

.our-team .team-member .inner-content {
    background: whitesmoke;
    border: 1px solid #d6d6d6;
    border-top: 0;
    padding: 20px;
}

.contact-bubble {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  width: 50px;
  height: 50px;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.bubble:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.whatsapp {
  background-color: #25D366;
}

.email {
  background-color: #D44638; /* o #EA4335 estilo Gmail */
}

.facebook {
  background-color: #1877F2;
}

.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%);
}

.i-whatsapp {
  color: #25D366 !important;
}

.i-email {
  color: #D44638 !important; /* o #EA4335 estilo Gmail */
}

.i-facebook {
  color: #1877F2 !important;
}

.i-instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dw-info-contacto {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  color: #333;
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
}

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

.dw-icon {
  font-size: 20px;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 5px;
  color: #555;
}

.dw-info-titulo {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: bold;
}

.dw-link {
  color: #007BFF; /* Azul limpio para links */
  text-decoration: none;
}

.dw-link:hover {
  text-decoration: underline;
}

.blog-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px; /* ajusta según diseño */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.member-img {
    height: 250px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.truncate-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* muestra máximo 2 líneas */
    -webkit-box-orient: vertical;
    min-height: 48px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 14px;
    min-height: 42px;
}

.read-more-wrapper {
    margin-top: auto; /* empuja el botón al fondo */
}

.blog-section {
    padding: 50px 0;
    background-color: #E5F6F2;
}


.blog-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-subtitle {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
    margin-bottom: 15px;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-button-wrapper {
    text-align: center;
}


.blog-button{
    display: inline-block;
    background-color: #5c9d7d;
    padding: 12px 18px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 20px;
}

.blog-button:hover{
    color: #fff;
    background-color: #a1cfc8;
    transition: all 0.3s;
}

.menu a.active {
      background: #49666c;
    color: white !important;
  font-weight: bold;
}

.menu li a.active {
      background: #49666c;
    color: white !important;
}

.left-header > a{
  color: white;
}