/* =========================
   COLORES
========================= */

:root {
    --sage: #9caa92;
    --white: #ffffff;
    --gold: #a58350;
    --dark: #333333;
    --light: #f7f6f2;
}


/* =========================
   GENERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
}

p {
    margin-bottom: 15px;
}

span {
    color: var(--gold);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}
main {
    padding-top: 80px;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 8px 4%;
    background-color: var(--white);
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 3px 15px rgba(88, 66, 1, 0.65);
}


/* =========================
   LOGO Y NOMBRE
========================= */

.header-inner h1 {
    font-size: clamp(20px, 1.7vw, 36px);
    line-height: 1.05;
}

.header-inner h1 a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-inner h1 span:last-child {
    font-size: clamp(10px, 0.9vw, 14px);
}

.header-inner img {
    width: clamp(40px, 4vw, 55px);
    height: clamp(40px, 4vw, 55px);
    object-fit: contain;
}

.header-inner h1 span {
    color: var(--dark);
}

.header-inner h1 span:last-child {
    font-family: "Inter", sans-serif;
    font-size: clamp(10px, 1vw, 14px);
    font-weight: 400;
    color: #777777;
}


/* =========================
   MENU
========================= */

.navbar {
    margin-left: auto;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 22px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar a {
    position: relative;
    color: var(--dark);
    text-decoration: none;
    font-size: clamp(13px, 1.2vw, 16px);
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--gold);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}
/* =========================
   MENU HAMBURGUESA
========================= */

.menu-hamburguesa {
    display: none;

    width: 40px;
    height: 40px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.menu-hamburguesa span {
    display: block;

    width: 25px;
    height: 3px;

    background-color: var(--gold);

    border-radius: 5px;

    transition: 0.3s;
}

/* =========================
   BOTONES DEL HEADER
========================= */

.header-acciones {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.modo-btn,
.menu-hamburguesa {
    border: none;
    background: none;
    cursor: pointer;
}

.modo-btn {
    font-size: 18px;
    color: var(--gold);
}

.menu-hamburguesa {
    display: none;
}

/* =========================
   PORTADA
========================= */
.portada-seccion {
    position: relative;
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 50px;

    padding: 120px 8%;

    overflow: hidden;
}

.fondo-abstracto {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    top: 0;
    left: 0;

    z-index: -2;
}

.portada-seccion::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.75);

    z-index: -1;
}


/* TEXTO */

.portada-info {
    max-width: 700px;
}

.portada-info h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.portada-info h2 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
}

.portada-info p {
    font-size: 16px;
    color: #555555;
}


/* ETIQUETAS */

.portada-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    margin: 40px 0;
}

.portada-tags span {
    background-color: var(--white);

    padding: 8px 15px;

    border-radius: 25px;

    font-size: 16px;

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.portada-tags i {
    color: var(--sage);
}


/* IMAGEN */

.imagen-portada {
    width: 100%;
    max-width: 360px;

    border-radius: 35px;

    border: 2.5px solid var(--gold);

    outline: 3.5px solid var(--sage);
    outline-offset: 6px;

    box-shadow: 0 8px 30px rgba(137, 79, 3, 0.88);
}

.imagen-hero-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.ver-mas {
    display: block;
    margin-top: 15px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}
.imagen-hero-link:hover {
    transform: translateY(-3px);
}


/* =========================
   BOTONES
========================= */
.boton {
    margin-top: 20px;
}

.botones-hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.botones-hero .boton {
    margin: 0;
}

.boton-contacto,
.boton-conocer {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    margin-left: 0;
}

.boton-contacto:hover,
.boton-conocer:hover {
    background-color: var(--sage);
    transform: translateY(-2px);
}

/* =========================
   DESCRIPCIÓN
========================= */

.descripcion-section {
    position: fixed;
    inset: 0;
    z-index: 9998;

    width: 100%;
    max-width: none;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 10%;
    overflow-y: auto;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: scale(0.95);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        visibility 0.5s ease;
}

.descripcion-section.activo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.cerrar-raices {
    position: absolute;
    top: 25px;
    right: 35px;

    border: none;
    background: none;

    font-size: 40px;
    color: var(--gold);

    cursor: pointer;

    transition: 0.3s;
}

.cerrar-raices:hover {
    transform: rotate(90deg);
}


/* =========================
   QUIÉN SOY
========================= */

.quiensoy-section {
    background-color: var(--light);
    padding: 90px 20px;
}

.quiensoy-info {
    max-width: 1000px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 50px;
}

.quiensoy-info img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;

    border: 2.5px solid var(--gold);

    outline: 3.5px solid var(--sage);
    outline-offset: 6px;

    box-shadow: 0 8px 30px rgba(137, 79, 3, 0.88);
}

.quiensoy-texto {
    flex: 1;
}

.quiensoy-texto h2 {
    color: var(--gold);
    font-size: 50px;
    margin-bottom: 15px;
}

.quiensoy-texto p {
    color: #555555;
    margin-bottom: 15px;
    text-align: justify;
}

/* =========================
   MIGRAR
========================= */

.container-section {
    position: relative;

    width: 100%;
    margin: 0;

    padding: 100px 40px;

    text-align: center;

    background-color: var(--sage);
}


/* =========================
   TÍTULO
========================= */

.container-section > h3 {
    color: var(--light);

    font-family: "Playfair Display", serif;

    font-size: 42px;
    line-height: 1.2;

    margin-bottom: 45px;
}


/* =========================
   TARJETAS DE FRASES
========================= */

.containers-cards {
    max-width: 1000px;

    margin: 0 auto 45px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* Cada frase */

.containers-cards ul {
    list-style: none;

    background-color: rgba(255, 255, 255, 0.92);

    padding: 22px 25px;

    border-radius: 18px;

    border: 1px solid rgba(165, 131, 80, 0.20);

    color: var(--dark);

    font-size: 16px;

    line-height: 1.6;

    text-align: left;

    box-shadow: 0 5px 18px rgba(137, 79, 3, 0.08);

    transition: 0.3s;
}


/* Icono */

.containers-cards ul::before {
    content: "🌱";

    margin-right: 10px;

    font-size: 16px;
}


/* Hover */

.containers-cards ul:hover {
    transform: translateY(-4px);

    border-color: var(--sage);

    box-shadow: 0 10px 25px rgba(137, 79, 3, 0.14);
}


/* =========================
   TEXTO FINAL
========================= */

.container-section > p {
    max-width: 950px;

    margin: 0 auto;

    color: var(--dark);

    font-size: 17px;

    line-height: 1.8;

    text-align: center;
}


/* Palabra destacada */

.container-section > p span {
    color: var(--gold);

    font-weight: 700;
}
/* =========================
   SERVICIOS
========================= */

.servicios-card {
    max-width: 1100px;

    margin: 0 auto;

    padding: 90px 30px;
}


/* =========================
   ACOMPAÑAMIENTO
========================= */

.acompanar-card {
    background-color: var(--light);

    padding: 40px;

    border-radius: 20px;

    margin-bottom: 30px;

    border-left: 5px solid var(--sage);

    box-shadow: 0 5px 18px rgba(137, 79, 3, 0.08);
}

.acompanar-card h2 {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 34px;

    margin-bottom: 15px;
}

.acompanar-card p {
    color: #555555;

    line-height: 1.8;

    margin-bottom: 0;
}


/* =========================
   PROCESOS MIGRATORIOS
========================= */

.proceso-card {
    background-color: var(--white);

    padding: 40px;

    border-radius: 20px;

    margin-bottom: 35px;

    border: 1px solid #eeeeee;

    box-shadow: 0 5px 20px rgba(137, 79, 3, 0.10);
}

.proceso-card h2 {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 32px;

    margin-bottom: 20px;
}

.proceso-card p {
    color: #555555;

    line-height: 1.8;

    margin-bottom: 0;
}

.proceso-card span {
    color: var(--gold);

    font-weight: 600;
}


/* =========================
   CATEGORÍAS
========================= */

.categorias-card {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-top: 35px;
}


/* =========================
   TARJETAS
========================= */

.categorias-card > div {
    background-color: var(--white);

    padding: 30px 22px;

    border-radius: 18px;

    border: 1px solid #eeeeee;

    box-shadow: 0 4px 15px rgba(137, 79, 3, 0.08);

    text-align: left;

    transition: 0.3s;
}


/* Hover */

.categorias-card > div:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(137, 79, 3, 0.15);

    border-color: var(--sage);
}


/* =========================
   ICONOS
========================= */

.categorias-card i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 15px;

    border-radius: 50%;

    background-color: rgba(156, 170, 146, 0.15);

    color: var(--sage);

    font-size: 24px;
}


/* =========================
   TÍTULOS
========================= */

.categorias-card h3 {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 23px;

    margin-bottom: 10px;
}


/* =========================
   TEXTO
========================= */

.categorias-card p {
    color: #555555;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 0;
}
/* =========================
   CÓMO TRABAJO
========================= */

.trabajo-section {
    background-color: var(--sage);
    padding: 90px 20px;
}

/* TARJETA PRINCIPAL */

.trabajo-card {
    max-width: 900px;
    margin: 0 auto;

    background-color: var(--white);

    padding: 40px;

    border-radius: 20px;

    border-left: 5px solid var(--gold);

    box-shadow: 0 5px 20px rgba(137, 79, 3, 0.12);
}

.trabajo-card h3 {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 34px;

    margin-bottom: 20px;
}

.trabajo-card p {
    color: #555555;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 0;
}

.trabajo-card span {
    color: var(--gold);

    font-weight: 600;
}


/* =========================
   PASOS DEL PROCESO
========================= */

.flechas-cards {
    max-width: 1000px;

    margin: 45px auto 0;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 35px;

    padding: 0;
}

.flechas-cards li {
    list-style: none;

    background-color: var(--white);

    color: var(--gold);

    padding: 12px 22px;

    border-radius: 30px;

    font-weight: 600;

    box-shadow: 0 4px 15px rgba(137, 79, 3, 0.12);

    position: relative;

    transition: 0.3s;
}

.flechas-cards li:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(137, 79, 3, 0.18);
}


/* =========================
   FLECHAS
========================= */

.flechas-cards li:not(:last-child)::after {
    content: "→";

    position: absolute;

    right: -28px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--white);

    font-size: 24px;

    font-weight: bold;
}

/* =========================
   SESIONES
========================= */

.sesiones-section {
    max-width: 1000px;
    margin: auto;
    padding: 90px 20px;
}

.sesiones-section > h2 {
    text-align: center;
    color: var(--gold);
    font-size: 38px;
    margin-bottom: 40px;
}

.sesiones-cards {
    background-color: var(--light);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.sesiones-cards h4 {
    color: var(--gold);
    font-size: 23px;
    margin-bottom: 10px;
}


/* =========================
   RECURSOS
========================= */

.recursos-section {
    background-color: var(--light);
    padding: 90px 10%;
    text-align: center;
}

.recursos-section > h2 {
    color: var(--gold);
    font-size: 40px;
    margin-bottom: 40px;
}

.recursos-contenedor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: stretch;
}

.recuros-cards {
    width: 100%;
    min-height: 280px;
    margin: 0;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(137, 79, 3, 0.20);
}


.recursos-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: stretch;
}

.recuros-cards h3 {
    font-size: 30px;
    color: var(--sage);
    margin: 0 0 5px;
    text-align: center;
}

.recuros-cards h4 {
    font-size: 22px;
    color: var(--gold);
    margin: 0 0 15px;
    text-align: center;
}

.recuros-cards p {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 0;
}

/* =========================
   PREGUNTAS FRECUENTES
========================= */

.preguntas {
    max-width: 900px;
    margin: auto;
    padding: 90px 20px;
}

.preguntas h2 {
    text-align: center;
    color: var(--gold);
    font-size: 40px;
    margin-bottom: 40px;
}

.preguntas details {
    border-bottom: 1px solid #dddddd;
    padding: 20px 0;
}

.preguntas summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
}

.preguntas summary:hover {
    color: var(--gold);
}

.preguntas details p {
    padding-top: 15px;
    color: #666666;
}


/* =========================
   CONTACTO
========================= */
.contacto-section {
    position: relative;

    background-image: url("./img/fondo.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 150px 20px;
    text-align: center;
}

.contacto-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-color: rgba(156, 170, 146, 0.80);
}

.contacto-contenido {
    position: relative;
    z-index: 1;

    max-width: 900px;
    margin: auto;
}
.contacto-contenido {
    max-width: 900px;
    margin: auto;
}

.contacto-contenido h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 25px;
}

.contacto-contenido > p {
    max-width: 750px;
    margin: 0 auto 60px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.7;
}

.contacto-mensaje {
    background-color: var(--white);
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 50px;
}

.contacto-mensaje h3 {
    color: var(--gold);
    font-size: 30px;
    margin-bottom: 20px;
}

.contacto-mensaje p {
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.contacto-final {
    color: var(--white);
    font-size: 32px;
    max-width: 750px;
    margin: 0 auto 35px;
}

.contacto-final span {
    color: var(--gold);
}.contacto-section {
    background-color: var(--sage);
    padding: 100px 20px;
    text-align: center;
}

.contacto-contenido {
    max-width: 900px;
    margin: auto;
}

.contacto-contenido h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 25px;
}

.contacto-contenido > p {
    max-width: 750px;
    margin: 0 auto 60px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.7;
}

.contacto-mensaje {
    background-color: var(--white);
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 50px;
}

.contacto-mensaje h3 {
    color: var(--gold);
    font-size: 30px;
    margin-bottom: 20px;
}

.contacto-mensaje p {
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.contacto-final {
    color: var(--white);
    font-size: 32px;
    max-width: 750px;
    margin: 0 auto 35px;
}

.contacto-final span {
    color: var(--gold);
}
/* BOTÓN WHATSAPP */
.accion-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 28px;

    background-color: var(--white);
    color: var(--gold);

    border-radius: 40px;

    text-decoration: none;
    font-weight: 600;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);

    transition: 0.3s;
}

.accion-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.accion-icono {
    font-size: 25px;
}

.accion-nombre {
    font-size: 16px;
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo span {
    color: #aaaaaa;
}


.footer-copy {
    font-size: 14px;
    color: #aaaaaa;
}

.footer-redes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-redes a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #777777;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-redes a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.footer-logo a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.footer-logo a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* =========================
   WHATSAPP FLOTANTE
========================= */

.whatsapp-flotante {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #25D366;
    color: var(--white);

    border-radius: 50%;

    font-size: 32px;

    box-shadow: 0 5px 20px rgba(137, 79, 3, 0.88);

    z-index: 9999;

    transition: 0.3s;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
}

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


/* =========================
   TABLET / PANTALLAS MEDIANAS
========================= */

@media (max-width: 1100px) {

    .portada-seccion {
        padding: 100px 5%;
        gap: 30px;
    }

    .portada-info h1 {
        font-size: 44px;
    }

    .portada-info h2 {
        font-size: 20px;
    }

    .imagen-portada {
        max-width: 320px;
    }

    .quiensoy-info {
        max-width: 900px;
        gap: 35px;
    }

    .quiensoy-info img {
        width: 240px;
        height: 240px;
    }

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

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


/* =========================
   TABLET CHICA
========================= */

@media (max-width: 900px) {

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

    #header {
        padding: 8px 3%;
    }

    .navbar ul {
        gap: 12px;
    }

    .navbar a {
        font-size: 14px;
    }

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

@media (max-width: 768px) {

    .navbar {
        display: none;
    }

    .menu-hamburguesa {
        display: flex;
    }

    .header-acciones {
        margin-left: auto;
    }

}@media (max-width: 768px) {

    .navbar.menu-activo {
        display: block;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background-color: var(--white);

        padding: 20px;

        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.10);
    }

    .navbar.menu-activo ul {
        flex-direction: column;

        align-items: center;

        gap: 20px;
    }

    .navbar.menu-activo a {
        font-size: 16px;
    }

}


    /* =========================
       PORTADA
    ========================= */

    .portada-seccion {
        grid-template-columns: 1fr;
        text-align: center;

        padding: 90px 30px;
    }

    .portada-info {
        max-width: 700px;
        margin: auto;
    }

    .portada-info h1 {
        font-size: 42px;
    }

    .portada-info h2 {
        font-size: 20px;
    }

    .portada-tags {
        justify-content: center;
    }

    .boton-contacto {
        margin-left: 0;
    }

    .imagen-portada {
        justify-self: center;
        width: 70%;
        max-width: 330px;
        margin-top: 20px;
    }


    /* =========================
       QUIÉN SOY
    ========================= */

    .quiensoy-info {
        max-width: 800px;
    }


    /* =========================
       MIGRACIÓN
    ========================= */

    .container-section {
        margin: 0 20px;
        padding: 80px 30px;
    }

    .containers-cards {
        grid-template-columns: 1fr;
    }


    /* =========================
       SERVICIOS
    ========================= */

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


    /* =========================
       RECURSOS
    ========================= */

    .recuros-cards {
        width: calc(50% - 25px);
    }

}


/* =========================
   CELULAR
========================= */

@media (max-width: 768px) {

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

    #header {
        padding: 8px 20px;
    }

    .header-inner h1 a {
        gap: 8px;
    }

    .header-inner img {
        width: 45px;
        height: 45px;
    }

    .header-inner h1 {
        font-size: 20px;
    }

    .header-inner h1 span:last-child {
        font-size: 10px;
    }


    /* =========================
       MENÚ
    ========================= */

    .navbar {
        display: none;
    }

    .header-acciones {
        margin-left: auto;
    }

    .menu-hamburguesa {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .menu-hamburguesa span {
        width: 25px;
        height: 3px;
        background-color: var(--gold);
        border-radius: 5px;
    }


    /* =========================
       GENERAL
    ========================= */

    main {
        padding-top: 70px;
    }

    section {
        scroll-margin-top: 80px;
    }


    /* =========================
       PORTADA
    ========================= */

    .portada-seccion {
        min-height: auto;

        grid-template-columns: 1fr;

        padding: 70px 20px;

        text-align: center;
    }

    .portada-info {
        width: 100%;
    }

    .portada-info h1 {
        font-size: clamp(32px, 8vw, 40px);
        margin-left: 0;
    }

    .portada-info h2 {
        font-size: 18px;
        margin-left: 0;
        margin-bottom: 25px;
    }

    .portada-info p {
        font-size: 15px;
        margin-left: 0;
    }


    /* =========================
       TAGS
    ========================= */

    .portada-tags {
        justify-content: center;
        margin-left: 0;
        margin-top: 30px;
    }

    .portada-tags span {
        font-size: 14px;
        padding: 7px 12px;
    }


    /* =========================
       BOTÓN
    ========================= */

    .boton {
        margin-top: 25px;
    }

    .botones-hero {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .boton-contacto,
    .boton-conocer {
        margin-left: 0;
    }


    /* =========================
       IMAGEN PORTADA
    ========================= */

    .imagen-portada {
        position: static;

        width: 80%;
        max-width: 320px;

        margin: 35px auto 0;

        display: block;
    }


    /* =========================
       DESCRIPCIÓN
    ========================= */

    .descripcion-section {
        padding: 70px 20px;
    }

    .descripcion-section h1 {
        font-size: 32px;
    }

    .descripcion-section p {
        font-size: 15px;
        text-align: left;
    }


    /* =========================
       QUIÉN SOY
    ========================= */

    .quiensoy-section {
        padding: 70px 20px;
    }

    .quiensoy-info {
        flex-direction: column;

        text-align: center;

        gap: 35px;
    }

    .quiensoy-info img {
        width: 220px;
        height: 220px;
    }

    .quiensoy-texto {
        width: 100%;
    }

    .quiensoy-texto h2 {
        font-size: 38px;
    }

    .quiensoy-texto p {
        font-size: 15px;
        text-align: left;
    }


    /* =========================
       MIGRACIÓN
    ========================= */

    .container-section {
        margin: 0;

        padding: 70px 20px;

        border-radius: 0;

        background-attachment: scroll;
    }

    .container-section > h3 {
        font-size: 30px;
    }

    .containers-cards {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .containers-cards ul {
        padding: 18px 20px;

        font-size: 15px;
    }

    .container-section > p {
        font-size: 15px;
        text-align: left;
    }


    /* =========================
       SERVICIOS
    ========================= */

    .servicios-card {
        padding: 70px 20px;
    }

    .acompanar-card,
    .proceso-card {
        padding: 25px;

        margin-bottom: 20px;
    }

    .acompanar-card h2 {
        font-size: 30px;
    }

    .proceso-card h2 {
        font-size: 28px;
    }

    .acompanar-card p,
    .proceso-card p {
        font-size: 15px;
    }


    /* =========================
       CATEGORÍAS
    ========================= */

    .categorias-card {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .categorias-card > div {
        padding: 25px 20px;
    }

    .categorias-card h3 {
        font-size: 22px;
    }

    .categorias-card p {
        font-size: 15px;
    }


    /* =========================
       TRABAJO
    ========================= */

    .trabajo-section {
        padding: 70px 20px;
    }

    .trabajo-card {
        padding: 25px;
    }

    .flechas-cards {
        flex-direction: column;

        gap: 25px;
    }

    .flechas-cards li:not(:last-child)::after {
        content: "↓";

        right: 50%;
        top: auto;
        bottom: -30px;

        transform: translateX(50%);
    }


    /* =========================
       SESIONES
    ========================= */

    .sesiones-section {
        padding: 70px 20px;
    }

    .sesiones-section > h2 {
        font-size: 32px;
    }

    .sesiones-cards {
        padding: 25px;
    }

    .sesiones-cards h4 {
        font-size: 21px;
    }


    /* =========================
       RECURSOS
    ========================= */

    .recursos-section {
        padding: 70px 20px;
    }

    .recursos-section > h2 {
        font-size: 32px;
    }

    .recursos-contenedor {
        grid-template-columns: 1fr;
    }

    .recuros-cards {
        display: block;
        width: 100%;
        min-height: auto;
        margin: 10px 0;
        padding: 25px;
    }

    .recuros-cards h3 {
        font-size: 27px;
    }

    .recuros-cards h4 {
        font-size: 19px;
    }


    /* =========================
       PREGUNTAS
    ========================= */

    .preguntas {
        padding: 70px 20px;
    }

    .preguntas h2 {
        font-size: 32px;
    }

    .preguntas summary {
        font-size: 15px;
    }

    .preguntas details p {
        font-size: 14px;
    }


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

    .contacto-section {
        padding: 80px 20px;
    }

    .contacto-contenido h2 {
        font-size: 34px;
    }

    .contacto-contenido > p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .contacto-mensaje {
        padding: 25px;

        border-radius: 20px;

        margin-bottom: 40px;
    }

    .contacto-mensaje h3 {
        font-size: 25px;
    }

    .contacto-mensaje p {
        font-size: 15px;
    }

    .contacto-final {
        font-size: 26px;
    }

    .accion-wa {
        padding: 14px 22px;
    }


    /* =========================
       FOOTER
    ========================= */

    footer {
        padding: 35px 20px;
    }

}


/* =========================
   WHATSAPP CELULAR
========================= */

@media (max-width: 768px) {

    .whatsapp-flotante {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }

}