@charset "UTF-8";
/* Estilos base para botones */
.btn {
  display: inline-block;
  font-weight: 500;
  border-radius: 120px;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  line-height: 1.5;
  border: none;
  outline: none;
}
.btn:hover .svg {
  translate: 0.25rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .btn {
    padding: 0.625rem 1.25rem;
  }
}
/* Botón primario (relleno verde) */
.btn-primary {
  background-color: #1b263d;
  color: #f1f1f1;
}

.btn-primary:hover {
  background-color: #16a34a;
}

.btn-primary:focus {
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.3);
}

/* Botón secundario (contorno verde) */
.btn-secondary {
  background-color: #16a34a;
  color: #f1f1f1;
}

.btn-secondary:hover {
  background-color: #15803d;
  color: #f1f1f1;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.3);
}

/* Botón terciario (texto verde) */
.btn-tertiary {
  background-color: #f9fafb;
  color: #111827;
}

.btn-tertiary:hover {
  background-color: #16a34a;
  color: #f1f1f1;
}

.btn-tertiary:focus {
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.3);
}

/* Botón con borde blanco (para fondos oscuros) */
.btn-outline-white {
  background-color: transparent;
  color: #f1f1f1;
  border: 1px solid #f1f1f1;
}

.btn-outline-white:hover {
  background-color: #f1f1f1;
  color: #111827;
}

/* Botón con gradiente verde */
.btn-gradient-green {
  background-image: linear-gradient(to right, #22c55e, #16a34a, #15803d);
  color: #f1f1f1;
}

.btn-gradient-green:hover {
  background-image: linear-gradient(to bottom left, #22c55e, #16a34a, #15803d);
}

.btn-gradient-green:focus {
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.3);
}

/* Botón con gradiente verde a azul */
.btn-gradient-green-blue {
  background-image: linear-gradient(to right, #4ade80, #2563eb);
  color: #f1f1f1;
}

.btn-gradient-green-blue:hover {
  background-image: linear-gradient(to bottom left, #22c55e, #2563eb);
}

.btn-gradient-green-blue:focus {
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.3);
}

/* Tamaños de botones */
.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Botón con icono */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-iconn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* Botón con icono whatsapp */
.btn-icon-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.5rem;
  color: #f9fafb;
}

.btn-icon-whatsapp:hover svg {
  color: #16a34a;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.button-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  text-align: center;
}

.dark .button-demo {
  background-color: #273e65;
}

.button-demo p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.dark .button-demo p {
  color: #9ca3af;
}

#lets-talk-btn {
  display: none;
  position: fixed;
  bottom: 85px;
  right: 40px;
  gap: 0.25rem;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

#lets-talk-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  #lets-talk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 85px;
    right: 25px;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s;
    pointer-events: auto;
  }
  #lets-talk-btn svg {
    color: #f3f4f6;
  }
  #lets-talk-btn.hidden {
    opacity: 0;
    pointer-events: none;
  }
}
/* Componente Span Subrayado */
.span-underline {
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #4ade80;
}

/* Componente Span con Gradiente */
.span-gradient {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #4ade80, #16a34a);
}

.cont-ancho {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cont-ancho .div-ancho {
  background-color: #f3f4f6;
  border-radius: 2.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.02), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.cont-ancho-2 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #e5e7eb;
}
.cont-ancho-2 .div-ancho-2 {
  background-color: #111827;
  border-radius: 2.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.02), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.main-swiper {
  width: 100%;
  height: 560px;
  margin-bottom: -10px;
}
.main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.thumb-swiper {
  width: 100%;
  height: 120px;
}
.thumb-swiper .swiper-slide {
  width: 100%;
  height: 100px;
  opacity: 1;
  cursor: pointer;
}
.thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #4ade80;
}

@media (max-width: 1022px) {
  .main-swiper {
    width: 100%;
    height: 460px;
    margin-bottom: -10px;
  }
  .main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
}
.responsive-map {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}
.responsive-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  border-radius: 0.5rem;
}
@media (max-width: 1022px) {
  .responsive-map {
    height: 52vh;
  }
}

/* Navegación del carrusel */
.swipe-button-prev,
.swipe-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}

.swipe-button-prev:hover,
.swipe-button-next:hover {
  background: #1b263d;
  color: white;
}

.swipe-button-prev {
  left: 12px;
}

.swipe-button-next {
  right: 12px;
}

nav {
  background-color: #111827;
  color: #111827;
}
nav button,
nav a {
  color: #f9fafb;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: solid 1px transparent;
}
nav #mega-menu-dropdown,
nav #mega-menu-dropdown-1 {
  background-color: #1b263d;
  border: solid 1px #1b263d;
}
nav img {
  max-height: 40px;
}
@media (max-width: 768px) {
  nav img {
    max-height: 24px;
  }
}
@media (max-width: 346px) {
  nav img {
    max-height: 12px;
  }
}

.dropdownTextHover:hover {
  color: #16a34a;
}

.card-with-bg {
  position: relative;
  width: 100%;
  min-height: 20rem;
  /* altura mínima */
  height: auto;
  /* altura automática según contenido */
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-with-bg:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.dark .card-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.dark .card-content {
  color: #f3f4f6;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #f1f1f1;
}

.card-text {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.toggle-theme {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #111827;
  border: 1px solid #d1d5db;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.toggle-theme:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.dark .toggle-theme {
  background-color: #1b263d;
  color: #f1f1f1;
  border-color: #4b5563;
}

.component-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #1b263d;
}

.dark .component-title {
  color: #f1f1f1;
}

.sanford-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  max-width: 1200px;
}

.sanford-card {
  position: relative;
  width: 100%;
  max-height: 350px;
  /* altura mínima */
  height: auto;
  /* altura automática según contenido */
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: solid 1px transparent !important;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.02), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}
.sanford-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sanford-card-activo {
  color: #f9fafb !important;
  background-color: #1b263d;
}
.sanford-card-activo .sanford-card-text {
  color: #9ca3af;
}

.sanford-card:hover,
.sanford-card-activo:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: #1b263d;
  color: #f9fafb !important;
}
.sanford-card:hover .sanford-card-text,
.sanford-card-activo:hover .sanford-card-text {
  color: #d1d5db;
}
.sanford-card:hover .sanford-card-title,
.sanford-card-activo:hover .sanford-card-title {
  color: #f3f4f6;
}

.sanford-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.sanford-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #111827;
}

.sanford-card-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.sanford-card-container-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  max-width: 1200px;
}

.sanford-card-2 {
  position: relative;
  width: 100%;
  max-height: 350px;
  /* altura mínima */
  height: auto;
  /* altura automática según contenido */
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: solid 1px transparent !important;
  background-color: #1b263d;
  border-color: #1b263d;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.02), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}
.sanford-card-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sanford-card-activo-2 {
  color: #f9fafb !important;
  background-color: #1b263d;
}
.sanford-card-activo-2 .sanford-card-text-2 {
  color: #9ca3af;
}

.sanford-card-2:hover,
.sanford-card-activo-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: #f3f4f6;
  color: #111827 !important;
}
.sanford-card-2:hover .sanford-card-text-2,
.sanford-card-activo-2:hover .sanford-card-text-2 {
  color: #4b5563;
}
.sanford-card-2:hover .sanford-card-title-2,
.sanford-card-activo-2:hover .sanford-card-title-2 {
  color: #111827;
}

.sanford-card-content-2 {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.sanford-card-title-2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #f3f4f6;
}

.sanford-card-text-2 {
  font-size: 1rem;
  line-height: 1.5;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.container {
  max-width: 1200px;
  width: 100%;
}

/* Contenedor principal mejorado */
.card-ventana-container {
  position: relative;
}

/* Estilos mejorados para la card */
.card-ventana {
  width: 95%;
  height: 460px;
  position: relative;
  border-radius: 600px 600px 0 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}

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

.card-ventana-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 500px 500px 0 0;
  transition: transform 0.3s ease;
}

.card-ventana:hover .card-ventana-image {
  transform: scale(1.05);
}

/* Fondo translúcido que aparece en hover */
.card-ventana-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: opacity 0.3s ease;
  border-radius: 500px 500px 0 0;
  pointer-events: none;
}

.card-ventana:hover .card-ventana-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Contenido de la card */
.card-ventana-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  transition: all 0.5s ease;
  transform: translateY(50%);
}

.card-ventana:hover .card-ventana-content {
  transform: translateY(-10%);
  border-radius: 15px 15px 0 0;
}

.card-ventana-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f1f1f1;
}

.card-ventana-description {
  color: #d1d5db;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-ventana:hover .card-ventana-description {
  opacity: 1;
}

.card-ventana:hover .card-ventana-button {
  opacity: 1;
  transform: translateY(0);
}

/* Navegación del carrusel */
.card-ventana-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}

.card-ventana-nav:hover {
  background: #1b263d;
  color: white;
}

.card-ventana-nav-prev {
  left: 0;
}

.card-ventana-nav-next {
  right: 0;
}

/* Paginación */
.card-ventana-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.card-ventana-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card-ventana-pagination-bullet-active {
  background: white;
}

/* Ajustes para el swiper */
.swiper-wrapper {
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .card-ventana {
    height: 440px;
  }
  .card-ventana-nav {
    width: 40px;
    height: 40px;
  }
  .card-ventana-content {
    padding: 15px;
  }
  .card-ventana-title {
    font-size: 1.3rem;
  }
  .card-ventana-nav-prev {
    opacity: 0;
  }
  .card-ventana-nav-next {
    opacity: 0;
  }
}
@media (max-width: 576px) {
  .card-ventana {
    height: 420px;
  }
  .card-ventana-container {
    padding: 0 10px;
  }
  .card-ventana-nav-prev {
    opacity: 0;
  }
  .card-ventana-nav-next {
    opacity: 0;
  }
}
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: white;
}

html body #pagos {
  background-color: #1f1f1f;
  color: #f9fafb;
}
html body #pagos .cont-cont {
  overflow: hidden;
}
html body #pagos .cont-cont .card-pagos {
  min-width: 180px;
  border-radius: 8px;
  padding: 1rem;
  display: inline-block;
}
@media (max-width: 600px) {
  html body #pagos .cont-cont .card-pagos {
    min-width: 180px;
  }
}
html body #pagos .cont-cont .card-pagos:hover {
  cursor: pointer;
}
html body #pagos .cont-cont .card-pagos img {
  width: 48px;
}
html body #pagos .cont-cont .card-pagos p,
html body #pagos .cont-cont .card-pagos h6 {
  margin: 0px !important;
}
html body #pagos .cont-cont .card-pagos .text-pagos {
  color: #1b263d;
}
html body #pagos .cont-cont .card-pagos .bi-star-fill {
  color: #fbbc04;
}
html body #pagos .cont-cont .card-pagos .google {
  width: 24px;
}
html body #pagos .cont-cont .card-pagos a {
  text-decoration: none;
  color: #1b263d;
}
html body #pagos .cont-cont .card-pagos a:hover {
  -webkit-text-decoration: underline #4b5563;
          text-decoration: underline #4b5563;
}
html body #pagos .scroller[data-animated=true] {
  overflow: hidden;
}
html body #pagos .scroller[data-animated=true] .scroller__inner {
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}
html body #pagos .scroller[data-direction=right] {
  --_animation-direction: reverse;
}
html body #pagos .scroller[data-direction=left] {
  --_animation-direction: forwards;
}
html body #pagos .scroller[data-speed=fast] {
  --_animation-duration: 20s;
}
html body #pagos .scroller[data-speed=slow] {
  --_animation-duration: 80s;
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
html body #pagos .scroller:hover .scroller__inner {
  animation-play-state: paused;
}

#testimonios {
  overflow: hidden;
  position: relative;
}
#testimonios .testimonios-swiper-container {
  width: 100%;
  padding: 2rem 0;
  position: relative;
}
#testimonios .testimonios-swiper {
  width: 100%;
  padding-bottom: 3rem;
}
#testimonios .swiper-slide {
  height: auto;
  display: flex;
}

#testimonios {
  overflow: hidden;
  position: relative;
}
#testimonios .cont-cont.scroller {
  display: none !important;
}
#testimonios .testimonios-swiper-container {
  width: 100%;
  max-width: 100%;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
#testimonios .testimonios-swiper {
  width: 100%;
  padding-bottom: 3.5rem;
  overflow: visible;
}
#testimonios .testimonios-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
#testimonios .swiper-slide {
  height: auto;
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

#testimonios {
  overflow: hidden;
  position: relative;
}
#testimonios .cont-cont.scroller {
  display: none !important;
}
#testimonios .testimonios-swiper-container {
  width: 100%;
  max-width: 100%;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
#testimonios .testimonios-swiper {
  width: 100%;
  padding-bottom: 3.5rem;
  overflow: visible;
}
#testimonios .testimonios-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
#testimonios .swiper-slide {
  height: auto;
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
#testimonios .swiper-slide .card-testimonios {
  width: 100%;
}

#testimonios {
  overflow: hidden;
  position: relative;
}
#testimonios .cont-cont.scroller {
  display: none !important;
}
#testimonios .testimonios-swiper-container {
  width: 100%;
  max-width: 100%;
  padding: 1.5rem 0;
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  #testimonios .testimonios-swiper-container {
    padding: 1rem 0;
    overflow: visible;
  }
}
#testimonios .testimonios-swiper {
  width: 100%;
  padding-bottom: 3rem;
  overflow: visible;
}
#testimonios .testimonios-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
#testimonios .swiper-slide {
  height: auto;
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
#testimonios .swiper-slide .card-testimonios {
  width: 100%;
}

.card-testimonios {
  background: #1b263d;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-testimonios::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.6s ease;
}
.card-testimonios:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(34, 197, 94, 0.3);
  color: #111827;
  color: #273e65;
}
.card-testimonios:hover::before {
  left: 100%;
}
.card-testimonios:hover img:not(.google) {
  transform: scale(1.05);
}
.card-testimonios .flex.items-center.justify-between {
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 {
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.75rem;
}
.card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #4ade80;
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.25);
  transition: all 0.3s ease;
}
.card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 div {
  width: 100%;
}
.card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 div a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 div a h6 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 0;
  transition: color 0.3s ease;
  line-height: 1.2;
}
.card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 div a h6:hover {
  color: #22c55e;
}
.card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 div a p {
  font-size: 0.8125rem;
  color: #d1d5db;
  line-height: 1.3;
  margin: 0;
}
.card-testimonios .flex.items-center.justify-between img.google {
  display: none;
}
.card-testimonios .mt-3.mb-2 {
  display: flex;
  gap: 0.2rem;
  margin: 0.75rem 0;
  justify-content: center;
}
.card-testimonios .mt-3.mb-2 i.bi-star-fill {
  color: #fbbf24;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}
.card-testimonios .mt-3.mb-2 i.bi-star-fill:hover {
  transform: scale(1.15) rotate(10deg);
}
.card-testimonios .text-testimonios {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #9ca3af;
  position: relative;
  padding: 0 0.75rem;
  flex-grow: 1;
  text-align: center;
  margin-bottom: 1.25rem;
}
.card-testimonios .text-testimonios::before {
  content: '"';
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: #4ade80;
  font-family: Georgia, serif;
  margin-bottom: 0.35rem;
}
.card-testimonios::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../../assets/icons/buscar.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: all 0.3s ease;
  margin-top: auto;
}
.card-testimonios:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

.swiper-pagination {
  bottom: 0 !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #22c55e;
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .card-testimonios {
    padding: 1.5rem 1.25rem 2rem;
    min-height: 350px;
  }
  .card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 {
    gap: 0.65rem;
    margin-bottom: 0.65rem;
  }
  .card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 img {
    width: 64px;
    height: 64px;
  }
  .card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 div a {
    gap: 0.3rem;
  }
  .card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 div a h6 {
    font-size: 1rem;
  }
  .card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 div a p {
    font-size: 0.75rem;
  }
  .card-testimonios .mt-3.mb-2 {
    margin: 0.65rem 0;
  }
  .card-testimonios .mt-3.mb-2 i.bi-star-fill {
    font-size: 1rem;
  }
  .card-testimonios .text-testimonios {
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
  }
  .card-testimonios .text-testimonios::before {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
  }
  .card-testimonios::after {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 640px) {
  #testimonios .testimonios-swiper-container {
    padding: 1rem 0;
  }
  .card-testimonios {
    padding: 1.5rem 1rem 1.75rem;
    border-radius: 1rem;
    min-height: 340px;
  }
  .card-testimonios .flex.items-center.justify-between .flex.items-center.gap-3 img {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }
  .card-testimonios .text-testimonios {
    font-size: 0.8125rem;
  }
  .card-testimonios .text-testimonios::before {
    font-size: 2rem;
  }
  .card-testimonios::after {
    width: 26px;
    height: 26px;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.card-testimonios:hover img.google {
  animation: float 2s ease-in-out infinite;
}

.highlight-tabs-container {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

.highlight-tabs-header {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.highlight-tabs-header::-webkit-scrollbar {
  display: none;
}

.highlight-tab {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  cursor: pointer;
  color: #1b263d;
  font-weight: 500;
  border-radius: 120px;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}

.highlight-tab.active {
  background-color: #1b263d;
  color: #f1f1f1;
}

.highlight-tab:hover {
  background-color: #111827;
  color: #f1f1f1;
}

.highlight-tabs-content {
  padding: 2rem;
}

.highlight-tab-pane {
  display: none;
}

.highlight-tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.highlight-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
}

.dark .highlight-list li {
  border-bottom-color: #273e65;
}

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

.highlight-icon {
  margin-right: 1rem;
  color: #16a34a;
  flex-shrink: 0;
}

.dark .highlight-icon {
  color: #4ade80;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.component-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #1b263d;
}

.dark .component-title {
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .highlight-tabs-header {
    padding: 0rem;
  }
  .highlight-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .highlight-tabs-content {
    padding: 1.5rem 0.75rem 0.25rem 1.5rem;
  }
}
footer {
  background-color: #111827;
  color: #9ca3af;
}
footer h2 {
  color: #e5e7eb;
  font-weight: bold;
}
footer .text-gray-800 {
  color: #9ca3af;
}

@media (min-width: 1024px) {
  .direccion-ads {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .direccion-footer {
    display: flex;
    flex-direction: column-reverse;
  }
  .direccion-ads {
    margin-top: 2rem;
  }
}
@media (min-width: 500px) and (max-width: 1023px) {
  .direccion-footer {
    display: flex;
    flex-direction: column-reverse;
  }
  .direccion-ads {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.rayito {
  display: flex;
  align-items: center;
  color: #9ca3af;
}
.rayito img {
  width: 60px;
}

.rayito:hover {
  color: #ffda00;
}

.logo-footer {
  width: 250px;
}

.parallax-contact {
  position: relative;
  height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Fondo parallax dentro del contenedor */
.parallax-general {
  position: absolute;
  top: -148px;
  left: 0;
  width: 100%;
  height: 120%;
  /* suficiente para cubrir el movimiento */
  background-image: url("../../assets/img/photo-3.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 1;
  transition: transform 0.1s ease-out;
  /* suaviza cambios rápidos */
}

/* Capa overlay para oscurecer */
.overlay-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 72, 48, 0.8);
  z-index: 2;
}

/* Contenido centrado y con z-index superior */
.contact-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
}

/* Estilos para la paginación */
#pagination button {
  background-color: transparent;
  color: #1b263d;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 2px;
  border-radius: 200px;
}

#pagination button.activo {
  background-color: #16a34a;
  /* verde */
  color: white;
}

#pagination button:hover:not(:disabled) {
  background-color: #166534;
  /* verde oscuro */
  color: white;
}

#pagination button:disabled {
  cursor: default;
  opacity: 0.5;
}

#pagination button.next {
  border-radius: 120px;
}

#pagination button.prev {
  border-radius: 120px;
}

/* Estilos para la galería */
/* Estilos personalizados para la galería */
#gallery .gallery-item div {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery .gallery-item div:hover {
  transform: translateY(-5px);
}

/* Estilos para el modal responsivo */
.modal-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-image {
  max-width: 90vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Animaciones para el modal */
.modal-fade-in {
  animation: fadeIn 0.3s ease-out;
}

.modal-fade-out {
  animation: fadeOut 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.rounded-galeria {
  border-radius: 16px;
}

.btn-cerrar {
  position: absolute;
  top: 1.5%;
  /* 1.5% desde arriba */
  right: 1.5%;
  /* 1.5% desde la derecha */
  z-index: 20;
}

.p-galeria {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
}

#image-counter {
  margin-top: 5px;
  margin-left: 10px;
}

body {
  padding: 0;
  margin: 0;
  background-color: #f9fafb;
  color: #111827;
}

.video-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  z-index: 0;
}

.video-background video,
.video-background img.fallback-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 85vh;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.content {
  position: relative;
  top: 2rem;
  left: 0;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 2;
}
@media (max-width: 1024px) {
  .content {
    top: 2rem;
  }
}

.otro-icono {
  width: 140px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .otro-icono {
    width: 80px;
  }
}

.espacio-secciones {
  margin-top: 12.5rem;
  margin-bottom: 12.5rem;
}

.espacio-secciones-arriba {
  margin-top: 12.5rem;
}

.espacio-secciones-arriba-2 {
  margin-top: 6rem;
}

.espacio-secciones-abajo {
  margin-bottom: 12.5rem;
}

@media (max-width: 768px) {
  .espacio-secciones {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .espacio-secciones {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
}
/* Animación para el spinner de carga */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Estilos para los toasts */
#toast-simple,
#toast-error {
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#toast-simple {
  border-left: 4px solid #22c55e;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

#toast-error {
  border-left: 4px solid #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
}

/* Mejora visual del formulario */
.form-input:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15);
}

/* Estilo para el botón de envío */
.submit-btn {
  transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.submit-btn:disabled {
  cursor: not-allowed;
}

.aparecer-desde-abajo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.aparecer-desde-abajo.visible {
  opacity: 1;
  transform: translateY(0);
}

.activar-nav {
  color: #16a34a !important;
}

.sello {
  width: 24rem;
  margin-left: -18px;
}
.sello .mt-3.mb-2 {
  display: flex;
  gap: 0.2rem;
  margin: 0;
  padding-left: 4.5rem;
}
.sello .mt-3.mb-2 i.bi-star-fill {
  color: #fbbf24;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}
.sello .mt-3.mb-2 i.bi-star-fill:hover {
  transform: scale(1.15) rotate(10deg);
}
.sello :hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .sello {
    width: 18rem;
  }
  .sello .mt-3.mb-2 {
    padding-left: 4rem;
  }
}/*# sourceMappingURL=main.css.map */