html {
  font-family: 'Montserrat', sans-serif !important;
}

:root {
  --color-primary: #6c002c;
}

.accordion {
  --bs-accordion-btn-color: #fff;
  --bs-accordion-btn-bg: var(--color-primary);
  --bs-accordion-btn-focus-border-color: #fff;
  --bs-accordion-btn-focus-box-shadow: #fff;
  --bs-accordion-active-color: #fff;
  --bs-accordion-active-bg: var(--color-primary);
  --bs-accordion-border-color: transparent;

  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #48001e;
  --bs-btn-hover-border-color: #48001e;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #48001e;
  --bs-btn-active-border-color: #48001e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--color-primary);
  --bs-btn-disabled-border-color: var(--color-primary);
}

/* HEADER */
.logo {
  width: 14rem;
  background-image: url('../../img/fondo-red-new.png');
  background-size: cover;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem;
}

.logo p {
  margin: 0;
}

.logo__subtitle {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.logo__operator {
  color: var(--color-primary);
  font-size: .8rem;
}

.logo__operator-name {
  font-size: 1.2rem;
}

/* Botón hamburguesa */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  display: none;
}

.navbar-toggler-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  position: absolute;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* Animación del botón hamburguesa cuando está activo */
.navbar-toggler.active .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Responsividad del header en mobile */
@media (max-width: 767px) {
  .logo {
    width: 10rem;
    padding: 0.3rem;
  }

  .logo__subtitle {
    font-size: 1.2rem;
  }

  .logo__operator {
    font-size: 0.65rem;
  }

  .logo__operator-name {
    font-size: 0.65rem;
  }

  header {
    padding: 0.5rem 1rem !important;
    margin-bottom: 1rem !important;
    position: relative;
    justify-content: space-between !important;
  }

  .navbar-toggler {
    display: block;
  }

  /* Ocultar el menú por defecto en mobile */
  .header-nav-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem;
    flex-direction: column;
    width: 100%;
  }

  /* Mostrar el menú cuando está activo */
  .header-nav-wrapper.show {
    display: flex;
  }

  .header-nav-wrapper .nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-bottom: 1rem;
  }

  .header-nav-wrapper .nav-link {
    padding: 0.75rem 1rem !important;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem !important;
  }

  .header-nav-wrapper .nav-link:hover {
    background-color: #f8f9fa;
  }

  .header-cta-container {
    text-align: center !important;
    width: 100%;
  }

  .header-cta-container .btn {
    font-size: 0.9rem;
    padding: 0.6rem 2rem !important;
    width: 100%;
    max-width: 300px;
  }
}

/* Desktop: mostrar el menú normalmente */
@media (min-width: 768px) {
  header {
    display: flex;
    align-items: center;
  }

  .header-logo-container {
    flex: 0 0 auto;
  }

  .header-nav-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 2rem;
  }

  .header-nav-wrapper .nav {
    margin-bottom: 0;
    flex: 1;
    justify-content: center;
  }

  .header-cta-container {
    flex: 0 0 auto;
  }
}

/* BANNER */
.hero-image {
  background-image: url("../../img/banner.png");

  height: 10rem;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner__advertising {
  border: .13rem solid #dfa2bb;
  border-left: 0;
  border-right: 0;
}

/* PORTABILITY */
.portability h2 {
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* Components */

/* Hero */

.hero {
  /* background-color: var(--color-primary); */
  background-image: url('../../img/fondo-red-new.png');
  background-size: cover;
  padding: 5.2rem 2rem;
  text-transform: uppercase;
}

/* PILL */
.pill {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pill__info {
  text-transform: uppercase;
  border: 2px solid #a90045;
  text-align: center;
  border-radius: 1.8rem;
  background-color: #fff;
  padding: 1rem;
  -webkit-box-shadow: 2px 7px 5px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 7px 5px -6px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 7px 5px -6px rgba(0, 0, 0, 0.75);
}

/* CONSULTER */
.pill__info h3,
.consulter__info h3 {
  color: var(--color-primary);
  font-size: 1rem;
}

.pill__info span,
.consulter__info span {
  color: #a90045;
  font-size: .9rem;
}

.consulter__button,
.consulter__input {
  background-color: #fff;
  border: 2px solid #a90045;
  font-weight: bold;
  -webkit-box-shadow: 2px 7px 5px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 7px 5px -6px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 7px 5px -6px rgba(0, 0, 0, 0.75);
}

.consulter__input {
  width: 100%;
}

.consulter__button,
.consulter__input {
  font-size: .8rem;
  padding: .6rem .8rem;
  padding-right: 4rem;
}

.consulter__input {
  padding-right: .8rem;
}


.consulter__button>a {
  color: var(--color-primary);
}


.consulter__check {
  position: relative;
  display: inline-block;
}

.consulter__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  transform: rotate(-50deg);
  position: absolute;
  right: 0;

  font-size: 1.2rem;
  width: 50px;
  height: 50px;
}

.qr img {
  width: 200px;
  border: .35rem solid #9c2348;
  margin-top: 2rem;
}

.card-store .card-header {
  background-color: var(--color-primary);
  height: 8rem;
}

/* Estilos para el carrusel de tarjetas corporativas */
.corporativo-carousel-container {
  position: relative;
  padding: 2rem 4rem;
  width: 100%;
}

.corporativo-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.corporativo-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
}

.corporativo-card-item {
  flex: 0 0 auto;
  min-width: 280px;
  max-width: 320px;
}

/* Controles del carrusel */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.carousel-control:hover {
  background-color: #a90045;
}

.carousel-control:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

@media (min-width: 768px) {
  .corporativo-carousel-container {
    padding: 2rem 5rem;
  }

  .corporativo-card-item {
    min-width: 320px;
    max-width: 380px;
  }
}

@media (max-width: 767px) {
  .corporativo-carousel-container {
    padding: 2rem 3.5rem;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

.card-recarge__container {
  position: relative;
}

.card-recarge__container .rounded-circle {
  position: absolute;
  z-index: 10;
  left: -10px;
  top: -10px;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  width: 35px;
  height: 35px;
}

.card-recharge {
  border: 1px solid var(--color-primary);
}

.card-recharge,
.card-recharge i {
  color: var(--color-primary);
}

.sub-footer {
  /* background-color: var(--color-primary); */
  background-image: url('../../img/fondo-red-new.png');
  background-size: cover;
}

.main-footer__contact {
  background-color: #667673;
}

.main-footer__contact h5 {
  color: #10312b;
}

/* Responsividad del footer en mobile */
@media (max-width: 767px) {
  footer {
    padding-top: 2rem !important;
  }

  footer .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  footer .logo {
    width: 9rem;
  }

  footer .main-footer__contact {
    padding: 1.5rem 1rem !important;
  }

  footer .main-footer__contact h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  footer .main-footer__contact .contact__information {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  footer .footer__links h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  footer .footer__links ul {
    font-size: 0.8rem !important;
  }

  footer .footer__links .nav-item {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  footer .sub-footer {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  footer .sub-footer p {
    font-size: 0.75rem;
    margin-bottom: 0;
  }
}

.portability-section {
  border: 1px solid var(--color-primary);
  margin-right: 1rem;
  margin-left: 1rem;
}

.card-portability__text {
  font-size: 1rem;
}

.portability__title {
  font-size: 1.1rem;
}

.portability__span {
  font-size: 1rem;
}

.card-portability {
  background-color: var(--color-primary);
  min-height: 265px;
}

.card-portability-secondary {
  background-color: #a90045;
}

.portability__footer {
  font-size: .9rem;
}

.get-app__container img {
  width: 150px;
}

#map {
  height: 500px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  #map {
    height: 400px;
  }
}

/* Formulario de Validación de Cobertura */
.coverage-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.coverage-form-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(156, 35, 72, 0.1);
}

.coverage-form-title {
  color: #9c2348;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.coverage-form {
  margin-top: 1.5rem;
}

.coverage-input-group {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.coverage-input-icon {
  background: linear-gradient(135deg, #9c2348 0%, #a90045 100%);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
}

.coverage-input {
  border: 2px solid #e9ecef;
  border-left: none;
  border-right: none;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.coverage-input:focus {
  border-color: #9c2348;
  box-shadow: none;
  outline: none;
}

.btn-coverage-search {
  background: linear-gradient(135deg, #9c2348 0%, #a90045 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-coverage-search:hover {
  background: linear-gradient(135deg, #a90045 0%, #9c2348 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(156, 35, 72, 0.3);
  color: white;
}

.btn-coverage-search:active {
  transform: translateY(0);
}

.coverage-form-help {
  margin-top: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
  text-align: center;
}

/* Resultado de búsqueda */
.coverage-result {
  border-radius: 0.75rem;
  padding: 1.25rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coverage-result-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
}

.coverage-result-error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border: 2px solid #dc3545;
}

.coverage-result-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.coverage-result-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.coverage-result-success .coverage-result-icon {
  color: #28a745;
}

.coverage-result-error .coverage-result-icon {
  color: #dc3545;
}

.coverage-result-text {
  flex: 1;
}

.coverage-result-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.coverage-result-success .coverage-result-title {
  color: #155724;
}

.coverage-result-error .coverage-result-title {
  color: #721c24;
}

.coverage-result-details {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.coverage-result-success .coverage-result-details {
  color: #155724;
}

.coverage-result-error .coverage-result-details {
  color: #721c24;
}

/* Marcadores personalizados del mapa */
.custom-marker {
  background: transparent !important;
  border: none !important;
}

/* Responsive */
@media (max-width: 767px) {
  .coverage-form-card {
    padding: 1.5rem;
  }
  
  .coverage-form-title {
    font-size: 1.3rem;
  }
  
  .coverage-input-group {
    flex-direction: column;
  }
  
  .coverage-input {
    border-left: 2px solid #e9ecef;
    border-right: 2px solid #e9ecef;
    border-top: none;
  }
  
  .btn-coverage-search {
    width: 100%;
    border-radius: 0 0 0.75rem 0.75rem;
  }
  
  .coverage-result-content {
    flex-direction: column;
    text-align: center;
  }
  
  .coverage-result-icon {
    margin: 0 auto;
  }
}

.accordion-button,
.accordion-body {
  font-size: .8rem;
}

.footer__links {
  text-align: center;
}

.main-footer__contact .contact__information {
  font-size: .8rem;
  color: #10312b;
}

.card-product__title {
  color: var(--color-primary);
  font-size: 2rem;
  text-align: center;
}

.card-product__title strong {
  color: #a90045;
  font-size: 2.8rem;
}

.card-product .btn {
  background-color: #a90045;
}

.product-body__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;

  font-size: 1.2rem;
  width: fit-content;
  padding: 0 3.5rem;
}

.circle-primary {
  margin: 0 auto;

  border: 1.5px solid #000;
  border-radius: 100%;

  width: 200px;
  height: 200px;
}

.circle-price {
  color: #a90045;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: .2rem;
}

.product-body__relative {
  position: relative;
  width: fit-content;
}

.product-body__header {
  position: absolute;
  right: -50px;
}

/* RESPONSIVE */

@media (min-width: 576px) {

  .footer__links {
    text-align: left;
  }

  .hero-image {
    height: 12rem;
  }

  .portability h2 {
    font-size: 2rem;
  }

  .pill__info span,
  .consulter__info span {
    font-size: 1.4rem;
  }

  .pill__info {
    padding: 1.5rem 4rem;
  }

  .get-app__container img {
    width: 200px;
  }

  .portability-section {
    margin-right: 3rem;
    margin-left: 3rem;
  }

  .portability__title {
    font-size: 1.2rem;
  }

  .portability__span {
    font-size: 1.1rem;
  }

  .consulter__button-lg {
    width: 250px;
    padding: 1rem;
  }

}

@media (min-width: 768px) {
  .hero-image {
    height: 15rem;
  }

  .card-portability__text {
    font-size: .85rem;
  }

  .portability__footer {
    font-size: 1rem;
  }

  #map {
    height: 400px;
  }

  .accordion-button,
  .accordion-body {
    font-size: 1rem;
  }

}

@media (min-width: 992px) {

  .qr img {
    margin-top: 0rem;
    width: 340px;
  }

  .portability h2 {
    font-size: 2.4rem;
  }

  .hero-image {
    height: 20rem;
  }

  .pill__info h3,
  .consulter__info h3 {
    font-size: 2rem;
  }

  .pill__info {
    padding: 1.5rem 4rem;
  }

  .consulter__info span {
    font-size: 2rem;

  }

  .consulter__icon {
    font-size: 2.2rem;
    width: 85px;
    height: 85px;
  }

  .consulter__button,
  .consulter__input {
    font-size: 1.3rem;
    padding: 1rem;
    padding-right: 6rem;
  }

  .consulter__input {
    padding-right: 1rem;
  }

  .get-app__container img {
    width: 250px;
  }

  .card-portability__text {
    font-size: 1rem;
  }

  .portability__title {
    font-size: 1.8rem;
  }

  .portability__span {
    font-size: 1.5rem;
  }

  .portability__footer {
    font-size: 1.4rem;
  }

  .consulter__button-lg {
    width: 400px;
    padding: 1rem;
  }

  #map {
    height: 500px;
  }

  .main-footer__contact .contact__information {
    font-size: .9rem;
  }

}

/* Modal de Puntos de Recarga - Diseño Moderno UI/UX */
#rechargePointsModal .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.recharge-modal-content {
  border-radius: 1.5rem;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.recharge-modal-header {
  background: linear-gradient(135deg, #9c2348 0%, #a90045 100%);
  padding: 2.5rem 2.5rem 2rem;
  border: none;
  color: white;
}

.recharge-modal-title {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.recharge-modal-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.recharge-modal-body {
  padding: 2.5rem;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.recharge-channel-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(156, 35, 72, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.recharge-channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #9c2348 0%, #a90045 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recharge-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(156, 35, 72, 0.15);
  border-color: rgba(156, 35, 72, 0.2);
}

.recharge-channel-card:hover::before {
  opacity: 1;
}

.recharge-channel-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.recharge-number {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9c2348 0%, #a90045 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(156, 35, 72, 0.3);
}

.recharge-channel-info {
  flex: 1;
}

.recharge-channel-title {
  color: #9c2348;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.recharge-channel-description {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.recharge-channel-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn-recharge-primary {
  background: linear-gradient(135deg, #9c2348 0%, #a90045 100%);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(156, 35, 72, 0.3);
  display: inline-flex;
  align-items: center;
}

.btn-recharge-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156, 35, 72, 0.4);
  background: linear-gradient(135deg, #a90045 0%, #9c2348 100%);
  color: white;
}

.btn-recharge-primary:active {
  transform: translateY(0);
}

.btn-recharge-link {
  color: #9c2348;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.btn-recharge-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #9c2348;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.btn-recharge-link:hover {
  color: #a90045;
  background: rgba(156, 35, 72, 0.05);
}

.btn-recharge-link:hover::after {
  width: 80%;
}

.recharge-providers-grid,
.recharge-stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.provider-logo-card,
.store-logo-card {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 100px;
}

.provider-logo-card:hover,
.store-logo-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: white;
  border-color: rgba(156, 35, 72, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.provider-logo-img,
.store-logo-img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.provider-logo-card:hover .provider-logo-img,
.store-logo-card:hover .store-logo-img {
  filter: grayscale(0%);
}

.recharge-modal-footer {
  padding: 1.5rem 2.5rem;
  border: none;
  background: #f8f9fa;
  display: flex;
  justify-content: flex-end;
}

.btn-recharge-secondary {
  background: #6c757d;
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-recharge-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Animaciones de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recharge-channel-card {
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}

.recharge-channel-card:nth-child(1) { animation-delay: 0.1s; }
.recharge-channel-card:nth-child(2) { animation-delay: 0.2s; }
.recharge-channel-card:nth-child(3) { animation-delay: 0.3s; }
.recharge-channel-card:nth-child(4) { animation-delay: 0.4s; }
.recharge-channel-card:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 991px) {
  .recharge-modal-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .recharge-modal-title {
    font-size: 1.8rem;
  }
  
  .recharge-modal-subtitle {
    font-size: 1rem;
  }
  
  .recharge-modal-body {
    padding: 1.5rem;
  }
  
  .recharge-channel-card {
    padding: 1.5rem;
  }
  
  .recharge-channel-header {
    gap: 1rem;
  }
  
  .recharge-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .recharge-channel-title {
    font-size: 1.2rem;
  }
  
  .recharge-providers-grid,
  .recharge-stores-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
  
  .provider-logo-card,
  .store-logo-card {
    padding: 1rem;
    min-height: 80px;
  }
  
  .provider-logo-img,
  .store-logo-img {
    max-height: 50px;
  }
}

@media (max-width: 767px) {
  .recharge-modal-content {
    margin: 1rem;
  }
  
  .recharge-modal-header {
    padding: 1.5rem 1rem 1rem;
  }
  
  .recharge-modal-title {
    font-size: 1.5rem;
  }
  
  .recharge-modal-subtitle {
    font-size: 0.9rem;
  }
  
  .recharge-modal-body {
    padding: 1rem;
  }
  
  .recharge-channel-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .recharge-channel-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .recharge-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .recharge-channel-title {
    font-size: 1.1rem;
  }
  
  .recharge-channel-description {
    font-size: 0.85rem;
  }
  
  .recharge-channel-action {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .btn-recharge-primary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-recharge-link {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  
  .recharge-providers-grid,
  .recharge-stores-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
  }
  
  .provider-logo-card,
  .store-logo-card {
    padding: 0.75rem;
    min-height: 70px;
  }
  
  .provider-logo-img,
  .store-logo-img {
    max-height: 40px;
  }
  
  .recharge-modal-footer {
    padding: 1rem;
  }
  
  .btn-recharge-secondary {
    width: 100%;
    justify-content: center;
  }
}