/* ==========================================
   RBT DIGITAL SOLUTIONS - UNIFIED RUBBER HOSE & DARK ABSTRACT GRID
   Fondo: Imagen Dark Abstract Geometric Grid (Fijo y Continuo)
   Estilo: Rubber Hose Cartoon (Tinta Negra 3.5px + Sombras Sólidas Pop)
   Íconos: 100% Transparentes sin Fondos ni Cuadros (Estilo Ilustrado Pixel/Pop)
   ========================================== */

/* 1. VARIABLES UNIFICADAS */
:root {
  /* Fondo Oscuro Grid */
  --bg-dark-base: #141518;
  --bg-card-white: #ffffff;
  --bg-card-dark: #1f2229;
  --bg-cream-pop: #fffdf7;
  
  /* Paleta Plana Rubber Hose Años 30 */
  --ink-black: #000000;
  --text-white: #f8fafc;
  --text-dark: #121212;
  --text-muted: #94a3b8;
  
  /* Accentos Planos Sólidos */
  --red-solid: #ff2a55;
  --yellow-solid: #ffc107;
  --green-wa-solid: #25d366;
  --blue-solid: #0099ff;
  --cyan-solid: #00d2ff;

  /* Tipografía Redonda y Gruesa */
  --font-rounded: 'Fredoka', 'Comfortaa', -apple-system, sans-serif;
  --font-handwritten: 'Caveat', cursive;

  /* Bordes de Tinta Negra y Sombras Pop */
  --border-ink: 3.5px solid #000000;
  --border-ink-thin: 2.5px solid #000000;
  
  --radius-rubber-1: 24px 14px 28px 16px / 16px 28px 14px 24px;
  --radius-rubber-2: 20px 30px 18px 24px / 24px 18px 30px 20px;
  --radius-pill: 40px;

  --shadow-rubber: 6px 6px 0px #000000;
  --shadow-rubber-hover: 10px 10px 0px #000000;
  --shadow-wa: 6px 6px 0px #051d0d;

  --transition-bounce: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 2. RESET & FONDO DARK ABSTRACT GEOMETRIC GRID BACKGROUND */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-rounded);
  background-color: var(--bg-dark-base);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;

  /* FONDO CON LA IMAGEN ADJUNTADA "DARK ABSTRACT GEOMETRIC GRID" */
  background-image: url('WhatsApp Image 2026-08-10 at 09.00.48.jpeg'), url('bg.jpg');
  background-repeat: repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ANOTACIONES MANUSCRITAS EN AMARILLO SÓLIDO */
.handwritten-annotation {
  font-family: var(--font-handwritten);
  color: var(--yellow-solid);
  font-size: 1.65rem;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-4deg);
  line-height: 1.1;
  text-shadow: 2px 2px 0px #000;
}

/* 3. HEADER EN FONDO OSCURO GRID CON BORDE TINTA */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 21, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-ink);
  padding: 0.6rem 0;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 14px;
  border: 2.5px solid #000;
  box-shadow: 3.5px 3.5px 0px #000;
  transition: var(--transition-bounce);
  transform: rotate(-2deg);
  background-color: #000000;
  padding: 2px;
}

.logo-img:hover {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 5px 5px 0px #000;
}

.nav-menu {
  display: none;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-bounce);
  border: 2px solid transparent;
}

.nav-link:hover {
  background: var(--yellow-solid);
  color: #000000;
  border: 2px solid #000;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0px #000;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-wa-solid);
  color: #000000;
  border: var(--border-ink);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.35rem;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 4px 4px 0px #000000;
  transition: var(--transition-bounce);
}

.btn-header-wa:hover {
  transform: translate(-3px, -3px) rotate(-2deg);
  box-shadow: 7px 7px 0px #000000;
}

/* 4. HERO SECTION SOBRE FONDO DARK ABSTRACT GRID */
.hero-section {
  padding: 3.5rem 0 4.5rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.sticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow-solid);
  color: #000000;
  border: var(--border-ink);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0px #000;
}

.hero-title {
  font-family: var(--font-rounded);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}

.hero-title .highlight-box {
  background: transparent;
  color: var(--red-solid);
  font-size: 1.18em;
  font-weight: 800;
  padding: 0;
  border-radius: 0;
  display: inline-block;
  transform: rotate(-2deg);
  border: none;
  box-shadow: none;
  text-shadow: 3.5px 3.5px 0px #000000;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 580px;
  font-weight: 600;
}

.hero-cta-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.btn-cta-giant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--green-wa-solid);
  color: #000000;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-rubber-1);
  border: var(--border-ink);
  box-shadow: var(--shadow-rubber);
  transition: var(--transition-bounce);
  cursor: pointer;
}

.btn-cta-giant:hover {
  transform: translate(-4px, -4px) rotate(-2deg);
  box-shadow: var(--shadow-rubber-hover);
  background: #1eb956;
}

.cta-annotation {
  position: absolute;
  top: -38px;
  right: -15px;
  pointer-events: none;
}

/* WIDGET SHOWCASE RUBBER HOSE (ÍCONOS TRANSPARENTES SIN FONDO) */
.hero-bento-container {
  position: relative;
}

.bento-card-main {
  background: var(--bg-card-dark);
  color: #ffffff;
  border: var(--border-ink);
  border-radius: var(--radius-rubber-1);
  padding: 2rem;
  box-shadow: var(--shadow-rubber);
  position: relative;
}

.bento-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.bento-title {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--yellow-solid);
}

.live-badge {
  background: var(--green-wa-solid);
  color: #000000;
  border: 2px solid #000;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.bento-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bento-item {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* ÍCONOS DEL WIDGET HERO TRANSPARENTES SIN CUADRO */
.bento-icon {
  width: auto;
  height: auto;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--yellow-solid);
  font-size: 1.8rem;
  filter: drop-shadow(2.5px 2.5px 0px #000000);
}

.bento-info strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.bento-info span {
  font-size: 0.825rem;
  color: #cbd5e1;
}

.bento-card-float {
  position: absolute;
  bottom: -28px;
  right: -15px;
  background: var(--yellow-solid);
  color: #000000;
  border: var(--border-ink);
  border-radius: var(--radius-rubber-2);
  padding: 0.85rem 1.35rem;
  box-shadow: var(--shadow-rubber);
  transform: rotate(3deg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 0.9rem;
}

/* 5. CÓMO FUNCIONA (ILUSTRACIÓN DE ENCHUFE DE CORRIENTE CON RAYO SEGÚN REFERENCIA) */
.process-section {
  padding: 4.5rem 0;
  background: rgba(20, 21, 24, 0.7);
  border-top: var(--border-ink);
  border-bottom: var(--border-ink);
  backdrop-filter: blur(8px);
}

.section-header-artisan {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-tag-artisan {
  color: var(--yellow-solid);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.3rem;
}

.section-title-artisan {
  font-family: var(--font-rounded);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.process-grid-artisan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}

.process-box-artisan {
  background: var(--bg-card-white);
  color: var(--text-dark);
  border: var(--border-ink);
  border-radius: var(--radius-rubber-1);
  padding: 2.6rem 1.75rem 2.25rem 1.75rem;
  position: relative;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-rubber);
}

.process-box-artisan:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: var(--shadow-rubber-hover);
}

.plug-header-wrapper {
  position: absolute;
  top: -28px;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 10;
}

.plug-illustration {
  filter: drop-shadow(3px 3px 0px #000000);
  transform: rotate(-14deg);
  transition: var(--transition-bounce);
}

.process-box-artisan:hover .plug-illustration {
  transform: rotate(-4deg) scale(1.15);
}

.plug-step-title {
  background: var(--yellow-solid);
  color: #000000;
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.35rem 0.95rem;
  border-radius: 14px;
  border: 3px solid #000000;
  box-shadow: 3.5px 3.5px 0px #000000;
  transform: rotate(-2deg);
}

.process-box-title {
  font-family: var(--font-rounded);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.process-box-desc {
  font-size: 0.95rem;
  color: #334155;
  padding-right: 3rem;
}

.card-corner-icon {
  position: absolute;
  bottom: 14px;
  right: 18px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 2.6rem;
  color: var(--yellow-solid);
  filter: drop-shadow(3px 3.5px 0px #000000);
  transform: rotate(6deg);
  transition: var(--transition-bounce);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-box-artisan:hover .card-corner-icon {
  transform: rotate(-8deg) scale(1.22);
  filter: drop-shadow(4px 5px 0px #000000);
}

/* 6. CATÁLOGO DE SERVICIOS - ÍCONOS TRANSPARENTES SIN FONDO Y PIXELADOS */
.services-section {
  padding: 5rem 0;
}

.services-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.85rem;
}

.service-card-artisan {
  background: var(--bg-card-white);
  color: var(--text-dark);
  border: var(--border-ink);
  border-radius: var(--radius-rubber-2);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-bounce);
  position: relative;
  box-shadow: var(--shadow-rubber);
}

.service-card-artisan.featured {
  background: var(--bg-card-dark);
  color: #ffffff;
}

.sticker-popular {
  position: absolute;
  top: -14px;
  right: 1.25rem;
  background: var(--red-solid);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  border: var(--border-ink-thin);
  transform: rotate(3deg);
  box-shadow: 3px 3px 0px #000;
}

.service-card-artisan:hover {
  transform: translateY(-6px) rotate(1.5deg);
  box-shadow: var(--shadow-rubber-hover);
}

.service-icon-box.transparent-pixel-icon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.pixel-hand-power {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  filter: drop-shadow(3.5px 3.5px 0px #000000);
  transition: var(--transition-bounce);
}

.pixel-hand-power .power-btn-icon {
  font-size: 2.5rem;
  color: var(--red-solid);
}

.pixel-hand-power .hand-btn-icon {
  position: absolute;
  bottom: -10px;
  right: -14px;
  font-size: 1.65rem;
  color: var(--yellow-solid);
  transform: rotate(-25deg);
  filter: drop-shadow(2px 2px 0px #000000);
}

.pixel-ps-controller {
  font-size: 2.85rem;
  color: var(--yellow-solid);
  filter: drop-shadow(3.5px 3.5px 0px #000000);
  transform: rotate(-4deg);
  transition: var(--transition-bounce);
}

.pixel-laptop {
  font-size: 2.85rem;
  color: var(--cyan-solid);
  filter: drop-shadow(3.5px 3.5px 0px #000000);
  transform: rotate(3deg);
  transition: var(--transition-bounce);
}

.pixel-robot-speech {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 2.5rem;
  filter: drop-shadow(3.5px 3.5px 0px #000000);
  transition: var(--transition-bounce);
}

.pixel-robot-speech .robot-icon {
  font-size: 2.6rem;
  color: var(--blue-solid);
}

.pixel-robot-speech .cloud-icon {
  position: absolute;
  top: -12px;
  right: -18px;
  font-size: 1.55rem;
  color: var(--yellow-solid);
  filter: drop-shadow(2px 2px 0px #000000);
  transform: rotate(10deg);
}

.service-card-artisan:hover .pixel-hand-power,
.service-card-artisan:hover .pixel-ps-controller,
.service-card-artisan:hover .pixel-laptop,
.service-card-artisan:hover .pixel-robot-speech {
  transform: scale(1.15) rotate(-4deg);
}

.service-title-artisan {
  font-family: var(--font-rounded);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.service-desc-artisan {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 1.5rem;
}

.service-card-artisan.featured .service-desc-artisan {
  color: #cbd5e1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 2.5px dashed rgba(0, 0, 0, 0.15);
}

.service-card-artisan.featured .service-meta {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.meta-status {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--green-wa-solid);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--blue-solid);
  color: #ffffff;
  border: var(--border-ink);
  border-radius: var(--radius-rubber-1);
  padding: 0.8rem 1rem;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 3px 3px 0px #000;
  transition: var(--transition-bounce);
}

.service-card-artisan.featured .service-cta-link {
  background: var(--green-wa-solid);
  color: #000000;
}

.service-card-artisan:hover .service-cta-link {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 5px 5px 0px #000;
}

/* 7. VENTAJAS COMPETITIVAS (ÍCONOS TRANSPARENTES SIN FONDO CON DROP SHADOW POP) */
.why-section {
  padding: 4.5rem 0;
  background: rgba(20, 21, 24, 0.7);
  border-top: var(--border-ink);
  backdrop-filter: blur(8px);
}

.why-grid-artisan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-box-artisan {
  background: var(--bg-card-white);
  color: var(--text-dark);
  border: var(--border-ink);
  border-radius: var(--radius-rubber-1);
  padding: 1.85rem;
  box-shadow: var(--shadow-rubber);
  transition: var(--transition-bounce);
}

.why-box-artisan:hover {
  transform: translateY(-5px) rotate(-1.5deg);
  box-shadow: var(--shadow-rubber-hover);
}

.why-icon-artisan {
  font-size: 2.6rem;
  color: var(--yellow-solid);
  margin-bottom: 0.85rem;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: drop-shadow(3px 3.5px 0px #000000);
  transition: var(--transition-bounce);
}

.why-box-artisan:hover .why-icon-artisan {
  transform: scale(1.15) rotate(-5deg);
}

.why-title-artisan {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.why-desc-artisan {
  font-size: 0.9rem;
  color: #334155;
}

/* 8. MÉTODOS DE PAGO LOCALES (ÍCONOS TRANSPARENTES SIN CUADRO) */
.payments-section {
  padding: 4.5rem 0;
  border-top: var(--border-ink);
}

.payment-grid-artisan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.payment-card-artisan {
  background: var(--bg-card-white);
  color: var(--text-dark);
  border: var(--border-ink);
  border-radius: var(--radius-rubber-2);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-rubber);
  transition: var(--transition-bounce);
}

.payment-card-artisan:hover {
  transform: translateY(-5px) rotate(1.5deg);
  box-shadow: var(--shadow-rubber-hover);
}

/* REMOVIENDO EL CUADRO VERDE DETRÁS DE LOS ÍCONOS DE PAGO */
.payment-icon-artisan {
  width: auto;
  height: auto;
  margin: 0 auto 0.85rem auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: var(--yellow-solid);
  font-size: 2.6rem;
  filter: drop-shadow(3px 3.5px 0px #000000);
  transition: var(--transition-bounce);
}

.payment-card-artisan:hover .payment-icon-artisan {
  transform: scale(1.15) rotate(4deg);
}

.payment-title-artisan {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.payment-detail-artisan {
  font-size: 0.9rem;
  font-weight: 800;
  color: #000000;
  background: var(--yellow-solid);
  padding: 0.4rem 0.85rem;
  border-radius: 12px;
  display: inline-block;
  border: 2px solid #000;
}

/* 9. TESTIMONIOS CON ESTRELLAS */
.reviews-section {
  padding: 4.5rem 0;
  background: rgba(20, 21, 24, 0.7);
  border-top: var(--border-ink);
  backdrop-filter: blur(8px);
}

.reviews-grid-artisan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.review-card-artisan {
  background: var(--bg-card-white);
  color: var(--text-dark);
  border: var(--border-ink);
  border-radius: var(--radius-rubber-1);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-rubber);
}

.stars-artisan {
  color: var(--yellow-solid);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  filter: drop-shadow(1.5px 1.5px 0px #000);
}

.review-text-artisan {
  font-size: 0.95rem;
  color: #1e293b;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
}

.reviewer-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 2.5px dashed rgba(0, 0, 0, 0.15);
}

.avatar-stamp {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-solid);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #000;
  box-shadow: 2.5px 2.5px 0px #000;
}

.reviewer-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.reviewer-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 10. PREGUNTAS FRECUENTES (FAQ ACCORDION) */
.faq-section {
  padding: 4.5rem 0;
}

.faq-container-artisan {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item-artisan {
  background: var(--bg-card-white);
  color: var(--text-dark);
  border: var(--border-ink);
  border-radius: var(--radius-rubber-1);
  overflow: hidden;
  box-shadow: var(--shadow-rubber);
  transition: var(--transition-bounce);
}

.faq-item-artisan[open] {
  box-shadow: var(--shadow-rubber-hover);
}

.faq-question-artisan {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
  color: var(--text-dark);
}

.faq-question-artisan::-webkit-details-marker { display: none; }

.faq-question-artisan::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--red-solid);
  transition: transform 0.3s ease;
}

.faq-item-artisan[open] .faq-question-artisan::after {
  transform: rotate(180deg);
}

.faq-answer-artisan {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 2.5px dashed rgba(0, 0, 0, 0.15);
  padding-top: 1rem;
  font-weight: 600;
}

/* 11. COMUNIDAD INSTAGRAM (ÍCONO TRANSPARENTE SIN FONDO) */
.social-section {
  padding: 3rem 0 5rem 0;
}

.ig-card-artisan {
  background: var(--yellow-solid);
  color: #000000;
  border: var(--border-ink);
  border-radius: var(--radius-rubber-2);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-rubber);
}

.ig-badge-icon {
  width: auto;
  height: auto;
  margin: 0 auto 1.25rem auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: var(--red-solid);
  font-size: 3.2rem;
  filter: drop-shadow(4px 4px 0px #000000);
}

.btn-ig-giant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
  background: var(--red-solid);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1.15rem 2rem;
  border-radius: var(--radius-rubber-1);
  border: var(--border-ink);
  box-shadow: 5px 5px 0px #000;
  transition: var(--transition-bounce);
}

.btn-ig-giant:hover {
  transform: translate(-3px, -3px) rotate(-2deg);
  box-shadow: 8px 8px 0px #000;
}

.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 66px;
  height: 66px;
  background: var(--green-wa-solid);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  border: var(--border-ink);
  box-shadow: 5px 5px 0px #000;
  z-index: 999;
  animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* 12. FOOTER RUBBER HOSE COMPLETO */
.footer {
  background: rgba(14, 15, 18, 0.98);
  color: #ffffff;
  border-top: var(--border-ink);
  padding: 4rem 0 2rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-rounded);
  color: var(--yellow-solid);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-menu a {
  color: #ffffff;
  font-weight: 700;
  transition: var(--transition-bounce);
}

.footer-menu a:hover {
  color: var(--yellow-solid);
}

.footer-copy {
  border-top: 2.5px dashed rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* 13. MEDIA QUERIES (DESKTOP & TABLET ENHANCEMENTS) */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .process-grid-artisan {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid-artisan {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .services-bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
