/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables de color */
:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --dark-color: #333;
  --light-bg: #f4f4f4;
  --footer-bg: #222;
  --white: #fff;
  --star-color: gold; /* Estrellas */
  --card-hover-shadow: rgba(0,0,0,0.15);
  --btn-hover-shadow: rgba(0,0,0,0.25);
}

/* Aseguramos que los textos de los selects sean negros */
select {
  color: #000;
}

/* Estructura general */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--light-bg);
  color: var(--dark-color);
  font-weight: 400;
  overflow-x: hidden;
}

/* Títulos con peso más resaltado */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* NAV con degradado */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #0073C7 0%, #21CEFF 100%);
  padding: 0.8rem 2rem;
  gap: 2rem;
}
.main-nav .logo img {
  position: relative;
  left: -120px;
  margin-left: -180px;
  height: 45px;
}

/* BOTÓN HAMBURGUESA (MÓVIL) */
.hamburger-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.hamburger-icon, .hamburger-icon i {
  color: #fff !important;
  background: none !important;
  opacity: 1 !important;
}

/* Menú principal */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav ul li a:hover {
  color: #ddd;
}

/* Botón de "Iniciar Sesión" */
.nav-login-btn {
  background-color: #FFF;
  color: #1EA2FF;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}
.nav-login-btn:hover {
  background-color: #f2f2f2;
}

/* Información del usuario */
#user-info {
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 1rem;
}
.logout-btn {
  background-color: #e74c3c;
  color: var(--white);
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}
.logout-btn:hover {
  background-color: #c0392b;
}

/* HERO */
.hero {
  position: relative;
  min-height: 70vh;
  background: center/cover no-repeat url("images/hero-bg.webp");
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 600px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-subtext {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Barra de búsqueda */
.search-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.search-bar select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  font-weight: 400;
  min-width: 180px;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg fill='%23333' height='10px' viewBox='0 0 10 5' width='10px' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 l5,5 5-5z'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
  background-size: 12px 12px;
  padding-right: 2rem;
}
.search-bar button {
  background-color: #28a745;
  color: var(--white);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  font-weight: 500;
}
.search-bar button:hover {
  background-color: #218838;
}

/* Botón "Login" en hero */
#login-btn {
  display: none;
}

/* Sección Editar Profesional */
.edit-professional {
  padding: 2rem;
  background: var(--white);
  margin: 2rem auto;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.edit-professional h2 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}
.edit-professional form {
  display: flex;
  flex-direction: column;
}
.edit-professional form label {
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 400;
}
.edit-professional form select,
.edit-professional form input {
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg fill='%23333' height='10px' viewBox='0 0 10 5' width='10px' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 l5,5 5-5z'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
  background-size: 12px 12px;
  padding-right: 2rem;
}
.edit-professional form button {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1rem;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
}
.edit-professional form button:hover {
  background-color: #2980b9;
}

/* Ventajas */
.advantages {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--light-bg);
}
.advantages h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}
.advantage-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0 auto;
}
.advantage-item {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}
.advantage-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.advantage-item h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.advantage-item p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 400;
}

/* SECCIÓN SERVICIOS / TARJETAS */
.services {
  padding: 4rem 2rem;
  text-align: center;
  background: #eef7ff;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--card-hover-shadow);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* FOTO DE PERFIL => AJUSTE para iPhone (circular, forzado) */
.card-header img {
  display: block;
  width: 60px;       /* Asegura contenedor cuadrado */
  height: 60px;      /* Asegura contenedor cuadrado */
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1; /* Ayuda en navegadores iOS modernos */
}

.card-header h3 {
  margin-bottom: 0.2rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}
.card-body {
  margin-top: 0.5rem;
  position: relative;
}
.card-body p {
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #444;
  line-height: 1.4;
}

/* Rating en tarjeta */
.star-rating i {
  color: #FFD700;
  font-size: 0.9rem;
  margin-right: 2px;
}
.rating-stars {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 2px;
}
.rating-stars i {
  color: #f1c40f;
  font-size: 0.9rem;
  margin-right: 1px;
}
.rating {
  margin: 0.5rem 0;
}
.rating i {
  color: var(--star-color);
  margin-right: 0.1rem;
  font-size: 1.1rem;
}

/* Botón de Contactar (WhatsApp) */
.contact-btn {
  background-color: #25D366;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.contact-btn:hover {
  background-color: #1ebe5e;
  box-shadow: 0 4px 8px var(--btn-hover-shadow);
}

/* Mini-galería de portafolio */
.mini-gallery {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.mini-gallery img {
  width: 30%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mini-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
/* Contenedor de la paginación */
#pagination-container {
  text-align: center;
  margin-top: 1rem;
}

/* Botones de la paginación */
.pagination-btn {
  background-color: #3498db;   /* Color principal */
  color: #ffffff;             /* Texto en blanco */
  border: none;               /* Sin borde */
  padding: 8px 16px;          /* Espaciado interno */
  margin: 0 4px;              /* Separación horizontal */
  cursor: pointer;            /* Cursor de “manito” */
  border-radius: 4px;         /* Esquinas redondeadas */
  font-size: 1rem;            /* Tamaño de fuente */
  transition: background-color 0.2s ease; /* Suaviza el hover */
}

/* Hover: al pasar el mouse */
.pagination-btn:hover {
  background-color: #2980b9;   /* Un tono más oscuro */
}

/* Cuando está deshabilitado */
.pagination-btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}
.pagination-btn:disabled,
.pagination-btn[disabled] {
  opacity: 0.6;
}

/* Botón de página actual */
.pagination-btn.current-page {
  background-color: #2ecc71;  /* Verde */
  pointer-events: none;       /* Deshabilitado */
  cursor: default;
}

/* Testimonios */
.testimonials {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-slide {
  min-height: 150px;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.testimonial-slide p {
  color: #555;
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 400;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.testimonial-controls button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}
.testimonial-controls button:hover {
  background: #2980b9;
}
.testimonial-controls i {
  color: #fff !important;
}

/* SECCIÓN REGISTRO */
.register {
  padding: 4rem 2rem;
  background: #eef7ff;
}
.register-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.register-inner form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.register-inner form label {
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: #555;
  font-weight: 400;
}
.register-inner form input,
.register-inner form textarea {
  margin-bottom: 1rem;
  padding: 0.9rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  font-family: inherit;
  font-weight: 400;
  background: #fff;
  color: #000;
  -webkit-appearance: none;
  appearance: none;
}
.register-inner form select {
  margin-bottom: 1rem;
  padding: 0.9rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  font-family: inherit;
  font-weight: 400;
  background: #fff;
  color: #000;
  -webkit-appearance: none;
  appearance: none;
}
.register-inner form select#reg-speciality,
.register-inner form select#reg-city,
.register-inner form select#reg-area1,
.register-inner form select#reg-area2,
.register-inner form select#reg-area3,
.register-inner form select#reg-plan {
  background: #fff url("data:image/svg+xml,%3Csvg%20fill%3D%22%23333%22%20height%3D%2210px%22%20viewBox%3D%220%200%2010%205%22%20width%3D%2210px%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0,0%20l5,5%205-5z%22/%3E%3C/svg%3E") no-repeat right 0.9rem center;
  background-size: 12px 12px;
  padding-right: 2rem;
}
.register-inner form button {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1rem;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
  font-weight: 500;
}
.register-inner form button:hover {
  background-color: #2980b9;
}
.highlight-price {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
}
.price-highlight {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Contacto */
.contact {
  padding: 4rem 2rem;
  text-align: center;
}
.contact h2 {
  margin-bottom: 2rem;
  color: var(--dark-color);
}
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.contact form input,
.contact form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 400;
}
.contact form button {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.1rem;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
}
.contact form button:hover {
  background-color: #2980b9;
}

/* Modal Login */
.login-container {
  position: fixed;
  z-index: 999;
  left: 0; 
  top: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}
.login-content {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  text-align: center;
}
.login-content h2 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}
.login-info {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 400;
}
.close-login {
  position: absolute;
  top: 10px; 
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}
.login-content form {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.login-content form input {
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 400;
}
.login-content form button {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.1rem;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
}
.login-content form button:hover {
  background-color: #2980b9;
}

/* Previews de imágenes */
.preview-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
#edit-preview-container {
  justify-content: center;
}
.image-preview {
  position: relative;
  display: inline-block;
}
.image-preview img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.remove-img {
  position: absolute;
  top: 4px; 
  right: 4px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 26px; 
  height: 26px;
  line-height: 26px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remove-img:hover {
  background: rgba(0,0,0,0.8);
}
#edit-drop-zone {
  border: 2px dashed #ccc;
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  margin-bottom: 1rem;
}
#edit-drop-zone.dragover {
  background-color: #f0f8e3;
}

/* Botón Únete como Experto (AJUSTE: cambiado de "Ver Planes") */
#planes-btn {
  background: linear-gradient(90deg, #0073C7, #21CEFF);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
}
/* Modal de Renovación (3 botones) */
#renew-modal {
  position: fixed;
  z-index: 9999;
  left: 0; 
  top: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
}
.renew-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  margin: 10% auto;
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
#close-renew-modal {
  position: absolute;
  top: 10px; 
  right: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #333;
}
.renew-content h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #333;
}
.renew-content p {
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 400;
}
button.renew-option {
  border: none;
  border-radius: 5px;
  padding: 0.75rem;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}
button[data-plan="1"] {
  background: #3498db;
}
button[data-plan="6"] {
  background: #2ecc71;
}
button[data-plan="12"] {
  background: #e67e22;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--white);
  text-align: center;
  padding: 1rem;
}
footer a {
  color: #ddd;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  .main-nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    position: relative;
  }
  .main-nav .logo img {
    position: static;
    margin-left: 0;
    left: 0;
  }
  .hamburger-icon {
    display: block;
  }
  .main-nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(90deg, #0073C7 0%, #21CEFF 100%);
    padding: 1rem;
    border-radius: 8px;
    position: absolute;
    top: 60px;
    left: 1rem;
    right: 1rem;
    z-index: 999;
  }
  .main-nav ul.mobile-open {
    display: flex;
  }
  .nav-login-btn {
    margin-left: auto;
    margin-right: 0;
  }
  .search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .search-bar select {
    min-width: auto;
    width: 100%;
  }
  .advantage-grid {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  .mini-gallery {
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: flex-start;
  }
  .mini-gallery img {
    width: 33.33%;
    max-width: 33.33%;
    flex-shrink: 0;
  }
  .testimonial-controls {
    justify-content: center;
  }
  .service-card {
    padding: 2rem;
  }
  /* Ajuste al formulario de registro en móvil */
  .register-inner form {
    margin: 2rem 1rem;
    padding: 1.5rem 1rem;
  }
  #reg-phone {
    padding-left: 3rem !important;
  }
  /* AJUSTE: Centrar el botón "Únete como Experto" en mobile */
  #planes-btn {
    display: block;
    margin: 0.5rem auto;
    width: auto;
  }
}

.fa, .fas, .far, .fab {
  color: #3498db !important;
}
.contact-btn i.fa-whatsapp {
  color: #fff !important;
}

/* Ajuste botón extra landing page */
#landing-link-container {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

#landing-link-container a {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

/* En móvil, opción block si se desea */
@media (max-width: 768px) {
  #landing-link-container a {
    display: inline-block;
    margin: 0 auto;
  }
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 9999;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebe5e;
}
/* Para que todo el círculo sea clickeable */
.whatsapp-float a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.whatsapp-float i {
  font-size: 28px;
  color: #fff !important;
}
