.cardplan {
  width: 100%;
  max-width: 350px;
  height: 180px;
  background-color: #00B2FF;
  color: white;
  border-radius: 20px;
  margin: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none; /* quita subrayado */
}

.cardplan:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  background-color: white;
  color: #00B2FF;
  border: 1px solid #00B2FF;
}

.cardplan h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cardplan p {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Responsive row */
.row.mb-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* LISTA DE PLNAES*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");



:root{
    --pinkish-red: #C35A74;
    --medium-blue: #307BAA;
    --greenish-blue: #53BAB5;
    --bright-orange: #FF7445;
    --white-smoke: #F5F5F4;
    --white: #FFF;
    --dark-gray: #7D7C7C;
    --black: #000;
}



.content{
    display: flex;
    justify-content:center;
    width: 100%;
    
}

.box{
    display: flex;
    flex-direction: column;
    width: 300px;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
    
    background: var(--white);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 20%);
}

.title{
    width: 100%;
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: lighter;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    color: var(--white-smoke);
}

.basic .title{
    background: var(--pinkish-red);
}

.standard .title{
    background: var(--medium-blue);
}

.business .title{
    background: var(--greenish-blue);
}

.view{
    display: block;
    width: 100%;
    padding: 30px 0 20px;

    background: var(--white-smoke);
}

.icon{
    display: flex;
    justify-content: center;
}

.icon img{
    width: 100px;
}

.cost{
    display: flex;
    justify-content:center;
    flex-direction: row;
    margin-top: 10px;
}

.amount{
    font-size: 2.8em;
    font-weight: bolder;
}

.detail{
    margin: auto 0 auto 5px;
    width: 70px;
    font-size: 0.7em;
    font-weight: bold;
    line-height: 15px;
    color: #7D7C7C;
}

.description{
    margin: 30px auto;
    font-size: 0.8em;
    color: #7D7C7C;
}

.sectionplan ul{
    list-style: none;
}

.sectionplan li{
    margin-top: 10px;
}

.sectionplan li::before{
    content: "";
    background-image: url("https://i.postimg.cc/ht7g996V/check.png");
    background-position: center;
    background-size: cover;
    opacity: 0.5;

    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
}

.plan-button {
    height: 40px;
    width: 250px;
    font-size: 0.7em;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.sectionplan .button {
    width: 100%;          /* que tome el ancho del .box */
    text-align: center;   /* centra horizontalmente el botón */
    margin: auto auto 30px;
}


.plan-button:hover {
    color: var(--white-smoke);
    background: var(--bright-orange);
    border: none;
}
.buttonplan {
    display: inline-block;
    box-sizing: border-box; /* asegura que respete padding y border */
    text-align: center;
    text-decoration: none;
    height: 40px;
    width: 250px;
    line-height: 40px; /* centra el texto verticalmente */
    font-size: 0.7em;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #7D7C7C;
    border: 2px solid var(--dark-gray);
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.buttonplan:hover {
    color: var(--white-smoke);
    background: #00B2FF;
    border: none;
}


/* Responsiveness:Start */
@media screen and (max-width:970px) {
    .content{
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 50px auto;
    }
    .standard, .business{
        margin-top: 25px;
    }
}
/* Responsiveness:End */
/* Responsiveness:End */
/*preguntas frecuentes*/


.containerfaq {
  margin: 0 auto;
  padding: 4rem;
}

.accordion {
  --bs-accordion-border-width: none;
}

.containerfaq .accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.containerfaq .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  height: 70px;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.containerfaq .accordion button:hover,
.containerfaq .accordion button:focus {
  cursor: pointer;
  color: #00B2FF;
}

.containerfaq .accordion button:hover::after,
.containerfaq .accordion button:focus::after {
  cursor: pointer;
  color: #00B2FF;
  border: 1px solid #00B2FF;
}

.containerfaq .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.containerfaq .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.containerfaq .accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.containerfaq .accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.containerfaq .accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.containerfaq .accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.containerfaq .accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.containerfaq .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.containerfaq .accordion .accordion-content p {
    padding-left: 20px;
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
/*fin preguntas frecuetnes*/
/*tabs*/
/* Contenedor de tabs: scroll horizontal */
#productTabs .nav-tabs {
  display: flex;
  flex-wrap: nowrap !important;   /* fuerza una sola fila */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-bottom: 2px solid #dee2e6;
  gap: .5rem;                     /* separación entre tabs */
}

/* Ocultar scrollbar en navegadores modernos */
#productTabs .nav-tabs::-webkit-scrollbar {
  display: none;
}

/* Cada tab */
#productTabs .nav-tabs .nav-item {
  flex: 0 0 auto;   /* cada tab ocupa su ancho natural */
}

#productTabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #495057;
  font-weight: 500;
  white-space: nowrap;  /* sin cortes de texto */
}

/* Tab activo */
#productTabs .nav-tabs .nav-link.active {
  color: #003174;
  border-color: #003174;
  background-color: transparent;
}
/* Contenedor relativo para que las flechas se posicionen */
#productTabs {
  position: relative;
}

/* Botones de scroll */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.scroll-btn.left {
  left: -18px;
}

.scroll-btn.right {
  right: -10px;
}

/* Ocultar scrollbar visualmente */
#productTabsNav::-webkit-scrollbar {
  display: none;
}
#productTabsNav {
  scrollbar-width: none; /* Firefox */
}

/* Mover más arriba */
.carousel-indicators {
  bottom: -40px; /* más abajo o arriba */
  justify-content: start; /* alinearlos a la izquierda */
}

/* Si querés centrarlos, mantené el default */
.carousel-indicators {
  justify-content: center;
}
.carousel-indicators [data-bs-target] {
  background-color: #ccc;   /* color de los inactivos */
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #003174; /* color del activo */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  filter: invert(28%) sepia(96%) saturate(2200%) hue-rotate(200deg) brightness(95%) contrast(95%);
  /* ↑ Esto transforma el ícono blanco en un color custom */
}

/* Ejemplo: si querés azul */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(25%) sepia(60%) saturate(600%) hue-rotate(180deg) brightness(90%) contrast(90%);
}

.card-body {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 17px 17px 0px rgba(0,0,0,0.2);
}
.card-body .btn-container {
  margin-top: auto; /* empuja el botón al final */
}
.carousel-item{
  margin-bottom: 30px;
}
#carouselCombosD .carousel-indicators [data-bs-target] {
  width: 40px;            /* ancho fijo */
  height: 20px;           /* alto fijo */
  background: #003174;    /* color de fondo */
  color: #fff;            /* color del texto */
  border-radius: 50%;     /* forma circular */
  margin: 0 5px;          /* separación entre círculos */
  text-indent: 0;         /* permite que se vea el número */
  font-weight: bold;      /* que resalte */
  display: flex;          /* centrado */
  align-items: center;
  justify-content: center;
}

#carouselCombosD .carousel-indicators .active {
  background: #0d6efd;   /* color distinto para el activo */
}
#carouselCombosI .carousel-indicators [data-bs-target] {
  width: 40px;            /* ancho fijo */
  height: 20px;           /* alto fijo */
  background: #003174;    /* color de fondo */
  color: #fff;            /* color del texto */
  border-radius: 50%;     /* forma circular */
  margin: 0 5px;          /* separación entre círculos */
  text-indent: 0;         /* permite que se vea el número */
  font-weight: bold;      /* que resalte */
  display: flex;          /* centrado */
  align-items: center;
  justify-content: center;
}

#carouselCombosI .carousel-indicators .active {
  background: #0d6efd;   /* color distinto para el activo */
}

