html {
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Lato', Arial, sans-serif;
    scroll-behavior: smooth;
}
    
*,
*::after,
*::before {
   box-sizing: inherit;
}
    
body {
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p{
    padding: 0;
    margin: 0;
}

section, main, header{
    position: relative;
}

/* ===========================
   HEADER GENERAL
   =========================== */
.header {
    position: relative;
    /*height: 60vh;*/
    min-height: 500px;
    width: 100%;
    background: url('../img/bg-header-morales-salinas.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 50px 5% 9%;
}

/* Overlay */
.header-overlay {
    position: absolute;
    inset: 0;
    background: #03233fa1; /* azul fuerte con transparencia */
    z-index: 1;
}

/* Contenedor principal */
.header-container {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* ===========================
   LADO IZQUIERDO
   =========================== */
.header-left {
    width: 50%;
}

.header-logo {
    width: 250px;
    margin-bottom: 15px;
}

.header-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.header-title span {
    color: #f4d16a; /* dorado */
}

.header-text {
    font-size: 1.1rem;
    max-width: 450px;
    margin-bottom: 25px;
}

/* ===========================
   FORMULARIO
   =========================== */
.header-right {
    width: 40%;
}

.header-form {
    background: #021c4470; /* azul con leve transparencia */
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #d4af37; /* dorado */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-form-title {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.header-form input,
.header-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.header-form textarea {
    height: 90px;
    resize: none;
}

.header-form-btn {
    margin-top: 5px;
    padding: 12px;
    background: #d4af37; /* dorado */
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.header-form-btn:hover {
    background: #f4d16a;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .header {
        height: auto;
        padding: 60px 5% 80px;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-left,
    .header-right {
        width: 100%;
    }

    .header-left {
        order: 1;
    }

    .header-right {
        order: 2;
        margin-top: 25px;
    }

    .header-logo {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 1.8rem;
    }

    .header-form {
        padding: 20px;
    }
}

/* Contenedor de las tarjetas */
.top-cards {
  width: 90%;
  max-width: 1200px;
  z-index: 500;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.top-cards-container{
    position: relative;
    display: flex;
    justify-content: space-evenly;
    gap: 50px;
    top: -70px;
}

/* Tarjetas */
.top-cards .top-cards-container .card {
  background: #032b52e3; /* azul grisáceo transparente */
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  text-align: left;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.25s ease;
}

.top-cards .card:hover {
  transform: translateY(-8px);
}

.top-cards h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #d4af37;
  text-align: center;
}

.top-cards p {
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}

/* Responsivo */
@media (max-width: 900px) {
  .top-cards-container {
    flex-direction: column;
    top: -50px;
    gap: 30px;
  }

  .top-cards .card {
    text-align: center;
  }
}


/* SECTION GENERAL */
.especializados {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 8%;
  align-items: center;
  background: linear-gradient(135deg, #203040, #31465a);
  color: #fff;
  position: relative;
}

/* IMÁGENES DINÁMICAS */
.especializados-img {
  position: relative;
  width: 100%;
}

.especializados-img .img-pc {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.especializados-img .img-movil {
  width: 100%;
  border-radius: 16px;
  display: none;
}

/* ARTÍCULOS */
.especializados-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.serv-card {
  background: rgba(255,255,255,0.05);
  padding: 25px 30px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.serv-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* TITULOS */
.serv-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #d4af37; /* DORADO */
}

/* TEXTOS */
.serv-card .desc,
.serv-card .objetivo,
.serv-card .gancho {
  line-height: 1.5;
  margin-bottom: 12px;
  font-size: 1rem;
}

/* SUBSERVICIOS */
.subservicios {
  margin: 10px 0 15px;
  padding-left: 20px;
}

.subservicios li {
  margin-bottom: 6px;
  color: #e0e6ee;
}

/* BOTÓN DORADO */
.btn-gold {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #d4af37;
  color: #203040;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background: #b9962d;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .especializados {
    grid-template-columns: 1fr;
    padding: 60px 5%;
  }

  .especializados-img .img-pc {
    display: none;
  }

  .especializados-img .img-movil {
    display: block;
  }

  .especializados-content {
    margin-top: 20px;
  }
}


/* SECCIÓN PROPUESTA DE VALOR */
.pvalor {
    padding: 30px 0;
    background: #f5f7fa;
}

.pvalor-container {
    width: min(1200px, 90%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* TÍTULO */
.pvalor-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #0d1b3d;
}

.pvalor-title span {
    color: #0b4dc7;
    position: relative;
}

.pvalor-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 4px;
    background: #0b4dc7;
    border-radius: 2px;
}

/* TEXTO PRINCIPAL */
.pvalor-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* GRID DE TARJETAS */
.pvalor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* TARJETA TIPO CRISTAL */
.pvalor-card {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pvalor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ICONO */
.pvalor-icon {
    width: 50px;
    height: auto;
    margin-bottom: 12px;
}

/* TÍTULO DE CADA TARJETA */
.pvalor-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0b4dc7;
}

/* TEXTO TARJETA */
.pvalor-card p {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #333;
}

/* IMAGEN DERECHA */
.pvalor-right .pvalor-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pvalor-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pvalor-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pvalor-right {
        order: -1;
        margin-bottom: 35px;
    }

    .pvalor-title span::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 650px) {
    .pvalor-grid {
        grid-template-columns: 1fr;
    }
}

/* SECCIÓN PROCESO */
.proceso {
    background: #f0f4f9;
    padding: 80px 0;
}

.proceso-container {
    width: min(1200px, 90%);
    margin: auto;
    text-align: center;
}

/* TÍTULO */
.proceso-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: #0d1b3d;
}

.proceso-title span {
    color: #0b4dc7;
}

/* CONTENEDOR DE LOS PASOS */
.proceso-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
}

/* CAJAS DE LOS PASOS */
.proceso-step {
    background: rgba(15, 41, 90, 0.90);
    color: #fff;
    padding: 25px;
    border-radius: 14px;
    width: 250px;
    text-align: left;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.proceso-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.proceso-step p {
    font-size: 0.95rem;
    line-height: 1.45;
}

/* FLECHAS ENTRE LOS PASOS */
.proceso-arrow {
    font-size: 2rem;
    font-weight: bold;
    color: #0b4dc7;
    margin: 0 10px;
}

/* CTA PERSUASIVO */
.proceso-cta-text {
    margin-top: 50px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

/* BOTÓN CTA */
.proceso-btn {
    display: inline-block;
    margin-top: 15px;
    background: #0b4dc7;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
}

.proceso-btn:hover {
    background: #092f7a;
}

/* RESPONSIVE — MOVILES */
@media (max-width: 900px) {

    .proceso-steps {
        flex-direction: column;
        gap: 30px;
    }

    .proceso-step {
        width: 100%;
        max-width: 350px;
        text-align: center;
    }

    .proceso-arrow {
        transform: rotate(90deg); /* flecha hacia abajo */
        font-size: 2.2rem;
    }
}

/* ===============================
   HEADER TRABAJADORES
================================ */

.header-trabajadores {
    position: relative;
    min-height: 100vh;
    background: url("../img/bg-header-trabajadores.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.header-trabajadores-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
}

.header-trabajadores-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===============================
   CONTENIDO PRINCIPAL
================================ */

.header-trabajadores-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-trabajadores-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.header-trabajadores-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 520px;
}

.header-trabajadores-subtitle strong {
    color: #f5c77a;
}

/* ===============================
   BOTÓN WHATSAPP
================================ */

.header-trabajadores-btn {
    display: inline-block;
    background: #25d366;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.header-trabajadores-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* ===============================
   TESTIMONIOS
================================ */

.header-trabajadores-testimonios {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.header-trabajadores-testimonio {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #f5c77a;
    padding: 20px;
    border-radius: 4px;
}

.header-trabajadores-testimonio-texto {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.header-trabajadores-testimonio-autor {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f5c77a;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .header-trabajadores-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-trabajadores-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .header-trabajadores {
        min-height: auto;
    }

    .header-trabajadores-container {
        padding: 60px 16px;
    }

    .header-trabajadores-title {
        font-size: 2rem;
    }

    .header-trabajadores-subtitle {
        font-size: 1rem;
    }

    .header-trabajadores-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   PROBLEMAS DEL TRABAJADOR
================================ */

.trabajadores-problemas {
    padding: 100px 20px;
    background: #f7f7f7;
}

.trabajadores-problemas-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trabajadores-problemas-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.trabajadores-problemas-title span {
    color: #b8903e;
}

.trabajadores-problemas-subtitle {
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.6;
    color: #444;
}

/* GRID */

.trabajadores-problemas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */

.trabajadores-problemas-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.trabajadores-problemas-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #b8903e;
    border-radius: 10px 0 0 10px;
}

.trabajadores-problemas-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.trabajadores-problemas-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.trabajadores-problemas-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .trabajadores-problemas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trabajadores-problemas {
        padding: 70px 16px;
    }

    .trabajadores-problemas-title {
        font-size: 2rem;
    }

    .trabajadores-problemas-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   RIESGOS POR NO ACTUAR
================================ */

.trabajadores-riesgos {
    padding: 100px 20px;
    background: #111;
    color: #ffffff;
}

.trabajadores-riesgos-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trabajadores-riesgos-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.trabajadores-riesgos-title span {
    color: #f5c77a;
}

.trabajadores-riesgos-subtitle {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 60px;
    color: #cccccc;
}

/* LISTA DE RIESGOS */

.trabajadores-riesgos-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trabajadores-riesgos-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trabajadores-riesgos-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(6px);
}

.trabajadores-riesgos-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 4px;
}

.trabajadores-riesgos-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.trabajadores-riesgos-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #dddddd;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 576px) {
    .trabajadores-riesgos {
        padding: 70px 16px;
    }

    .trabajadores-riesgos-title {
        font-size: 2rem;
    }

    .trabajadores-riesgos-item {
        padding: 20px;
    }
}

/* ===============================
   CÓMO TE APOYAMOS + CTA
================================ */

.trabajadores-apoyo {
    padding: 100px 20px;
    background: #ffffff;
}

.trabajadores-apoyo-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trabajadores-apoyo-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.trabajadores-apoyo-title span {
    color: #b8903e;
}

.trabajadores-apoyo-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto 70px;
    color: #444;
}

/* STEPS */

.trabajadores-apoyo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.trabajadores-apoyo-step {
    background: #f7f7f7;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.trabajadores-apoyo-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.trabajadores-apoyo-step-num {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    background: #b8903e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-bottom: 15px;
}

.trabajadores-apoyo-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.trabajadores-apoyo-step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* CTA */

.trabajadores-apoyo-cta {
    background: #111;
    padding: 50px 30px;
    border-radius: 14px;
    color: #ffffff;
}

.trabajadores-apoyo-cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.trabajadores-apoyo-cta-btn {
    display: inline-block;
    background: #25d366;
    color: #000;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trabajadores-apoyo-cta-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .trabajadores-apoyo-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trabajadores-apoyo {
        padding: 70px 16px;
    }

    .trabajadores-apoyo-title {
        font-size: 2rem;
    }

    .trabajadores-apoyo-steps {
        grid-template-columns: 1fr;
    }

    .trabajadores-apoyo-cta-text {
        font-size: 1.05rem;
    }

    .trabajadores-apoyo-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   TESTIMONIOS SLIDER
================================ */

.trabajadores-testimonios {
    padding: 100px 20px;
    background: #f7f7f7;
}

.trabajadores-testimonios-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trabajadores-testimonios-experiencia {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #333;
}

.trabajadores-testimonios-experiencia strong {
    color: #b8903e;
}

.trabajadores-testimonios-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 50px;
}

.trabajadores-testimonios-title span {
    color: #b8903e;
}

/* SLIDER */

.trabajadores-testimonios-slider {
    position: relative;
}

.trabajadores-testimonios-slide {
    display: none;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.trabajadores-testimonios-slide.active {
    display: block;
}

.trabajadores-testimonios-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.trabajadores-testimonios-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #777;
}

/* FLECHAS */

.trabajadores-testimonios-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

.trabajadores-testimonios-arrow.prev {
    left: -20px;
}

.trabajadores-testimonios-arrow.next {
    right: -20px;
}

/* DOTS */

.trabajadores-testimonios-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.trabajadores-testimonios-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
}

.trabajadores-testimonios-dot.active {
    background: #b8903e;
}

/* ===============================
   FAQ LEGALES
================================ */

.trabajadores-faq {
    padding: 100px 20px;
    background: #ffffff;
}

.trabajadores-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.trabajadores-faq-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.trabajadores-faq-title span {
    color: #b8903e;
}

/* ACORDEÓN */

.trabajadores-faq-item {
    border-bottom: 1px solid #ddd;
}

.trabajadores-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.trabajadores-faq-question::after {
    content: "+";
    position: absolute;
    right: 10px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.trabajadores-faq-item.active .trabajadores-faq-question::after {
    content: "–";
}

.trabajadores-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.trabajadores-faq-answer p {
    padding: 0 10px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* ===============================
   CTA FINAL
================================ */

.footer-cta {
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.footer-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-cta-title span {
    color: #f5c77a;
}

.footer-cta-text {
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.footer-cta-btn {
    display: inline-block;
    background: #25d366;
    color: #000;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
}

/* ===============================
   FOOTER
================================ */

.footer {
    background: #0d0d0d;
    color: #ccc;
    padding: 70px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-socials img {
    width: 28px;
}

.footer-legal-links,
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-legal-links li,
.footer-links li {
    margin-bottom: 8px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #f5c77a;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

/* ===============================
   WHATSAPP STICKY
================================ */

.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    border-radius: 50%;
    padding: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 999;
}

.whatsapp-sticky img {
    width: 32px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}


/* ================= NAV ================= */

.nav {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo img {
    height: 48px;
    width: auto;
}

/* LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f1c2e;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0077b6;
}

/* BOTÓN MOBILE */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #0f1c2e;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-links li {
        border-top: 1px solid #f0f0f0;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
    }

    .nav-links.active {
        max-height: 400px;
    }
}
