/* Elimina el espacio causado por el navbar fijo */
body {
  margin: 0;
  padding-top: 50px;
}

/* SLIDER CONFIGURACIÓN */
#hero {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Texto dentro del slider */
.carousel-caption {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.carousel-caption .btn {
  margin-top: 15px;
  padding: 10px 25px;
  border-radius: 25px;
  background-color: #00bfff;
  color: #fff;
  font-weight: 600;
}

.carousel-caption .btn:hover {
  background-color: #0099cc;
}

/* SECCIÓN HYUNDAI E INDURAMA */
    .hyundai-section {
      background: linear-gradient(135deg, #1a6bb3, #0d4d8a);
      color: white;
      padding: 80px 20px;
      text-align: center;
    }

    .hyundai-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .brands-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-bottom: 35px;
      flex-wrap: wrap;
    }

    .brand-name {
      font-size: 2.5rem;
      font-weight: 700;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .divider {
      width: 2px;
      height: 60px;
      background: rgba(255, 255, 255, 0.3);
    }

    .service-description {
      font-size: 1.3rem;
      margin-bottom: 30px;
      line-height: 1.6;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      display: inline-block;
      background-color: #ff6b35;
      color: white;
      padding: 15px 35px;
      font-size: 1.2rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
    }

    .cta-button:hover {
      background-color: #e55a2b;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
      color: white;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hyundai-section {
        padding: 60px 20px;
      }
      
      .hyundai-title {
        font-size: 1.8rem;
      }
      
      .brand-name {
        font-size: 2rem;
      }
      
      .service-description {
        font-size: 1.1rem;
      }
      
      .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
      }
    }

    /* SECCIÓN PROGRAMAR VISITA TÉCNICA */
.technical-visit-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.visit-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
  text-transform: none;
}

.visit-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1a6bb3, #0d4d8a);
  color: white;
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 107, 179, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.visit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 107, 179, 0.4);
  color: white;
}

.guarantee-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #1a6bb3;
}

.guarantee-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a6bb3;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.authorized-point {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #1a6bb3, #0d4d8a);
  border-radius: 8px;
}

.point-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.help-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
}

.help-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

.help-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.help-option {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.help-option:hover {
  background: #1a6bb3;
  color: white;
  border-color: #1a6bb3;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .technical-visit-section {
    padding: 60px 0;
  }
  
  .visit-title {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .visit-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 12px 20px;
  }
  
  .guarantee-section {
    margin-bottom: 30px;
  }
  
  .guarantee-title {
    font-size: 1.2rem;
  }
  
  .point-text {
    font-size: 1.3rem;
  }
  
  .help-section {
    padding: 30px 20px;
  }
  
  .help-title {
    font-size: 1.5rem;
  }
}


/* servicios */
.servicios {
  text-align: center;
  padding: 50px 20px;
  background-color: #f5fbff;
  font-family: 'Poppins', sans-serif;
}

.servicios h2 {
  font-size: 2.2em;
  font-weight: 800;
  color: #1b0f2e;
  margin-bottom: 40px;
}

.servicios-contenedor {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.servicio {
  max-width: 320px;
}

.servicio img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.servicio h3 {
  font-size: 1.3em;
  margin: 15px 0;
  color: #2e2e2e;
  font-weight: 600;
}

.btn-servicio {
  display: inline-block;
  background-color: #0091d5;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-servicio:hover {
  background-color: #007bb3;
}

.descripcion {
  max-width: 900px;
  margin: 50px auto 0;
  font-size: 1em;
  color: #444;
  line-height: 1.6;
}

/* SECCIÓN COTIZAR REPARACIÓN */
.quote-section {
  background: linear-gradient(135deg, #1a6bb3, #0d4d8a);
  color: white;
  padding: 80px 0;
}

.quote-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.quote-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.5;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.phone-icon {
  font-size: 2rem;
}

.number {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.divider-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 30px 0;
}

.help-services {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.help-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.check-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-text {
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-section {
    padding: 60px 0;
  }
  
  .quote-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .quote-description {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .phone-number {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
  
  .number {
    font-size: 1.8rem;
  }
  
  .help-services {
    margin-top: 30px;
    padding: 30px 20px;
  }
  
  .help-title {
    font-size: 1.5rem;
  }
  
  .service-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .quote-title {
    font-size: 1.5rem;
  }
  
  .number {
    font-size: 1.5rem;
  }
  
  .service-item {
    padding: 12px;
  }
}

/* FOOTER EXACTO */
.exact-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 40px 0 20px;
  border-top: 2px solid #e9ecef;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  text-transform: uppercase;
}

.address-block {
  margin-bottom: 20px;
}

.address-title {
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.address-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.contact-email {
  font-size: 0.9rem;
  color: #333;
  margin-top: 20px;
}

.footer-divider {
  width: 1px;
  background-color: #ddd;
  min-height: 150px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  padding: 5px 0;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px solid #eee;
}

.services-list li:last-child {
  border-bottom: none;
}

.contact-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.contact-info {
  margin-top: 10px;
}

.phone-main {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: #333;
}

.location {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0;
}

.phone-secondary {
  font-size: 0.95rem;
  margin: 10px 0 5px;
  color: #333;
}

.phone-type {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.privacy-link, .website-link {
  font-size: 0.85rem;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.website-link {
  color: #0066cc;
}

.copyright-section {
  text-align: center;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-divider {
    width: 100%;
    height: 1px;
    min-height: auto;
  }
  
  .footer-links {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .exact-footer {
    padding: 30px 0 15px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-heading {
    font-size: 1rem;
  }
}

/* ==== ESTRUCTURA GENERAL ==== */
.navbar {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto; /* centra el contenido del header */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
}

/* ==== LOGO ==== */
.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.navbar-brand img {
  margin-top: -5px;
  display: block;
}


.marca-registrada {
  font-size: 13px;
  color: #222;
  font-weight: 600;
  margin-top: -2px;
}

/* ==== ENLACES ==== */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #009ee0;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #007bb8;
}

/* ==== HAMBURGUESA ==== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.hamburger span {
  background: #009ee0;
  height: 3px;
  width: 100%;
  border-radius: 5px;
  transition: 0.3s;
}

/* ==== MÓVIL ==== */
@media (max-width: 900px) {
  .nav-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #fff;
    width: 100%;
    padding: 20px 0;
    margin-top: 10px;
    border-top: 1px solid #e6e6e6;
  }

  .nav-links.show {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* seccion tarjetas */ 
.servicios-lavadoras {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding: 3rem 1rem;
  background: #f9f9f9;
  flex-wrap: wrap;
}

.servicios-lavadoras .card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicios-lavadoras .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.servicios-lavadoras .icono {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.servicios-lavadoras h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #222;
  text-transform: uppercase;
}

.servicios-lavadoras p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Seccion de imagen */
.hero-lavadoras {
  position: relative;
  background: url('/img/baner3.webp') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-lavadoras::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 70, 150, 0.55); /* filtro azul traslúcido */
}

.hero-lavadoras .overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-lavadoras h1 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-lavadoras p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn-hero {
  background-color: #33b5ff;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-hero:hover {
  background-color: #1a9fe0;
}

/* seccion de imagen neveras */
.hero-neveras {
  position: relative;
  background: url('/img/prueba44.webp') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-neveras::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 70, 150, 0.55); /* filtro azul traslúcido */
}

.hero-neveras .overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-neveras h1 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-neveras p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn-hero {
  background-color: #33b5ff;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-hero:hover {
  background-color: #1a9fe0;
}

/* seccion de imagen calentadores */
.hero-calentadores {
  position: relative;
  background: url('/img/calentador.webp') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-calentadores::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 70, 150, 0.55); /* filtro azul traslúcido */
}

.hero-calentadores .overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-calentadores h1 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-calentadores p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn-hero {
  background-color: #33b5ff;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-hero:hover {
  background-color: #1a9fe0;
}

/* seccion de descripcion */

.servicio-lavadoras {
  padding: 4rem 1rem;
  background-color: #fff;
}

.contenido-lavadoras {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.imagen-lavadoras img {
  width: 320px;
  border-radius: 10px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.texto-lavadoras {
  flex: 1;
  min-width: 320px;
}

.texto-lavadoras h2 {
  font-size: 1.6rem;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: left;
}

.texto-lavadoras p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: left;
}

.acordeon details {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.acordeon details[open] {
  background-color: #eef7ff;
  border-color: #007bff;
}

.acordeon summary {
  font-size: 1rem;
  font-weight: 600;
  color: #007bff;
  list-style: none;
}

.acordeon summary::-webkit-details-marker {
  display: none;
}

.acordeon p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #333;
}

/* BOTONES DE CONTACTO */
.botones-contacto {
  margin-top: 1rem;
  display: flex;
  gap: 10px;
}

.btn-contacto {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: background 0.3s ease;
  font-size: 0.9rem;
}

.btn-contacto.whatsapp {
  background-color: #25d366;
}

.btn-contacto.whatsapp:hover {
  background-color: #1ebe5d;
}

.btn-contacto.llamada {
  background-color: #007bff;
}

.btn-contacto.llamada:hover {
  background-color: #0062cc;
}

/* ultima seccion */
.cta-servicio {
  background-color: #0b678c; /* azul principal */
  padding: 2.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.contenido-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
}

.contenido-cta h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.btn-cta {
  background-color: #1da1d8;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #1587b8;
}

/* clase boton wha */

.whatsapp-btn {
    position: fixed;
    bottom: 20px; /* Distancia desde la parte inferior */
    left: 10px; /* Distancia desde el borde izquierdo */
    z-index: 1000; /* Asegura que el botón esté sobre otros elementos */
    width: 60px;
    height: 60px;
    background-image: url('/img/wa.ico'); /* Ruta de la imagen del icono de WhatsApp */
    background-size: cover; /* Ajusta el tamaño de la imagen al tamaño del botón */
    border: 2px solid #25D366; /* Borde sólido de 2px de color verde */
    border-radius: 50%; /* Hace que el botón sea completamente redondo */
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra */
    transition: transform 0.2s, background-color 0.2s; /* Transición de transformación y color de fondo */
    overflow: hidden; /* Oculta el exceso de animación */
}

/* Efecto de ondas */
.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: ripple 1s infinite;
}

@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Estilos cuando se pasa el cursor sobre el botón */
.whatsapp-btn:hover {
    transform: scale(1.1); /* Aumenta ligeramente el tamaño del botón */
    background-color: #4CAF50; /* Cambia el color de fondo cuando se pasa el cursor sobre el botón */
}

/* Estilos del mensaje */
.mensaje {
    position: fixed;
    bottom: 30px; /* Distancia desde la parte inferior */
    left: 70px; /* Distancia desde el borde izquierdo */
    z-index: 999; /* Asegura que el mensaje esté sobre el botón */
    font-size: 14px;
    color: #333;
    background-color: #fff; /* Fondo blanco */
    padding: 10px; /* Añade espacio alrededor del texto */
    border-radius: 10px; /* Bordes redondos */
    display: none; /* Oculta el mensaje por defecto */
}



/* clase boton llamada */
.call-btn {
	position: fixed;
	bottom: 20px; /* Distancia desde la parte inferior */
	left: 97%; /* Posición horizontal centrada */
	transform: translateX(-90%); /* Ajuste para centrar el botón completamente */
	z-index: 1000; /* Asegura que el botón esté sobre otros elementos */
	width: 60px;
	height: 60px;
	background-image: url('/img/llamada.webp'); /* Ruta de la imagen del icono de llamada */
	background-size: cover; /* Ajusta el tamaño de la imagen al tamaño del botón */
	border: 2px solid #34b7f1; /* Borde sólido de 2px de color azul */
	border-radius: 50%; /* Hace que el botón sea completamente redondo */
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra */
	transition: transform 0.2s, background-color 0.2s; /* Transición de transformación y color de fondo */
	overflow: hidden; /* Oculta el exceso de animación */
	will-change: transform;
  }
  
  /* Efecto de ondas */
  .call-btn::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	animation: ripple 1s infinite;
  }
  
  @keyframes ripple {
	from {
		transform: scale(0);
		opacity: 1;
	}
	to {
		transform: scale(2.5);
		opacity: 0;
	}
  }

  .seo-h1 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
