/**************************************************************
  1) SECCIÓN: PLANES
**************************************************************/
.plans-section {
  background-color: #FFFFFF;
  padding: 2rem 1rem;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.plans-intro {
  margin-bottom: 2rem;
}

.plans-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3333; /* Texto principal */
  margin-bottom: 0.5rem;
}

.plans-subtitle {
  font-size: 1rem;
  color: #5A5F63; /* Gris medio */
}

/* Grid de los planes */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Tarjeta individual de cada plan */
.plan-card {
  background-color: #FFFFFF;
  border: 0px solid #FC3A46; 
  border-radius: 10px;
  padding: 2rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #FC3A46; 
}

/* Nombre y precio de cada plan */
.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3333;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.2rem;
  color: #FC3A46; /* Rojo vibrante */
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Lista de características */
.plan-features {
  list-style: none;
  margin-bottom: 1rem;
  color: #5A5F63;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.plan-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.25rem;
}

/* Icono "check" delante de cada característica */
.plan-features li::before {
  content: '✔';
  color: #FC3A46;
  font-weight: bold;
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
}

/**************************************************************
  2) MEDIA QUERIES PARA SECCIÓN PLANES
**************************************************************/
@media (max-width: 768px) {
  .plans-title {
    font-size: 1.8rem;
  }

  .plan-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .plans-title {
    font-size: 1.5rem;
  }

  .plan-price {
    font-size: 1.1rem;
  }

  .plan-features {
    max-width: 90%;
  }
}

/**************************************************************
  3) FOOTER PERSONALIZADO
**************************************************************/
.footer {
  background-color: #000000;
  color: #fff;
  padding: 2rem 2rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-left .footer-logo-image {
  max-height: 40px;
  margin-bottom: 1rem;
}

.footer-left .footer-text {
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align: justify;
}

/* Bloque de íconos sociales */
.footer-socials {
  display: flex;
  height: 70px;
  width: 270px;
}

/* Animación bounce en íconos */
.footer-socials svg {
  position: absolute;
  display: flex;
  width: 60%;
  height: 100%;
  font-size: 24px;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.25s;
  z-index: 2;
  cursor: pointer;
}

.footer-socials .social-link1,
.footer-socials .social-link2,
.footer-socials .social-link3,
.footer-socials .social-link4,
.footer-socials .social-link5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  color: whitesmoke;
  font-size: 24px;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 50px;
}

@keyframes bounce_613 {
  40%  { transform: scale(1.1); }
  60%  { transform: scale(0.9); }
  80%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.footer-socials .social-link1:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  animation: bounce_613 0.4s linear;
}

.footer-socials .social-link2:hover {
  background-color: #00ccff;
  animation: bounce_613 0.4s linear;
}

.footer-socials .social-link3:hover {
  background-color: #5865f2;
  animation: bounce_613 0.4s linear;
}

.footer-socials .social-link4:hover {
  background-color: #12a50b;
  animation: bounce_613 0.4s linear;
}

.footer-socials .social-link5:hover {
  background-color: #4267B2;
  animation: bounce_613 0.4s linear;
}

/* Columna Central (Mapa) */
.map-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.map-link {
  display: block;
  text-decoration: none;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Columna Derecha (Contacto) */
.footer-right h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

/* Zona de copy */
.footer-bottom {
  text-align: center;
  background-color: #000000;
  padding: 1rem 0;
}

.footer-bottom p {
  color: #fff;
}

/**************************************************************
  4) BOTÓN FLOTANTE DE WHATSAPP (From Gaurang7717)
**************************************************************/
.fixed-wp {
  position: fixed !important;
  bottom: 20px !important;
  left: auto !important;
  right: 20px !important;
  z-index: 9999 !important;
}

.contact-icon path {
  fill: #FFFFFF;
}

.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 25px;
}

.sign svg path {
  fill: white;
}

.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.Btn:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.Btn:active {
  transform: translate(2px, 2px);
}

/**************************************************************
  5) BOTÓN TIPO LOGIN CON EFECTO HOVER (CENTRADO)
**************************************************************/
/* Contenedor para centrar el botón y margen interior */
.centered-button-container {
  text-align: center;   /* Centra el botón en la sección */
  padding: 2rem 0;      /* "Margen interior" arriba y abajo */
}

/* Botón basado en .btn-login, con expansión en hover */
.btn-login-expand {
  /* Estilo base del botón de login */
  background-color: #FC3A46; /* Rojo vibrante */
  color: #FFFFFF;           /* Texto blanco */
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;

  /* Efecto de ensanchamiento */
  display: inline-block;
  width: 300px;      /* Ancho inicial */
  text-align: center;
  overflow: hidden;
  
  /* Transiciones suaves */
  transition: 
    width 0.3s ease, 
    background-color 0.3s ease, 
    color 0.3s ease, 
    border-radius 0.3s ease;
}

/* Hover: se ensancha, fondo blanco, texto gris oscuro */
.btn-login-expand:hover {
  width: 450px;       /* Más ancho al hacer hover */
  border-radius: 35px;  
  background-color: #FFFFFF; 
  color: #2C3333;    /* Texto gris oscuro */
}

/**************************************************************
  6) BANNER A PANTALLA COMPLETA
**************************************************************/
.full-width-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  /* Si deseas margen extra, podrías usar:
     margin-top: 2rem; 
     margin-bottom: 2rem; 
  */
}

.full-width-banner .banner-image {
  width: 100%;
  height: auto;        /* Ajusta la altura de forma proporcional */
  display: block;      /* Evita espacio extra en inline-block */
  object-fit: cover;   /* Se ajusta para no deformar la imagen */
}
