.card .card-title, .card .card-text {
  text-align: center;
}
@media (max-width: 767.98px) {
  #btn-filtros-mobile {
    font-size: 0.98rem;
    padding: 6px 12px;
    width: 140px !important;
    min-width: 0;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .modal-dialog {
    max-width: 95vw;
    margin: 0 auto;
  }
}
/* --- Servicios Destacados --- */
.servicios-destacados-section {
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 32px 24px;
  text-align: center;
}
.servicios-title {
  color: #154465;
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.servicios-destacados-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.servicio-card {
  background: #eaf6fa;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(21,68,101,0.08);
  width: 250px;
  padding: 22px 14px 16px 14px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.servicio-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(21,68,101,0.13);
}
.servicio-card img {
  width: 100%;
  max-width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(21,68,101,0.10);
}
.servicio-card h3 {
  color: #223a5e;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.servicio-card p {
  color: #154465;
  font-size: 0.98rem;
  margin: 0;
}
@media (max-width: 900px) {
  .servicios-destacados-grid {
    gap: 16px;
  }
  .servicio-card {
    width: 160px;
    padding: 12px 4px 8px 4px;
  }
  .servicio-card img {
    max-width: 80px;
    height: 60px;
  }
}

/* --- Beneficios / Por qué Elegirnos --- */
.beneficios-section {
  max-width: 900px;
  margin: 40px auto 0 auto;
  background: #eaf6fa;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(21,68,101,0.08);
  padding: 28px 18px;
  text-align: center;
}
.beneficios-title {
  color: #154465;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.beneficios-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.beneficios-list li {
  color: #223a5e;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  box-shadow: 0 1px 4px rgba(21,68,101,0.06);
  width: 100%;
  max-width: 500px;
  justify-content: flex-start;
}
.beneficios-list i {
  color: #154465;
  font-size: 1.2rem;
}
@media (max-width: 700px) {
  .beneficios-section {
    padding: 14px 4px;
    border-radius: 10px;
  }
  .beneficios-title {
    font-size: 1rem;
  }
  .beneficios-list li {
    font-size: 0.95rem;
    padding: 7px 8px;
    max-width: 98vw;
  }
}
body {
    background-color: #b8e6e5;
}
.navbar {
    background-color: #91c9dc;
    font-family: 'Montserrat', Arial, sans-serif;
}
.navbar-nav .nav-item {
    margin: 10px 80px;
}

.navbar-nav .nav-link:hover {
    background-color: #154465;  
    color: #fff !important;     
    border-radius: 6px;          
    transition: background 0.2s; 
    transform: scale(1.3); /* Hace que el botón crezca al hacer hover */
}
.banner-carrusel {
  width: 100%;
  max-width: 1920px;
  height: 600px;
  margin: 40px auto 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-item {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.banner-item.active {
  display: block;
  opacity: 1;
  position: relative;
}
.banner-carrusel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
@media (max-width: 700px) {
  .banner-carrusel {
    max-width: 98vw;
    height: 300px;
  }
  .banner-carrusel img {
    border-radius: 10px;
  }
}

.categorias-carrusel {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px auto;
  flex-wrap: wrap;
}
.categoria-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  width: 220px;
  padding: 18px 12px 8px 12px;
  text-align: center;
  transition: transform 0.2s;
}
.categoria-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.categoria-item img {
  width: 100%;
  border-radius: 8px;
  height: 180px;
  object-fit: cover;
}
.categoria-item p {
  margin: 12px 0 0 0;
  font-weight: 600;
  color: #223a5e;
  font-size: 1.1rem;
}
@media (max-width: 700px) {
  .categorias-carrusel {
    gap: 12px;
  }
  .categoria-item {
    width: 120px;
    padding: 10px 4px 4px 4px;
  }
  .categoria-item img {
    height: 80px;
  }
}

.logo-esuniformes {
    width: 100%;
    max-width: 420px;
    padding-top: 40px;
    height: auto;
    display: block;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .logo-esuniformes {
        max-width: 90vw;
    }
}

.footer-es-uniformes {
  background: #154465;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-top: 40px;
}

.btn-escudo-amparo img {
    width: 90px;         /* Ajusta el tamaño según lo necesites */
    height: auto;
    border-radius: 12px; /* Opcional: bordes redondeados */
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: transform 0.2s;
}
.btn-escudo-amparo img:hover {
    transform: scale(1.08);
}
.btn-escudo-amparo {
    display: inline-block;
    margin: 24px 0;
}
.filtros-lateral {
  max-width: 320px;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .filtros-lateral {
    max-width: 100%;
  }
}

.info-video-section {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.info-empresa {
  background: #fff;
  border-radius: 28px;
  flex: 2 1 400px;
  min-width: 320px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 24px rgba(21,68,101,0.10);
  border: 2px solid #91c9dc;
}
.titulo-info {
  font-size: 2.2rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.es-rojo {
  color: #ff2222;
}
.uniformes-negro {
  color: #154465;
}
.info-empresa p {
  font-size: 1.15rem;
  color: #222;
  text-align: center;
  margin: 0;
}
.video-tiktok {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.video-tiktok video {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 9/16;
  border-radius: 28px;
  background: #000;
  margin-bottom: 10px;
  box-shadow: 0 4px 24px rgba(21,68,101,0.18);
  border: 4px solid #154465;
}
.video-label {
  color: #154465;
  font-size: 1rem;
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .info-video-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .info-empresa, .video-tiktok {
    min-width: 0;
    max-width: 100%;
    border-radius: 18px;
    padding: 24px 10px;
  }
  .video-tiktok video {
    max-width: 100%;
  }
}

.map-address-section {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 48px auto 0 auto;
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(21,68,101,0.10);
  max-width: 1200px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.map-container {
  flex: 1 1 380px;
  min-width: 260px;
  padding: 0 8px;
}
.mapouter {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.66%; /* Relación 3:2 para responsividad */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(21,68,101,0.08);
}
.gmap_canvas {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: none !important;
}
.gmap_iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 12px;
}
.address-container {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.address-container h3 {
  font-size: 1.3rem;
  color: #154465;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.address-container p {
  margin: 8px 0;
  color: #223a5e;
  font-size: 1.05rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .map-address-section {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 4px;
    gap: 18px;
  }
  .map-container, .address-container {
    min-width: 0;
    padding: 0;
  }
  .mapouter {
    border-radius: 10px;
  }
}

.faq-carrusel-section {
  max-width: 700px;
  margin: 48px auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(21,68,101,0.10);
  padding: 32px 24px;
  text-align: center;
}
.faq-title {
  color: #154465;
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.faq-carrusel {
  position: relative;
  min-height: 120px;
  overflow: hidden;
}
.faq-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s;
}
.faq-slide.active {
  display: flex;
}
.faq-slide h3 {
  color: #223a5e;
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.faq-slide ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  gap: 18px;
  justify-content: center;
}
.faq-slide ul li {
  font-size: 1rem;
  color: #154465;
  display: flex;
  align-items: center;
  gap: 6px;
}
.faq-color {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
}
.faq-color.verde { background: #4caf50; }
.faq-color.naranja { background: #ff9800; }
.faq-color.amarillo { background: #ffeb3b; }
.faq-color.gris { background: #bdbdbd; }
.faq-desc {
  color: #223a5e;
  font-size: 0.98rem;
  margin-top: 8px;
}
.faq-controls {
  display: flex;
  justify-content: center;
  gap: 500px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.faq-controls button {
  background: #154465;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(21,68,101,0.10);
  transition: background 0.3s, transform 0.2s;
}
.faq-controls button:hover {
  background: #223a5e;
  transform: scale(1.12);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .faq-carrusel-section {
    padding: 18px 6px;
    border-radius: 10px;
  }
  .faq-title {
    font-size: 1.1rem;
  }
  .faq-slide h3 {
    font-size: 1rem;
  }
  .faq-controls button {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* Animaciones suaves y transiciones globales */
button, .btn-catalogo, .suscribe-form button {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
button:hover, .btn-catalogo:hover, .suscribe-form button:hover {
  background: #223a5e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,68,101,0.13);
  transform: scale(1.05);
}
.banner-item img, .banner-carrusel img {
  transition: box-shadow 0.3s, transform 0.3s;
}
.banner-item img:hover, .banner-carrusel img:hover {
  box-shadow: 0 8px 32px rgba(21,68,101,0.18);
  transform: scale(1.02);
}
.categoria-item {
  transition: box-shadow 0.3s, transform 0.2s;
}
.categoria-item:hover {
  box-shadow: 0 8px 32px rgba(21,68,101,0.18);
  transform: scale(1.05);
}