/* Reset básico */





.nexa-font {
  font-family: 'Nexa Bold', sans-serif;
}

.blink-font {
  font-family: 'Blink Script', sans-serif !important;

}

.montserrat-font {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;

}

* {
  cursor: url('icons/cursor-2.png'), auto !important;


}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;

}

body {
  overflow-x: hidden;
}

:root {
  --black: #000000 !important;
}


/* Loader pantalla completa */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* GIF centrado que reemplaza el círculo */
.loader-gif {
  /* Tamaño del GIF - ajusta según necesites */
  width: 150px;
  /* Puedes usar px, %, vw, etc. */
  height: 150px;
  /* Mantén proporción si es importante */

  /* Para mantener relación de aspecto */
  object-fit: contain;

  /* Centrado */
  display: block;
  margin: 0 auto;

  /* Si tu GIF tiene transparencia, ajusta fondo */
  background-color: transparent;

  /* Elimina bordes si los tiene */
  border: none;
  outline: none;

  /* Optimización */
  image-rendering: auto;
}

/* Eliminamos la animación del círculo ya que usaremos GIF */
.loader-animation {
  display: none;
  /* O elimina completamente esta clase del CSS */
}

/* Si necesitas que el GIF sea responsive */
@media (max-width: 768px) {
  .loader-gif {
    width: 100px;
    height: 100px;
  }
}

/* GIF central sobre el video (inicialmente oculto) */
#img-started-in {
  position: absolute;
  bottom: 5px;
  top: 89vh;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  filter: blur(20px);
  /* empieza desenfocado */
  z-index: 5;
  /* debajo del gif, si quieres */


  transition: opacity 2s ease, transform 2s ease, filter 2s ease;
}

#central-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  filter: blur(20px);
  /* empieza desenfocado */
  z-index: 10;
  /* encima de la imagen */

  min-width: 350px;
  max-width: 450px;
  transition: opacity 2s ease, transform 2s ease, filter 2s ease;
}

.video-state {
  display: none !important;
}

.play-btn {
  display: none !important;
  /* oculto por defecto */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 10;
  transition: background 0.3s ease;
}

/* Video principal fullscreen */
.large-video {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.large-video video.main-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.large-video .slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
}

.large-video .centered-image {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  max-width: 100%;

}

/* Grid de videos secundarios */
.row {
  padding: 0 !important;
  margin: 0 !important;
}

.row div {
  margin: 0 !important;
  padding: 0 !important;
}


.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 530px;
}

.video-wrapper video.hover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Videos full-width sección */
.full-width.section-video .video-wrapper video.hover-video {
  max-height: 567px;
  /*filter: brightness(1.3) contrast(1.2);*/

}



.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-title {
  position: absolute;
  bottom: 18px;
  left: 10px;
  width: 43vw;
  max-width: 650px;
  min-width: 90px;
  height: auto;
  z-index: 5;
  pointer-events: none;
  opacity: 0.95;
}


/* Overlay patrón */
.slider-overlay {
  background: url(../assets/img/pattern.png) repeat rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}

/* Texto slider */
.slider-text {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
  padding-bottom: 15px;
}

.rail {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 3.2em;
  margin-bottom: 0;
}

.marquee {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}

.card-text-animation {
  padding: 0px 20px;

  border-radius: 10px;
  margin: 0 10px;
  white-space: nowrap;
  font-weight: bold;
  flex-shrink: 0;
}


.card-text-animation h4 {
  font-size: 60px;

  color: rgb(255, 255, 255);
}

.highlight {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsivo */
@media (max-width: 992px) {
  .card-text-animation h4 {
    font-size: 40px;
  }

  .large-video .centered-image {
    max-width: 98%;
    min-height: 120px;
    top: 59%;
  }
}

@media (max-width: 768px) {
  .videos-row {
    flex-direction: column;
  }

  .videos-row .video-wrapper {
    width: 100% !important;
    height: auto;
  }

  .videos-row video {
    height: auto;
  }

  .large-video .centered-image {
    max-width: 98%;
    min-height: 120px;
    margin-top: 59%;
  }
}

@media (max-width: 480px) {
  #img-started-in{
           display: none;
  }
  .card-text-animation h4 {
    font-size: 28px;
  }

  .large-video .centered-image {
    max-width: 98%;
    min-height: 120px;
  }
}

/* Background utilities */
.bg-black {
  background-color: var(--black);
}

.bg-transparent {
  background-color: transparent !important;
  background: transparent !important;
}

.bg-light {
  background-color: #ffffff !important;
}

/*CARROUSEL*/
.infinite-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #000000;
  padding: 2px 0;
}

.carousel-track {
  display: flex;
  width: max-content;
  cursor: grab;
}



.bg-img-top:hover,
.card:hover {

  cursor: pointer !important;
}

/*Cambiar tipo poscion img-fondo*/
.carousel-track .bg-img-top {
  background-position: top;
}

.carousel-track .bg-img-center {
  background-position: center;
}

.carousel-track .bg-img-bottom {
  background-position: bottom;
}

/* Responsivo */
@media (max-width: 768px) {
  .card {
    width: 231px;
    height: 644px;
    font-size: 1.2rem;
  }
}

.wrapper-container {
  position: relative;
  width: 100%;
}

.wrraper {
  position: sticky;
  bottom: 0;
  /* Se “pega” al fondo cuando llega */
  display: block;
  width: 100%;
  z-index: 10;
}



.testimonial {
  position: relative;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Estilo base imágenes */
.testimonial-image img {
  height: 45vh;
  border-radius: 20px;
  opacity: 0;
  transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estilo base texto */
.testimonial-text {
  max-width: 400px;
  opacity: 0;
  transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Animación para testimoniales de derecha --- */
.testimonial-right .testimonial-image img {
  transform: translateX(120px) scale(0.85);
}

.testimonial-right .testimonial-text {
  transform: translateX(-80%);
}

/* --- Animación para testimoniales de izquierda --- */
.testimonial-left {
  flex-direction: row-reverse;
  /* imagen a la izquierda */
}

.testimonial-left .testimonial-image img {
  transform: translateX(-120px) scale(0.85);
}

.testimonial-left .testimonial-text {
  transform: translateX(80%);
}

/* Estado "show" → animado */
.testimonial.show .testimonial-image img,
.testimonial.show .testimonial-text {
  opacity: 1;
  transform: translateX(0) scale(1);
}



.text-metamorpoho {
  display: flex;
  width: 100vw;
  height: 30vh;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #000000;
  color: #ffffff;
  font-size: 96px;
  font-family: 'Fira Mono', monospace;
  letter-spacing: -7px;
}

.text-metamorpoho #animation-text-electric {
  animation: glitch 1s linear infinite;
}

.sequel-font {
  font-family: "Sequel 100 Wide 95" !important;
}

@keyframes glitch {

  2%,
  64% {
    transform: translate(2px, 0) skew(0deg);
  }

  4%,
  60% {
    transform: translate(-2px, 0) skew(0deg);
  }

  62% {
    transform: translate(0, 0) skew(5deg);
  }
}

.text-metamorpoho #animation-text-electric:before,
.text-metamorpoho #animation-text-electric:after {
  content: attr(title);
  position: absolute;
  left: 0;
}

.text-metamorpoho #animation-text-electric:before {
  animation: glitchTop 1s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

@keyframes glitchTop {

  2%,
  64% {
    transform: translate(2px, -2px);
  }

  4%,
  60% {
    transform: translate(-2px, 2px);
  }

  62% {
    transform: translate(13px, -1px) skew(-13deg);
  }
}

.text-metamorpoho #animation-text-electric:after {
  animation: glitchBotom 1.5s linear infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitchBotom {

  2%,
  64% {
    transform: translate(-2px, 0);
  }

  4%,
  60% {
    transform: translate(-2px, 0);
  }

  62% {
    transform: translate(-22px, 5px) skew(21deg);
  }
}



/* NAVBAR MODERNA */
.navbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(0px);
  background: transparent;
  padding: 0.4rem 1rem;
  display: flex;
  justify-content: center;
  transition: all 0.35s ease;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: transform 0.3s ease;
}

.navbar .logo:hover {
  transform: scale(1.1) rotate(-2deg);
  color: #00ff9f;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;

}

.nav-links li a {
  color: #fff;
  text-decoration: none;

  position: relative;
  transition: color 0.3s;
}

.nav-links li a:hover {
  cursor: pointer !important;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #00ff9f;
  transition: width 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #00ff9f;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/*
.navbar.scrolled {

  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.55);
  padding: 1rem 1rem;
}
*/
/* Responsive */
@media(max-width:768px) {
  .cursor-circle {
    display: none !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 60%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.cursor-circle {
  position: fixed;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  box-shadow: 0 0 3px 3px #00a53a;
  /* resta parte para que parezca media luna */

  background: rgba(0, 200, 0, 0.0);
  pointer-events: none;
  z-index: 999999;
  will-change: transform;
  /* no transform aquí: lo fijamos desde JS */
}

/* Responsive CURSOR*/
@media(max-width:1400px) {
  .cursor-circle {
    display: none !important;
  }

  .nav-container {
    max-width: 1200px;
    /* límite solo en pantallas “normales” */
    margin: 0 auto;
    /* centra solo ahí */
  }
}


/* BOTÓN PLAY tipo Netflix en móviles/tablets */
.video-wrapper {
  position: relative;
}



.play-btn:hover {}

.play-btn:after {
  content: '';
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent;
  display: inline-block;
  margin-left: 5px;
}

/* Mostrar solo en móviles/tablets */
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }

  .play-btn {
    display: flex !important;
  }

  .video-wrapper video.hover-video {
    pointer-events: none;
  }

  /* evitar hover */
  .video-state {
    display: block !important;
  }
}


footer.footer {
  position: relative;
  width: auto;
  color: #000000;
  overflow: hidden;
  padding: 60px 20px 40px;
  font-family: 'Fira Mono', monospace;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at top left, rgba(255,255,255,0.03), transparent 70%); */
  background-color: transparent;
  pointer-events: none;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  /* max-width: 1200px;*/
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.footer-logo h2 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ff9f;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #00ff9f;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.footer-socials a img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a:hover img {
  transform: scale(1.2);
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(120deg) saturate(8);
}

.footer-copy {
  font-size: 0.9rem;
  color: #000000;
}

/* Animación de luces tipo cine */
#footerCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

footer .footer-title {
  margin-top: 3vh;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 8vh;
  font-family: "Sequel 100 Wide 95";

}

footer form,
footer form textarea,
footer form button {
  background-color: transparent !important;
  background: transparent !important;
  color: #88ff51 !important;
}

footer form button,
footer form select {
  border-color: #00a53a !important;
}

footer form button {
  outline: none !important;
  box-shadow: none;
  cursor: pointer !important;
}

footer form select:hover,
footer form button:hover {
  background-color: #00a53a52 !important;
  cursor: pointer !important;
}

.form-check-input:checked[type=checkbox] {
  background-image: url("icons/cursor-2.png") !important;
}


#accordionFlushExample button {
  cursor: pointer !important;
}

/* ELIMINAR ICONO DE FLECHA DE BOOTSTRAP */
#accordionFlushExample .accordion-button::after {
  display: none !important;
}

#accordionFlushExample .accordion-button {
  justify-content: center;
  text-align: center;
}

#accordionFlushExample .accordion-body {
  text-align: center;
}

#accordionFlushExample .accordion-body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

@media(max-width:480px) {

  /*PANTALLAS PEQUE*/
  footer .footer-title {
    font-size: 2em;
  }

  footer form {
    width: 70% !important;
  }

  /* GIF centrado que reemplaza el círculo */
  .loader-gif {
    /* Tamaño del GIF - ajusta según necesites */
    width: 170px;
    /* Puedes usar px, %, vw, etc. */
    height: 170px;
    /* Mantén proporción si es importante */

    /* Para mantener relación de aspecto */
    object-fit: contain;

    /* Centrado */
    display: block;
    margin: 0 auto;

    /* Si tu GIF tiene transparencia, ajusta fondo */
    background-color: transparent;

    /* Elimina bordes si los tiene */
    border: none;
    outline: none;

    /* Optimización */
    image-rendering: auto;
  }

  .first_rail {
    margin-top: 0.3em;
  }

  .rail {
    height: 2.3em;
  }

  #footerCanvas {
    height: 183% !important;
  }
 
   .swiper-slide img{
    width: 196px ;
    height: 55%  ;
  }
  .swiper-wrapper .card img{
    height: 62% !important;
  }
   .carrousel-footer .swiper-slide img{
    width: 154px;
  }
}

/* Responsive CURSOR*/
@media(min-width:768px) {

  /*PANTALLAS MED*/
  footer form {
    width: 75% !important;
  }

  .rail {
    height: 4em;
  }

  .nav-links {
    margin-right: 32px;
  }


  #accordionFlushExample .accordion-collapse {
    position: absolute;
    bottom: 100%;
    /* lo coloca hacia arriba */
    left: 0;
    width: 100%;
    z-index: 999;
  }

  #accordionFlushExample .accordion-body {
    background: white;
    /* para que tape lo de detrás */
    box-shadow: 0 -5px 10px rgba(0, 0, 0, .15);
    border-radius: 8px 8px 0 0;
  }

  #footerCanvas {
    height: 120% !important;
  }
  .swiper-slide img{
    width: 231px ;
    height: 644px ;
    font-size: 1.2rem;
  }
}

@media(min-width:1020px) {

  /*PANTALLAS GRANDES*/
  footer form {
    width: 50% !important;
  }

  .rail {
    height: 4.3em;

  }

  .rail .card-text-animation h4 {
    padding-bottom: 2em;

  }

  .second_rail {
    margin-bottom: 16px;
  }


  #accordionFlushExample .accordion-collapse {
    position: absolute;
    bottom: 100%;
    /* lo coloca hacia arriba */
    left: 0;
    width: 100%;
    z-index: 999;
  }

  #accordionFlushExample .accordion-body {
    background: white;
    /* para que tape lo de detrás */
    box-shadow: 0 -5px 10px rgba(0, 0, 0, .15);
    border-radius: 8px 8px 0 0;
  }

  #footerCanvas {
    height: 100%;
  }
}




/****************************************** style html *******************************************/
.content-section {
  background-color: #1a1a1a;
}

.logo-cliente {
  max-width: 240px;
  /* mismo ancho para todas */
  max-height: 180px;
  /* limita la altura */
  width: 100%;
  height: auto;
  object-fit: contain;
  /* mantiene proporción */
}

.carousel-item {
  min-height: 120px;
}

/* Sección full screen */
.full-screen-wrapper {
  position: relative;
  min-height: 100vh; /* Ocupa al menos una pantalla, pero crece con el contenido */
  background-color: transparent; /* Ajusta si necesitas color */
  /* Eliminamos height:100% y overflow:hidden */
}

.full-screen-section {
  width: 100%;
  height: 100%;
  /* ocupa toda la pantalla */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #015c0d;
  position: relative;
  /* RELATIVE para que los elementos hijos se posicionen sobre él */
}

#mainSection.fixed {
  z-index: 1; /* Por debajo del footer (que tiene z-index 2) */
}
footer {
  height: 100vh;
  background-color: #ffffff;
  color: #000000;
  padding: 40px 0px;
  text-align: center;
  position: relative;
  z-index: 2;
  border-radius: 50px 50px 0px 0px;
  border-radius: 50px 50px 0px 0px;
  box-shadow: 0px 0px 14px 3px green;
  /* encima de la sección */
}

footer a,
footer p {
  color: #000000;
}

.infinite-carousel {
  padding: 2vh 0;
}

.infinite-carousel {
  padding-top: 2% 0;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Asegura que el contenedor de cada logo tenga aire alrededor */


/* Controla que las imágenes no se desmadren de tamaño */


/* Espacio entre las dos filas de carrusel */
.swiper-container-right {
  margin-top: 30px;
}

/* Contenedor principal centrado al 75% */
.clientes-section {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  /* Evita scrolls horizontales indeseados */
}

/* Padding interno para que los logos respiren */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  
  border-radius: 15px;
  /* Tamaño uniforme para los logos */
}

/* Espacio entre las dos filas */
.swiper-container-right {
  margin-top: 20px;
}


.wrraper {
  margin-top: -69px !important;
}

#accordionFlushExample .accordion-item {
  position: relative;
}


.image-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.image-modal.show {
  display: flex;
}

.modal-content {
  max-width: max-content;
  max-height: 96%;
  border-radius: 12px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

@media(max-width:520px) {
  .video-title {
    bottom: 24px;
    left: 10px;
    width: 64vw;
  }


}

/* CARD DEL CARRUSEL DE GALERÍA */
/**
.card {
  flex: 0 0 auto;
  width: 524px;
  height: 768px;
  margin: 0 0.4rem;
  background-color: #b4b4b4;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
  user-select: none;
  background-repeat: no-repeat;
  background-size: cover;
    overflow: hidden;
    background: none; }
*/

.card {
  flex: 0 0 auto;
  width: 524px;
  height: 768px;
  margin: 0 0.1rem;
  border-radius: 15px;
  overflow: hidden;
  background-color: #000; /* Fondo negro por si acaso */
  position: relative; /* Para posicionar la claqueta */
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* La imagen llena toda la card (puede recortarse) */
  object-position: center;
  display: block;
}

/* Clases para posición (si las usas) */
.bg-img-top img {
    object-position: top;
}
.bg-img-center img {
    object-position: center;
}
.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Quita los estilos por defecto de Bootstrap en el acordeón activo */
.accordion-button:not(.collapsed),
.accordion-button:focus {
    
 
    box-shadow: none !important;          /* Sin sombra */
}