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;
}


/*---------------------------------------
NAV
--------------------------------------------*/

.nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(20, 40, 70, 0.92);
    backdrop-filter: blur(6px);
}

.nav__container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav__logo img {
    height: 42px;
}

/* MENÚ */
.nav__menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav__menu li {
    position: relative;
}

.nav__menu a,
.nav__link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: opacity .3s;
}

.nav__menu a:hover,
.nav__link:hover {
    opacity: .8;
}

/* SUBMENÚ */
.nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 40, 70, 0.95);
    min-width: 230px;
    list-style: none;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
}

.nav__submenu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
}

.nav__submenu li a:hover {
    background: rgba(255,255,255,0.08);
}

.nav__dropdown:hover .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HAMBURGUESA */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav__toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

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

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(20, 40, 70, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: right .4s ease;
        opacity: 0;
        visibility: hidden;
        display: none;
    }

    .nav__menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    .nav__submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
    }

    .nav__dropdown.active .nav__submenu {
        display: block;
    }
}


/* =========================================
   HEADER LANDING – DESPIDO INJUSTIFICADO
========================================= */

.header-landing {
    position: relative;
    height: 65vh;
    min-height: 520px;
    width: 100%;
    background-image: url('../img/bg-despido-injustificado.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* OVERLAY AZUL GRISÁCEO */
.header-landing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(41, 48, 64, 0.92),
        rgba(59, 71, 92, 0.85)
    );
    z-index: 1;
}

/* CONTENEDOR GENERAL */
.header-landing__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* =========================
   LADO IZQUIERDO
========================= */
.header-landing__left h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.15;
}

.header-landing__left p {
    color: #e6e9ef;
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BOTÓN CTA */
.btn-landing-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-landing-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* =========================
   LADO DERECHO (CARDS)
========================= */
.header-landing__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TARJETAS CON EFECTO CRISTAL */
.header-landing__card {
    padding: 22px 26px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
}

.header-landing__card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

/* ENLACES (H2) */
.header-landing__card h2 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.header-landing__card h2 a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.header-landing__card h2 a::after {
    content: " →";
    font-weight: 600;
    opacity: 0.9;
}

/* DESCRIPCIÓN */
.header-landing__card p {
    font-size: 0.95rem;
    color: #e1e4ea;
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .header-landing {
        height: auto;
        padding: 80px 0;
    }

    .header-landing__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-landing__left {
        text-align: center;
    }

    .header-landing__left p {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-landing-whatsapp {
        margin: auto;
    }
}

@media (max-width: 576px) {
    .header-landing__left h1 {
        font-size: 2rem;
    }

    .header-landing__card h2 {
        font-size: 1.05rem;
    }

    .header-landing__card {
        padding: 18px 20px;
    }
}


/*----------------------------------------------------------------------
footer
------------------------------------------------------------------------*/

.whatsapp-float {
    position: fixed;
    bottom: 20%;
    right: 25px;
    width: 60px;
    height: 60px;
    background: url('../img/whatsapp_web.png') no-repeat center center / cover;
    z-index: 999;
}

/* FOOTER */
.footer {
    background: #ffffff;
    border-top: 3px solid #d2ac2c;
    padding: 50px 20px 20px 20px;
    color: #293040;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}


/* Left */
.footer-social img {
    width: 28px;
    margin-right: 10px;
    cursor: pointer;
}


.footer-legales {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.footer-legal-btn {
    padding: 6px 0;
    border-bottom: 2px solid #d2ac2c;
    text-decoration: none;
    color: #293040;
}


/* Center */
.footer-logo {
    width: clamp(280px, 70%, 600px);
    min-width: 280px;
    margin-bottom: 15px;
}


.footer-links li {
    list-style: none;
}


.footer-links a {
    text-decoration: none;
    color: #3b475c;
    line-height: 1.5;
}


/* Right */
.footer-right p {
    margin-bottom: 10px;
}


.footer-ubicacion {
    text-decoration: underline;
    color: #293040;
}


/* Bottom */
.footer-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-top: 1px solid #d2ac2c33;
    padding-top: 15px;
}


.footer-creditos a {
    color: #000;
    text-decoration: none;
}

.footer-left, .footer-center, .footer-rigth{
    width: 33%;
}

@media screen and (max-width: 925px){
    .footer-container {
        flex-direction: column;
    }

    .footer-left, .footer-center, .footer-rigth{
    width: 90%;
    }
}

/* =========================
   SECCIÓN SITUACIONES
========================= */

.situaciones {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.situaciones__container {
    max-width: 1200px;
    margin: 0 auto;
}

.situaciones__title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #1f2933;
}

/* CONTENIDO PRINCIPAL */
.situaciones__content {
    display: flex;
    margin-bottom: 40px;
}

/* LADO IZQUIERDO */
.situaciones__left {
    flex: 1;
    background: #293040; /* azul grisáceo */
    padding: 40px;
    border-radius: 18px 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.situacion-item {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-left: 22px;
}

.situacion-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cfe3f3;
    font-size: 1.5rem;
    line-height: 1;
}

/* LADO DERECHO */
.situaciones__right {
    flex: 1;
    background: #d2ac2c; /* morado */
    padding: 40px;
    border-radius: 0 18px 18px 0;
    display: flex;
    align-items: center;
}

.situaciones__mensaje {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #222;
}

.situaciones__mensaje strong {
    color: #000;
}

/* CTA */
.situaciones__cta {
    text-align: center;
}

.situaciones__btn {
    display: inline-block;
    padding: 16px 40px;
    background: #25d366;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.situaciones__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .situaciones__content {
        flex-direction: column;
    }

    .situaciones__right, .situaciones__left{
        border-radius: 0;
    }

    .situaciones__mensaje {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .situaciones__title {
        font-size: 2rem;
    }

    .situacion-item {
        font-size: 1rem;
    }

    .situaciones__btn {
        width: 100%;
        padding: 16px;
    }
}

/* =========================
   SECCIÓN PERDER - GANAR
========================= */

.perder-ganar {
    padding: 40px 20px;
    background: #ffffff;
}

.perder-ganar__container {
    max-width: 1200px;
    margin: 0 auto;
}

.perder-ganar__title {
    text-align: center;
    font-size: 2.4rem;
    color: #1f2933;
    margin-bottom: 20px;
}

.perder-ganar__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* CONTENIDO */
.perder-ganar__content {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* IMAGEN */
.perder-ganar__image {
    flex: 1;
}

.perder-ganar__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* INFO */
.perder-ganar__info {
    flex: 1;
}

.perder-ganar__subtitle {
    font-size: 1.4rem;
    margin: 30px 0 20px;
}

.perder-ganar__subtitle.perder {
    color: #b91c1c;
}

.perder-ganar__subtitle.ganar {
    color: #047857;
}

/* CARDS */
.perder-ganar__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.perder-ganar__card {
    padding: 20px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* CARDS PERDER */
.perder-card {
    background: #fee2e2;
    color: #7f1d1d;
}

/* CARDS GANAR */
.ganar-card {
    background: #dcfce7;
    color: #065f46;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .perder-ganar__content {
        flex-direction: column;
    }

    .perder-ganar__cards {
        grid-template-columns: 1fr;
    }

    .perder-ganar__subtitle {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .perder-ganar__title {
        font-size: 2rem;
    }

    .perder-ganar__intro {
        font-size: 1rem;
    }
}

/* =========================
   PRUEBA SOCIAL
========================= */

.prueba-social {
    padding:40px 20px;
    background: #f8fafc;
}

.prueba-social__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.prueba-social__title {
    font-size: 2.3rem;
    color: #1f2933;
    margin-bottom: 15px;
}

.prueba-social__intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 50px;
}

/* SLIDER */
.prueba-social__slider {
    position: relative;
    overflow: hidden;
}

.prueba-slides {
    display: flex;
    transition: transform 0.6s ease;
}

/* SLIDE */
.prueba-slide {
    min-width: 100%;
    background: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    text-align: left;
}

.prueba-slide h4 {
    color: #1d4ed8;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.prueba-nombre {
    font-weight: bold;
    margin-bottom: 10px;
}

.prueba-slide p {
    margin: 6px 0;
    color: #374151;
}

/* FLECHAS */
.prueba-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3a8a;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.prueba-arrow.left {
    left: -20px;
}

.prueba-arrow.right {
    right: -20px;
}

/* DOTS */
.prueba-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.prueba-dots span {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
}

.prueba-dots span.active {
    background: #1d4ed8;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .prueba-slide {
        padding: 25px;
    }
}

/* =========================
   CIERRE LANDING - CTA FINAL
========================= */

.cierre-landing {
    width: 100%;
    background: linear-gradient(135deg, #334155, #1e293b);
    padding: 40px 20px;
}

.cierre-landing__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* TEXTO */
.cierre-landing__contenido {
    color: #ffffff;
}

.cierre-landing__texto {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cierre-landing__texto strong {
    color: #facc15; /* dorado */
    font-weight: 600;
}

/* BOTÓN */
.cierre-landing__btn {
    display: inline-block;
    padding: 16px 38px;
    background: #facc15;
    color: #1f2933;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cierre-landing__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(250, 204, 21, 0.4);
}

/* IMAGEN */
.cierre-landing__imagen img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin-left: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cierre-landing__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cierre-landing__imagen img {
        margin: 40px auto 0;
    }

    .cierre-landing__texto {
        font-size: 1.2rem;
    }
}

/* =========================
   SECCIÓN RESPUESTAS
========================= */

.respuestas {
    padding: 40px 20px;
    background: #f8fafc;
}

.respuestas__titulo {
    text-align: center;
    font-size: 2.4rem;
    color: #1f2933;
    margin-bottom: 60px;
    font-weight: 700;
}

/* GRID */
.respuestas__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* TARJETA */
.respuesta-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.respuesta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* TÍTULO */
.respuesta-card h3 {
    font-size: 1.4rem;
    color: #334155;
    margin-bottom: 18px;
}

/* TEXTO */
.respuesta-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 25px;
}

.respuesta-card strong {
    color: #1e293b;
    font-weight: 600;
}

/* BOTÓN */
.respuesta-btn {
    align-self: flex-start;
    padding: 12px 28px;
    background: #1e293b;
    color: #facc15;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.respuesta-btn:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .respuestas__grid {
        grid-template-columns: 1fr;
    }

    .respuesta-card {
        text-align: center;
    }

    .respuesta-btn {
        align-self: center;
    }
}

/* =========================
   FAQ LANDING
========================= */

.faq-landing {
    padding: 90px 20px;
    background: #ffffff;
}

.faq-landing__title {
    text-align: center;
    font-size: 2.3rem;
    color: #1f2933;
    margin-bottom: 60px;
    font-weight: 700;
}

/* GRID */
.faq-landing__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

/* ITEM */
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 20px 22px;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.4rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 22px 18px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .faq-landing__grid {
        grid-template-columns: 1fr;
    }
}
