/* =====================
   estilos.css — HumanTeam
   Minimalista · Azul corporativo
===================== */

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --primary:       #1712AA;
  --primary-dark:  #05043B;
  --primary-mid:   #2A23C4;
  --accent:        #4C44FF;
  --light:         #FFFFFF;
  --gray-50:       #F7F8FC;
  --gray-100:      #ECEEF5;
  --gray-400:      #9197B3;
  --gray-800:      #1A1D2E;
  --text:          #1A1D2E;
  --text-muted:    #5A5F7D;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --shadow-sm:     0 2px 8px rgba(23,18,170,0.07);
  --shadow-md:     0 8px 32px rgba(23,18,170,0.12);
  --transition:    0.25s ease;
}

/* BASE */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  letter-spacing: -0.02em;
  
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* =====================
   HEADER (de indexnuevo)
===================== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================
   REDES SOCIALES EN HEADER
===================== */
.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  padding-left: 20px;
  border-left: 1px solid var(--gray-100);
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  padding: 7px;
  box-sizing: border-box;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.header-social a:hover {
  background: var(--gray-100);
  border-color: rgba(76, 68, 255, 0.2);
  transform: translateY(-2px);
}

.header-social a img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  display: block;
}



/* =====================
   HERO — imagen de fondo
===================== */
.lb-hero-index {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  hyphens: none;

  /* Imagen de fondo: reemplazá por la ruta real */
  background-image:
    linear-gradient(
      to right,
      rgba(5, 4, 59, 0.88) 0%,
      rgba(23, 18, 170, 0.72) 55%,
      rgba(23, 18, 170, 0.30) 100%
    ),
    url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


.lb-hero-contable {
  background-image: 
  linear-gradient(
      to right,
      rgba(5, 4, 59, 0.88) 0%,
      rgba(23, 18, 170, 0.72) 55%,
      rgba(23, 18, 170, 0.30) 100%
    ),
    url('../img/contable.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Línea decorativa sutil izquierda */
.lb-hero-contable::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 60%;
  width: 3px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  opacity: 0.7;
}

.lb-hero-container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 0 80px;
}

.lb-hero-text {
  max-width: 600px;
  hyphens: none;
}

.lb-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.18;
}

.lb-hero-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 480px;
}

/* =====================
   BOTÓN
===================== */
.btn,
.lb-btn {
  display: inline-block;
  padding: 13px 30px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover,
.lb-btn:hover {
  background: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 68, 255, 0.35);
}

.btn:active,
.lb-btn:active {
  transform: translateY(0);
}

/* Botón hero */
.lb-hero-text .btn {
  background: #FFFFFF;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.lb-hero-text .btn:hover {
  background: var(--accent);
  color: #fff;
}
.plan-text .btn {
  align-self: flex-start;
  padding: 9px 20px;
  font-size: 13px;
}

/* =====================
   SECCIÓN POR QUÉ ELEGIRNOS
===================== */
.seccion-como-trabajamos {
  padding: 72px 0;
  background: var(--gray-50);
}

.seccion-como-trabajamos .servicios-base {
  width: 90%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.seccion-como-trabajamos h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.seccion-como-trabajamos h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.seccion-como-trabajamos p,
.servicios-contables p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =====================
   SECCIÓN SERVICIOS (cards)
===================== */
.section {
  padding: 88px 0;
}

.section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 48px;
  text-align: center;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--light);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(76, 68, 255, 0.2);
}

/* Línea de color superior en card */
.card::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =====================
   SECCIÓN CONTACTO
===================== */
.lb-section,
.section.dark {
  padding: 88px 0;
  background: var(--primary-dark);
  color: #fff;
}

.lb-section h2,
.section.dark h2 {
  color: #fff;
}

.lb-section h2::after,
.section.dark h2::after {
  background: var(--accent);
}

/* Formulario */
.lb-form,
.form {
  max-width: 640px;
  margin: 0 auto;
}

.lb-form-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

input,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.11);
}

textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 20px;
}

/* =====================
   WHATSAPP FLOTANTE 
===================== */
.wpp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.wpp:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* =====================
   PLANES (cards horizontales)
===================== */
.planes-lista {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(76, 68, 255, 0.2);
}

.plan-img {
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}

.plan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan-text {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.plan-text::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.plan-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  margin: 0;
}

.plan-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-form-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    grid-template-columns: 1fr;
  }

  .plan-img {
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }

  .nav.active {
    display: flex;
  }

  /* Redes sociales en mobile: centradas, debajo de "Contacto" */
  .header-social {
    border-left: none;
    border-top: 1px solid var(--gray-100);
    padding-left: 0;
    padding-top: 16px;
    margin-left: 0;
    margin-top: 4px;
    justify-content: center;
    gap: 14px;
    width: 100%;
  }

  .header-social a {
    width: 38px;
    height: 38px;
  }

  .header-social a img {
    width: 19px;
    height: 19px;
  }

  .hamburger {
    display: flex;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .lb-hero-text h1 {
    font-size: 1.75rem;
  }

  .lb-hero-contable {
    background-attachment: scroll;
  }
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.wpp {
  width: 55px;
  height: 55px;
  padding: 10px;
}

.wpp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =====================
   CARDS IMAGENES  (estilo imagen)
===================== */

.colegiacion-section {
  padding: 88px 0;
  background: var(--gray-50);
  text-align: center;
}

.colegiacion-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 48px;
  position: relative;
}

.colegiacion-section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* GRID 2 columnas */
.colegiacion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD */
.colegiacion-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.colegiacion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* IMAGEN */
.colegiacion-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* OVERLAY OSCURO */
.colegiacion-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 59, 0.45);
  transition: background var(--transition);
}

.colegiacion-card:hover .overlay {
  background: rgba(5, 4, 59, 0.65);
}

/* TEXTO */
.colegiacion-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border: 1.5px solid var(--accent);
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .colegiacion-grid {
    grid-template-columns: 1fr;
  }

  .colegiacion-card img {
    height: 260px;
  }
}



 /* ============================================
       ESTILOS ESPECÍFICOS DE RRHH
       (complementan estilos2.css sin pisarlos)
    ============================================ */

    /* ============================================
   HERO RRHH CAROUSEL
============================================ */

.lb-hero-rrhh{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Línea decorativa izquierda */
.lb-hero-rrhh::before{
  content:'';
  position:absolute;
  left:0;
  top:10%;
  height:60%;
  width:3px;
  background: var(--accent);
  border-radius:0 2px 2px 0;
  opacity:.7;
  z-index:20;
}

/* SLIDES */
.hero-slide{
  position:absolute;
  inset:0;

  display:flex;
  align-items:center;

  opacity:0;
  visibility:hidden;

  transform: scale(1.05);

  transition:
    opacity 1.4s ease,
    transform 6s ease;

  z-index:1;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;

  transform: scale(1);

  z-index:2;
}
/* Animación texto */

.hero-slide .lb-hero-text{
  opacity:0;
  transform: translateY(30px);

  transition:
    opacity 1s ease,
    transform 1s ease;
}

.hero-slide.active .lb-hero-text{
  opacity:1;
  transform: translateY(0);
}

/* FONDO */
.hero-bg{
  position:absolute;
  inset:0;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  z-index:0;
}

/* Overlay */
.hero-bg::after{
  content:'';
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to right,
      rgba(5,4,59,.90) 0%,
      rgba(23,18,170,.74) 55%,
      rgba(23,18,170,.28) 100%
    );
}

/* CONTENIDO */
.hero-slide .lb-hero-container{
  position:relative;
  z-index:5;

  width:90%;
  max-width:1140px;

  margin:0 auto;
}

.hero-slide .lb-hero-text{
  max-width:620px;
}

/* Eyebrow */
.lb-eyebrow{
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;

  color: var(--accent);

  background: rgb(241,241,247);

  border:1px solid rgba(76,68,255,.3);

  padding:5px 14px;

  border-radius:100px;

  margin-bottom:20px;
}

/* TITULO */
.hero-slide .lb-hero-text h1{
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-0.03em;

  color:#fff;

  margin-bottom:24px;
}

/* TEXTO */
.hero-slide .lb-hero-text p{
  font-size:1.05rem;
  line-height:1.8;

  color: rgba(255,255,255,.82);

  margin-bottom:36px;

  max-width:540px;
}

/* BOTÓN */
.hero-slide .lb-hero-text .btn{
  background:#fff;
  color: var(--primary-dark);

  box-shadow:0 4px 16px rgba(0,0,0,.18);
}

.hero-slide .lb-hero-text .btn:hover{
  background: var(--accent);
  color:#fff;
}

/* DOTS */
.hero-dots{
  position:absolute;

  bottom:35px;
  left:50%;

  transform:translateX(-50%);

  display:flex;
  gap:10px;

  z-index:30;
}

.hero-dot{
  width:12px;
  height:12px;

  border-radius:50%;

  background: rgba(255,255,255,.35);

  transition:.3s ease;
}

.hero-dot.active{
  background:#fff;
  transform:scale(1.15);
}

/* RESPONSIVE */
@media(max-width:768px){

  .lb-hero-rrhh{
    height:auto;
    min-height:100vh;
  }

  .hero-slide{
    min-height:100vh;
    padding:120px 0 80px;
  }

  .hero-slide .lb-hero-text h1{
    font-size:2.5rem;
    line-height:1.1;
  }

  .hero-slide .lb-hero-text p{
    font-size:1rem;
  }

}
    .lb-hero-rrhh {
  position: relative;
  overflow: hidden;
}



.lb-hero-container {
  position: relative;
  z-index: 1;
}

    /* --- SECCIÓN PROBLEMA (dark) --- */
    .seccion-problema {
      padding: 72px 0;
      background: var(--primary-dark);
      color: #fff;
      text-align: center;
    }

    .seccion-problema .servicios-base {
      width: 90%;
      max-width: 680px;
      margin: 0 auto;
    }

    .seccion-problema h2 {
      font-size: 1.9rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .seccion-problema h2::after {
      content: '';
      display: block;
      width: 40px;
      height: 3px;
      background: var(--accent);
      margin: 12px auto 0;
      border-radius: 2px;
    }

    .seccion-problema p {
      font-size: 1rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    /* --- SECCIÓN ENFOQUE (damero) --- */
    .seccion-enfoque {
      padding: 88px 0;
      background: var(--light);
    }

    .damero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .damero-img img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      display: block;
      box-shadow: var(--shadow-md);
    }

    .damero-text h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary-dark);
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .damero-text h3::before {
      content: '';
      display: block;
      width: 32px;
      height: 3px;
      background: var(--accent);
      border-radius: 2px;
      margin-bottom: 16px;
    }

    .damero-text p {
      font-size: 0.97rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    /* --- SECCIÓN SERVICIOS (cards) sobre fondo gris --- */
    .seccion-servicios-rrhh {
      padding: 88px 0;
      background: var(--gray-50);
    }

    .seccion-servicios-rrhh h2 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-dark);
      text-align: center;
      margin-bottom: 48px;
      position: relative;
    }

    .seccion-servicios-rrhh h2::after {
      content: '';
      display: block;
      width: 40px;
      height: 3px;
      background: var(--accent);
      margin: 14px auto 0;
      border-radius: 2px;
    }

    /* Cards con badge de color arriba */
    .card-rrhh {
      background: var(--light);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .card-rrhh:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(76, 68, 255, 0.22);
    }

    .card-rrhh .card-icon {
      width: 52px;
      height: 52px;
      background: rgba(76, 68, 255, 0.08);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .card-rrhh .card-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--accent);
    }

    .card-rrhh h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--primary-dark);
      letter-spacing: -0.01em;
    }

    .card-rrhh p {
      font-size: 0.91rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    .card-rrhh .btn {
      margin-top: 6px;
      padding: 10px 22px;
      font-size: 13px;
    }

    /* card verde para "búsqueda completa" */
    .card-rrhh .btn-green {
      background: #1aad5e;
    }
    .card-rrhh .btn-green:hover {
      background: #159c54;
    }

    /* --- CTA FINAL --- */
    .seccion-cta {
      padding: 88px 0;
      background: var(--primary-dark);
      text-align: center;
    }

    .seccion-cta .cta-inner {
      width: 90%;
      max-width: 600px;
      margin: 0 auto;
    }

    .seccion-cta h2 {
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 18px;
      position: relative;
      display: inline-block;
    }

    .seccion-cta h2::after {
      content: '';
      display: block;
      width: 40px;
      height: 3px;
      background: var(--accent);
      margin: 12px auto 0;
      border-radius: 2px;
    }

    .seccion-cta p {
      font-size: 1rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /*.btn-wpp {
      background: #25D366 !important;
    }

    .btn-wpp:hover {
      background: #1da955 !important;
    }*/

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
      .damero {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .damero-img img {
        height: 260px;
      }
    }

    @media (max-width: 640px) {
      .lb-hero-rrhh {
        background-attachment: scroll;
      }
      .damero-text h3 {
        font-size: 1.25rem;
      }
    }


/* =========================
   DROPDOWN DESKTOP
========================= */

.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 220px;
  background: #fff;

  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.3s ease;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 14px 18px;
  color: #222;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f5f7fb;
  color: #003287;
}

/* HOVER SOLO DESKTOP */
@media (min-width: 769px) {

  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .nav {
    position: absolute;
    top: 80px;
    right: 20px;

    width: 260px;
    padding: 20px;

    background: #fff;

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    display: none;
    flex-direction: column;
    gap: 15px;

    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    display: block;
  }

  /* DROPDOWN MOBILE */

  .dropdown {
    width: 100%;
  }

  .dropbtn {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-content {
    position: static;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;

    width: 100%;
    margin-top: 10px;

    background: #f7f7f7;

    border-radius: 12px;

    box-shadow: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

}




/* =====================
     SECCIÓN FAQ — con color y efectos
     Requiere: css/estilos2.css
=====================*/

  .seccion-faq {
    padding: 88px 0;
    background: linear-gradient(160deg, var(--gray-50) 0%, #eceef5 60%, #e8eaf8 100%);
    position: relative;
    overflow: hidden;
  }

  .seccion-faq::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76,68,255,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .seccion-faq::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23,18,170,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .seccion-faq .container {
    position: relative;
    z-index: 1;
  }

  .seccion-faq h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 12px;
    position: relative;
  }

  .seccion-faq h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 14px auto 0;
    border-radius: 2px;
  }

  .faq-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.97rem;
    margin-bottom: 48px;
    margin-top: 6px;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }

  .faq-item {
    border: 1.5px solid rgba(76, 68, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition:
      transform var(--transition),
      box-shadow var(--transition),
      border-color var(--transition),
      background var(--transition);
    position: relative;
  }

  .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 2px 0 0 2px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
  }

  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(23,18,170,0.10);
    border-color: rgba(76,68,255,0.28);
    background: rgba(255,255,255,0.96);
  }

  .faq-item.open {
    border-color: rgba(76,68,255,0.30);
    background: #fff;
    box-shadow: 0 8px 28px rgba(23,18,170,0.12);
  }

  .faq-item.open::before {
    transform: scaleY(1);
  }

  .faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
    transition: color var(--transition);
  }

  .faq-trigger:hover { color: var(--primary); }
  .faq-item.open .faq-trigger { color: var(--primary); }

  .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1.5px solid rgba(76,68,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    transition:
      background var(--transition),
      border-color var(--transition),
      transform 0.35s ease,
      color var(--transition);
  }

  .faq-item.open .faq-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
  }

  .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item.open .faq-body { max-height: 300px; }

  .faq-body-inner {
    padding: 14px 22px 20px 26px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.85;
    border-top: 1px solid rgba(76,68,255,0.08);
  }

  .faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(76,68,255,0.10);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 10px;
    transition: background var(--transition), color var(--transition);
  }

  .faq-item.open .faq-num {
    background: var(--accent);
    color: #fff;
  }

  .faq-trigger-text { flex: 1; }

  @media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
    .seccion-faq::before,
    .seccion-faq::after { display: none; }
  }





  /* =========================================================
   CONTACTO
========================================================= */

.lb-contact-section{
  position: relative;
  padding: 120px 20px;
  background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url('../img/contacto-bg.jpg') center center/cover no-repeat;
  overflow: hidden;
}

.lb-contact-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lb-contact-subtitle{
  display: inline-block;
  margin-bottom: 15px;
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
}

.lb-contact-info h2{
  color: #fff;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
}

.lb-contact-info p{
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.lb-contact-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 35px 0;
}

.lb-contact-btn{
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: .3s ease;
  border: 1px solid rgba(255,255,255,.2);
}

.lb-contact-btn:hover{
  transform: translateY(-3px);
}

.lb-contact-btn.whatsapp{
  background: #25D366;
}

.lb-contact-btn.instagram{
  background: linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045);
}

.lb-contact-btn.facebook{
  background: #1877F2;
}
.lb-contact-btn.linkedin{
  background: #0b65c3;
}

.lb-contact-data{
  margin-top: 30px;
}

.lb-contact-data p{
  margin-bottom: 12px;
  font-size: 15px;
}

/* ===== FIX SECCIÓN CONTACTO MOBILE — eliminado, unificado abajo ===== */

/* FORM */

.lb-contact-form{
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px;
}

.lb-form-group{
  margin-bottom: 20px;
}

.lb-form-group input,
.lb-form-group textarea{
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 15px;
  outline: none;
}

.lb-form-group input::placeholder,
.lb-form-group textarea::placeholder{
  color: rgba(255,255,255,.65);
}

.lb-submit-btn{
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #d4af37;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
}

.lb-submit-btn:hover{
  transform: translateY(-2px);
  opacity: .9;
}

/* RESPONSIVE */

@media(max-width: 900px){

  .lb-contact-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lb-contact-info h2{
    font-size: 36px;
  }

  .lb-contact-section{
    padding: 80px 20px;
  }

}

@media(max-width: 600px){

  .lb-contact-info h2{
    font-size: 30px;
  }

  .lb-contact-form{
    padding: 25px;
  }

  /* BOTONES: WhatsApp + Instagram en fila, Facebook centrado abajo */
  .lb-contact-buttons{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

 .lb-contact-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
    align-items:center;
    margin-top:25px;
}

.lb-contact-buttons a{
    min-width:160px;
    text-align:center;
    padding:16px 20px;
    border-radius:40px;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
    font-size:18px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.lb-contact-buttons a:hover{
    transform:translateY(-3px);
    opacity:0.9;
}

@media(max-width:768px){

    .lb-contact-buttons{
        flex-direction:column;
    }

    .lb-contact-buttons a{
        width:90%;
        max-width:320px;
    }

}

  
  

}

/* ===== MOBILE FIXES ===== */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3 {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 768px) {

  .lb-hero-index {
    background-attachment: scroll;
  }

  .lb-hero-rrhh {
    background-attachment: scroll;
  }

  iframe {
    width: 100% !important;
    max-width: 100%;
  }

  .lb-contact-section {
    padding: 60px 16px;
  }

  .lb-contact-form {
    padding: 24px 16px;
  }
}
/* ===== REDES SOCIALES HEADER ===== */

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.social-icons a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* =========================
   HEADER MOBILE
========================= */

@media (max-width: 768px) {

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 15px;
    }

    .social-icons {
        margin-left: 0;
        gap: 8px;
    }

    .social-icons a img {
        width: 22px;
        height: 22px;
    }

}
/****************************************************************/

/* Asegurar visibilidad en móviles */
@media (max-width: 768px) {
  .dropdown.active .dropdown-content {
    display: block !important; /* Fuerza la aparición */
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important; /* Para que empuje el menú hacia abajo */
  }
  
  /* Evitar que el link interior reciba el click antes que el contenedor */
  .dropbtn a {
    pointer-events: none; 
  }
  
  .dropbtn {
    pointer-events: auto;
    cursor: pointer;
  }
}


/*================*************************========= */
.dropdown-arrow{
  font-size: 12px;
}

.dropbtn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  cursor:pointer;
}

:lang(es) {
  hyphens: none;
}