*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
   font-family: 'Roboto', sans-serif;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 15px 45px #62189E; /* violeta suave */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  }
}
body, html {
 min-height: 100vh;
  background: linear-gradient(to bottom right, #e0e0e0, #a53ad611);
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  scroll-behavior: smooth;
}
#tsparticles {
   position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; 
  pointer-events: none; /* 🔥 Esto permite clics a través */
}



.hero {
  min-height:screen;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 100px 5% 80px;
  position: relative;
  z-index: 1;
  
}



.hero__content {
  flex: 1 1 50%;
  max-width: 600px;
}


.hero__image {
  flex: 1 1 500px;
   max-width: clamp(300px, 40vw, 600px);
  text-align: center;
}


.hero h1 {
  font-size: 4.0rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(to right, #62189E, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 2.0rem;
  color: #444;
  margin-bottom: 30px;
}

.btn {
  background: linear-gradient(to right, #62189E, #f97316);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateX(4px);
}

.hero__image img {
width: 100%;
  max-width: 100%;
  height: auto;
}

.hero__card {
   position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 600px; /* Limita tamaño en pantallas grandes */
}

.hero__card:hover {
  transform: translateY(-6px);
}

.hero__card img {
 width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    padding-top: 100px;
  }

  .hero__image {
    margin-top: 20px;
  }

  .hero__content h1 {
    font-size: 32px;
  }

  .hero__content p {
    font-size: 16px;
  }

  .hero__card img {
    max-width: 300px;
  }
}


/*navbar/*
/* Navbar */

.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled a {
  color: #000000; /* color violeta o el que elijas */
}

.navbar.scrolled .navbar__cta {
  background: linear-gradient(to right, #f97316, #62189E);
  color: white;
}

.navbar {
  background-color: #db6e07;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.navbar__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 55px;
}

/* Menú (estilo desktop por defecto) */
.navbar__menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.navbar__menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar__menu li a:hover {
  color: #62189E;
}

/* Botón CTA */
.navbar__cta {
  background: linear-gradient(to right, #62189E, #f97316);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar__cta:hover {
  transform: translateY(-2px);
}

/* Hamburguesa oculta en desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #7c3aed;
}

/* =====================
   MODO MÓVIL
   ===================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 20px;
    gap: 14px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__menu li {
    text-align: center;
  }

  .navbar__menu li a {
    font-size: 16px;
  }
}



/* Servicios*/
.servicios {
  background-color: #8f25d62a;
  padding: 100px 5%;
  text-align: center;
}

.servicios__header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.servicios__header span {
  background: linear-gradient(to right, #62189E, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.servicios__header p {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #555;
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 columnas fijas */
  gap: 30px;
}

.card {
  background: white;
  position: relative;
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #62189E, #f97316);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.card:hover {
  transform: translateY(-6px);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bg-violet { background: #62189E; }
.bg-orange { background: #f97316; }
.bg-blue   { background: #3b82f6; }
.bg-green  { background: #10b981; }
.bg-purple { background: #8b5cf6; }

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: #333;
}

.gradient-line {
  height: 4px;
  width: 100%;
  margin-top: 20px;
  border-radius: 4px;
  background: linear-gradient(to right, #62189E, #f97316);
}

@media (max-width: 992px) {
  .servicios__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .servicios__grid {
    grid-template-columns: 1fr;
  }
}

/* Paquetes*/

.paquetes {
  padding: 100px 5%;
  text-align: center;
}

.paquetes__header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.paquetes__header span {
  background: linear-gradient(to right, #62189E, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.paquetes__header p {
  color: #555;
  margin-bottom: 60px;
}

.paquetes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.paquete {
  background: white;
  border-left: 6px solid #62189E;
  padding: 30px 24px 60px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.paquete:hover {
  animation: pulse 0.4s ease-in-out;
  cursor: pointer;
}

.paquete--destacado {
  border-color: #f97316;
  position: relative;
}

.paquete--destacado .badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #f97316;
  color: white;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-bottom-left-radius: 12px;
  font-weight: bold;
}

.paquete .title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.paquete p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #333;
}

.paquete ul {
  margin-bottom: 24px;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #444;
  list-style: none;
}

.paquete li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
  color: #333;
}

.paquete li::before {
  content: "✓";
  color: #62189E;
  font-weight: bold;
  margin-right: 8px;
  position: absolute;
  left: 0;
}

.btn {
  background:#62189E;
  color: white;
  text-align: center;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #6b21a8;
}

.text-violet { color: #62189E; }
.text-orange { color: #f97316; }
.text-blue { color: #3b82f6; }


/* paquetes eccommerce*/
.paquetes-ecommerce{
  background-color: #55555569;
}


.paqueteseco {
  padding: 100px 5%;
  text-align: center;
  background-color: #5555553f;
}

.paquetes__header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.paquetes__header span {
  background: linear-gradient(to right, #62189E, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.paquetes__header p {
  color: #555;
  margin-bottom: 60px;
}

.paquetes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.paquete {
  background: rgba(255, 255, 255, 0.445);
  border-radius: 16px;
  padding: 80px 24px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
  transition: transform 0.3s ease;
}

.paquete:hover {
  animation: pulse 0.4s ease-in-out;
  cursor: pointer;
  transform: translateY(-4px);
  background-color: #ffffff;
}

.paquete h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}

.paquete ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.paquete li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  color: #333;
}

.paquete li::before {
  content: "✓";
  color: #10b981; /* verde */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.btn.purple {
  background: #62189E;
  color: white;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: background 0.3s ease;
}

.btn.purple:hover {
  background: #6d28d9;
}

.btn span {
  margin-right: 8px;
}

/* Icono superior */
.paquete__icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.paquete__icon img {
  width: 32px;
  height: 32px;
}

/* Animación de rebote */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

.bounce {
  animation: bounce 2s infinite ease-in-out;
}

/* Pulso */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}


/* proyectos0 */

.proyectos-simples {
  padding: 60px 20px;
  background: #fdfdfd42;
  text-align: center;
}
.proyectos-simples .titulo-proyectos {
   font-size: 40px;
  font-weight: bold;
  background: linear-gradient(90deg, #62189E, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.proyectos-simples .descripcion-general {
  max-width: 600px;
  margin: 10px auto 40px;
  color: #555;
}

.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-proyecto {
  background: #ffffff2d;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-proyecto:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  background-color: #ffffff;
}
.card-proyecto img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.card-proyecto .contenido {
  padding: 20px;
}
.card-proyecto h3 {
  color: #62189E;
  margin-bottom: 10px;
}
.card-proyecto p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}
.card-proyecto a {
  display: inline-block;
  padding: 10px 18px;
  background: #62189E;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.card-proyecto a:hover {
  background: #62189E;
}


.tags {
  margin: 10px 0;
}
.tags span {
  display: inline-block;
  background: #f3f3f3;
  color: #7b1fa2;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
  border: 1px solid #e0e0e0;
  transition: background 0.2s;
}
.tags span:hover {
  background: #e0d7f5;
}

/* Tecnologias */

.seccion-tecnologias {
  padding: 60px 20px;
  text-align: center;
  
}

.titulo-seccion h2 {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(90deg, #9333ea, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}


.titulo-seccion {
  text-align: center;
  margin-bottom: 40px;
}
.subtitulo {
  font-size: 16px;
  color: #2b2a2a;
}

.card-grid {
  background-color: #e0d7f54b;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(192, 96, 5, 0.521);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  position: relative;
}

.tech {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 30px 0;
  font-weight: bold;
  transition: transform 0.5s ease-in-out;
  animation: float 4s ease-in-out infinite;
}

/* Movimiento aleatorio personalizado por tipo */
.tech:nth-child(1) { animation-delay: 0s; }
.tech:nth-child(2) { animation-delay: 0.5s; }
.tech:nth-child(3) { animation-delay: 1s; }
.tech:nth-child(4) { animation-delay: 1.5s; }
.tech:nth-child(5) { animation-delay: 2s; }
.tech:nth-child(6) { animation-delay: 2.5s; }
.tech:nth-child(7) { animation-delay: 3s; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px) translateX(5px); }
  100% { transform: translateY(0px); }
}

/* grid*/
.card-grid {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  position: relative;
}

.tech {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.5s ease, background 0.3s;
  animation: float 4s ease-in-out infinite;
}
.tech img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  transition: transform 0.3s;
}
.tech p {
  font-weight: bold;
  font-size: 14px;
  margin: 0;
}

/* Animaciones flotantes alternadas */
.tech:nth-child(1) { animation-delay: 0s; }
.tech:nth-child(2) { animation-delay: 0.3s; }
.tech:nth-child(3) { animation-delay: 0.6s; }
.tech:nth-child(4) { animation-delay: 0.9s; }
.tech:nth-child(5) { animation-delay: 1.2s; }
.tech:nth-child(6) { animation-delay: 1.5s; }
.tech:nth-child(7) { animation-delay: 1.8s; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px) translateX(4px); }
  100% { transform: translateY(0px); }
}

/* Hover personalizado por tecnología */
.tech:hover img {
  transform: scale(1.1);
}
.tech.react:hover p { color: #61dafb; }
.tech.node:hover p { color: #3c873a; }
.tech.html:hover p { color: #e34c26; }
.tech.css:hover p { color: #2965f1; }
.tech.js:hover p { color: #f7df1e; }
.tech.sql:hover p { color: #336791; }
.tech.mongo:hover p { color: #47a248; }

/*Blog*/

.seccion-blog {
  padding: 60px 20px;
  text-align: center;
  background-color: #44444413;
}
.seccion-blog h2 {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(90deg, #62189E, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.subtitulo-blog {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-card .contenido {
  padding: 20px;
}

.blog-card h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.blog-card a {
  font-weight: bold;
  color: #62189E;
  text-decoration: none;
}

.blog-card a:hover {
  color: #a855f7;
}

/* contacto*/

.cotizacion {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  
}

.cotizacion .titulo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(to right, #62189E, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cotizacion .subtitulo {
  color: #0e0d0d;
  margin-bottom: 40px;
}

.form-cotizacion .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
  margin-bottom: 40px;
  
}

.campo,
.campo-full {
  display: flex;
  flex-direction: column;

}
.grid-campos{
  background-color: #ffffff52;
  border-radius: 10px;
}

label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

input,
textarea,
select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  transition: border 0.3s, box-shadow 0.3s;
  width: 100%;
  box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #9333ea;
  box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.15);
  outline: none;
}

textarea {
  resize: vertical;
}

.boton-envio {
  margin-top: 30px;
  text-align: center;
}

.boton-envio button {
  padding: 14px 30px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background: #9333ea;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.boton-envio button:hover {
  background: #7e22ce;
}

.info-contacto {
  border: 2px solid;
  border-image: linear-gradient(to bottom, #9333ea, #f97316) 1;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  background: rgba(255, 255, 255, 0.192);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.info-contacto h3 {
  margin-bottom: 20px;
}

.item {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 20px;
}

.icono {
  background: #f4f0ff;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
}

.cotizacion-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: auto;
  
}

@media (max-width: 768px) {
  .cotizacion-grid {
    grid-template-columns: 1fr;
  }
}

.grid-campos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.campo {
  display: flex;
  flex-direction: column;
}

.campo-full {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 768px) {
  .cotizacion-grid {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .grid-campos {
    grid-template-columns: 1fr;
  }

  .boton-envio {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .form-cotizacion {
    padding: 0 16px; /* Margen interno lateral */
    width: 100%;
    box-sizing: border-box;
  }
}







/* footer*/
.footer {
  padding: 40px 20px;
  background: linear-gradient(to top, #d8d3e088, #d4590783);
  text-align: center;
}

.footer-contenido {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #9333ea;
}

.logo-footer {
  max-width: 140px;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  color: #9333ea;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: #9333ea;
  color: white;
}

/* === WHATSAPP BOTÓN FLOTANTE === */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  padding: 14px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.burbuja-wa {
  display: none;
  background: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  color: #25d366;
  font-weight: 500;
  margin-left: 10px;
}

/* === RESPONSIVE FOOTER === */
@media (max-width: 768px) {
  .footer-contenido {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-col ul {
    padding: 0;
  }

  .footer p {
    font-size: 14px;
    margin-top: 12px;
  }
}
