/* ==========================================================
   GABINO VÁZQUEZ ABOGADOS
   SUPER VOLANTE PREMIUM
========================================================== */


/* ==========================================================
   VARIABLES
========================================================== */

:root {

    --navy: #0f1729;
    --navy-2: #16213a;
    --navy-3: #1f2d4b;

    --blue: #243c67;
    --blue-soft: #7183c7;
    --lavender: #8796d6;
    --lavender-soft: #b5bee8;

    --gold: #b79a61;
    --gold-soft: #d8c49a;

    --white: #ffffff;
    --ivory: #f7f5ef;

    --gray-50: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #e3e6eb;
    --gray-300: #ccd1d9;
    --gray-500: #7b8494;
    --gray-700: #404858;
    --gray-900: #151a24;

    --whatsapp: #25d366;
    --whatsapp-dark: #128c4a;

    --danger: #76171b;

    --font-title: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;

    --container: 1200px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;

    --shadow-sm:
        0 8px 30px rgba(15, 23, 41, 0.08);

    --shadow-md:
        0 18px 55px rgba(15, 23, 41, 0.14);

    --shadow-lg:
        0 30px 80px rgba(8, 15, 30, 0.25);

    --transition:
        all 0.35s ease;
}



/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


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


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


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}


::selection {
    background: var(--lavender);
    color: var(--white);
}



/* ==========================================================
   UTILIDADES GENERALES
========================================================== */

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


.section {
    padding: 30px 0;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;

    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}


.section-label.light {
    color: var(--lavender-soft);
}


.section-heading {
    max-width: 750px;
    margin-bottom: 65px;
}


.section-heading.center {
    text-align: center;
    margin-inline: auto;
}


.section-heading.center .section-label {
    justify-content: center;
}


.section-heading h2,
.business-content h2,
.family-content h2,
.experience-heading h2,
.translations-content h2,
.contact-content h2,
.amparo-intro h2 {

    font-family: var(--font-title);
    font-size: clamp(2.5rem, 4vw, 4.7rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}


.section-heading h2 em,
.business-content h2 em,
.family-content h2 em,
.experience-heading h2 em,
.translations-content h2 em,
.contact-content h2 em,
.amparo-intro h2 em {

    display: block;
    color: var(--lavender);
    font-style: italic;
    font-weight: 500;
}


.section-heading p {
    font-size: 1.07rem;
    color: var(--gray-500);
    max-width: 680px;
}


.section-heading.center p {
    margin-inline: auto;
}


.btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 54px;
    padding: 0 26px;

    border: 1px solid transparent;
    border-radius: 4px;

    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;

    transition: var(--transition);
}


.btn i {
    transition: transform 0.3s ease;
}


.btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}


.btn-primary {
    background: var(--white);
    color: var(--navy);
}


.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-3px);
}


.btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}


.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-3px);
}


.btn-dark {
    background: var(--navy);
    color: var(--white);
}


.btn-dark:hover {
    background: var(--blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}


.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
}



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

.header {

    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;

    height: 88px;

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

    border-bottom:
        1px solid rgba(15, 23, 41, 0.07);

    backdrop-filter: blur(16px);

    transition: var(--transition);
}


.header.scrolled {
    height: 76px;
    box-shadow:
        0 5px 30px rgba(15, 23, 41, 0.08);
}


.header-container {

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {

    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 240px;
}


.brand-logo {

    width: 65px;
    height: 55px;

    object-fit: contain;
}


.brand-text {

    display: flex;
    flex-direction: column;

    line-height: 1.05;
}


.brand-text strong {

    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 700;
}


.brand-text span {

    margin-top: 5px;

    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    color: var(--gray-500);
}


.nav {

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


.nav > a {

    position: relative;

    font-size: 0.82rem;
    font-weight: 600;

    color: var(--gray-700);

    transition: var(--transition);
}


.nav > a:not(.nav-cta)::after {

    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--blue);

    transition: width 0.3s ease;
}


.nav > a:not(.nav-cta):hover {
    color: var(--navy);
}


.nav > a:not(.nav-cta):hover::after {
    width: 100%;
}


.nav-cta {

    padding: 11px 18px;

    color: var(--white) !important;
    background: var(--navy);

    border-radius: 4px;
}


.nav-cta:hover {
    background: var(--blue);
}


.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    z-index: 1001;
}


.menu-toggle span {

    width: 25px;
    height: 2px;

    background: var(--navy);

    transition: var(--transition);
}



/* ==========================================================
   HERO
========================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    padding-top: 88px;

    display: flex;
    align-items: center;

    background: var(--navy);

    overflow: hidden;
}


.hero-background {

    position: absolute;
    inset: 0;

    background-image:
        url("../img/hero-gv.jpg");

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

    opacity: 0.48;

    transform: scale(1.03);
}


.hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 17, 32, 0.98) 0%,
            rgba(14, 25, 46, 0.93) 44%,
            rgba(14, 25, 46, 0.62) 70%,
            rgba(14, 25, 46, 0.4) 100%
        );
}


.hero::before {

    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    border: 1px solid rgba(181, 190, 232, 0.14);

    border-radius: 50%;

    left: -320px;
    top: 40%;

    z-index: 1;
}


.hero::after {

    content: "GV";

    position: absolute;

    right: -20px;
    bottom: -110px;

    color: rgba(255, 255, 255, 0.025);

    font-family: var(--font-title);

    font-size: 25rem;
    line-height: 1;

    pointer-events: none;
}


.hero-container {

    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(320px, 0.65fr);

    gap: 70px;

    align-items: center;

    padding-top: 70px;
    padding-bottom: 90px;
}


.hero-content {
    max-width: 760px;
}


.hero-eyebrow {

    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    color: var(--lavender-soft);

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}


.hero-eyebrow span {

    width: 40px;
    height: 1px;

    background: var(--gold);
}


.hero h1 {

    margin-bottom: 26px;

    color: var(--white);

    font-family: var(--font-title);

    font-size: clamp(3.8rem, 7vw, 7.4rem);

    font-weight: 500;

    line-height: 0.88;

    letter-spacing: -0.05em;
}


.hero h1 em {

    display: block;

    margin-top: 16px;

    color: var(--lavender-soft);

    font-weight: 400;

    font-style: italic;
}


.hero-description {

    max-width: 680px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 1.08rem;
    line-height: 1.85;
}


.hero-values {

    display: flex;
    flex-wrap: wrap;

    gap: 18px 26px;

    margin-bottom: 36px;
}


.hero-values span {

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--white);

    font-size: 0.88rem;
}


.hero-values i {
    color: var(--gold-soft);
}


.hero-actions {

    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 34px;
}


.hero-trust {

    display: flex;
    flex-wrap: wrap;

    gap: 10px 22px;

    padding-top: 24px;

    border-top:
        1px solid rgba(255, 255, 255, 0.14);
}


.hero-trust span {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.76rem;
}


.hero-trust i {
    color: var(--lavender-soft);
}



/* ==========================================================
   HERO CARD
========================================================== */

.hero-card {

    position: relative;

    padding: 40px;

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

    border-radius: 3px;

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}


.hero-card::before {

    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            var(--lavender),
            var(--gold)
        );
}


.hero-card::after {

    content: "GV";

    position: absolute;

    right: -12px;
    bottom: -35px;

    font-family: var(--font-title);
    font-size: 7.5rem;

    color: rgba(15, 23, 41, 0.045);
}


.hero-card-label {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--blue);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.hero-card h2 {

    position: relative;
    z-index: 1;

    margin-bottom: 18px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size: 2.1rem;

    line-height: 1.08;

    font-weight: 600;
}


.hero-card > p {

    color: var(--gray-500);

    font-size: 0.9rem;

    line-height: 1.7;
}


.hero-card-line {

    width: 100%;

    height: 1px;

    margin: 26px 0;

    background: var(--gray-200);
}


.hero-phone {

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 12px 0;

    transition: var(--transition);
}


.hero-phone > span {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--gray-100);

    color: var(--blue);
}


.hero-phone div {

    display: flex;
    flex-direction: column;
}


.hero-phone small {

    color: var(--gray-500);

    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.hero-phone strong {

    color: var(--navy);

    font-size: 0.98rem;
}


.hero-phone:hover {
    transform: translateX(5px);
}



/* ==========================================================
   SCROLL INDICATOR
========================================================== */

.scroll-indicator {

    position: absolute;
    z-index: 4;

    left: 50%;
    bottom: 25px;

    width: 26px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.32);

    border-radius: 30px;

    transform: translateX(-50%);
}


.scroll-indicator span {

    position: absolute;

    left: 50%;
    top: 9px;

    width: 4px;
    height: 7px;

    border-radius: 10px;

    background: var(--white);

    transform: translateX(-50%);

    animation: scrollMouse 1.8s infinite;
}


@keyframes scrollMouse {

    0% {
        opacity: 0;
        transform:
            translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, 14px);
    }
}



/* ==========================================================
   TRUST STRIP
========================================================== */

.trust-strip {

    position: relative;
    z-index: 5;

    background: var(--white);

    border-bottom:
        1px solid var(--gray-200);
}


.trust-strip-grid {

    min-height: 92px;

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


.trust-strip-grid > div {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;

    padding: 22px;

    color: var(--navy);

    border-right:
        1px solid var(--gray-200);
}


.trust-strip-grid > div:last-child {
    border-right: 0;
}


.trust-strip-grid i {
    color: var(--gold);
}


.trust-strip-grid span {

    font-size: 0.8rem;
    font-weight: 700;
}



/* ==========================================================
   FIRMA
========================================================== */

.firm-section {
    background: var(--ivory);
}


.legacy-block {

    position: relative;

    max-width: 950px;

    margin: 0 auto 70px;

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

    gap: 45px;

    align-items: center;

    padding: 45px;

    background: var(--white);

    box-shadow: var(--shadow-sm);

    border-left:
        3px solid var(--lavender);
}


.legacy-mark {

    min-height: 215px;

    display: grid;
    place-items: center;

    position: relative;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--blue)
        );
}


.legacy-mark::before,
.legacy-mark::after {

    content: "";

    position: absolute;

    border: 1px solid rgba(181, 190, 232, 0.35);
}


.legacy-mark::before {
    inset: 18px;
}


.legacy-mark::after {
    inset: 33px;
}


.legacy-mark span {

    position: relative;
    z-index: 2;

    color: var(--white);

    font-family: var(--font-title);

    font-size: 5rem;
    line-height: 1;

    letter-spacing: -0.05em;
}


.legacy-content h3 {

    margin-bottom: 12px;

    font-family: var(--font-title);

    color: var(--navy);

    font-size: 2.3rem;
}


.legacy-lead {

    margin-bottom: 14px;

    color: var(--blue);

    font-family: var(--font-title);

    font-size: 1.45rem;

    font-style: italic;
}


.legacy-content p:not(.legacy-lead) {
    color: var(--gray-500);
}


.legacy-signature {

    display: inline-block;

    margin-top: 15px;

    color: var(--navy);

    font-family: var(--font-title);
    font-size: 1.2rem;

    font-style: italic;
}



/* ==========================================================
   VALUE CARDS
========================================================== */

.firm-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


.value-card {

    position: relative;

    min-height: 320px;

    padding: 38px;

    background: var(--white);

    border:
        1px solid rgba(15, 23, 41, 0.07);

    overflow: hidden;

    transition: var(--transition);
}


.value-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

    border-color:
        rgba(113, 131, 199, 0.35);
}


.value-number {

    position: absolute;

    right: 25px;
    top: 15px;

    font-family: var(--font-title);

    font-size: 4rem;

    color:
        rgba(15, 23, 41, 0.045);
}


.value-icon {

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    background: var(--navy);

    color: var(--white);

    font-size: 1.2rem;
}


.value-card h3 {

    margin-bottom: 14px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size: 1.8rem;
}


.value-card p {

    color: var(--gray-500);

    font-size: 0.91rem;
}



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

.services-section {

    position: relative;

    background: var(--navy);

    color: var(--white);

    overflow: hidden;
}


.services-section::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -320px;
    right: -300px;

    border:
        1px solid rgba(181, 190, 232, 0.08);

    border-radius: 50%;
}


.services-section .section-heading h2 {
    color: var(--white);
}


.services-section .section-heading p {
    color: rgba(255, 255, 255, 0.62);
}


.services-grid {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.service-card {

    position: relative;

    padding: 34px;

    min-height: 520px;

    display: flex;
    flex-direction: column;

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

    border:
        1px solid rgba(255, 255, 255, 0.11);

    backdrop-filter: blur(8px);

    overflow: hidden;

    transition: var(--transition);
}


.service-card::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--lavender),
            var(--gold)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}


.service-card:hover {

    transform: translateY(-7px);

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

    border-color:
        rgba(181, 190, 232, 0.4);
}


.service-card:hover::before {
    transform: scaleX(1);
}


.service-card.featured {

    background:
        linear-gradient(
            150deg,
            rgba(113, 131, 199, 0.25),
            rgba(255, 255, 255, 0.06)
        );

    border-color:
        rgba(181, 190, 232, 0.45);
}


.featured-label {

    position: absolute;

    right: 0;
    top: 0;

    padding: 7px 12px;

    background: var(--gold-soft);

    color: var(--navy);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}


.service-number {

    display: block;

    margin-bottom: 16px;

    color:
        rgba(255, 255, 255, 0.24);

    font-family: var(--font-title);

    font-size: 2rem;
}


.service-icon {

    width: 52px;
    height: 52px;

    margin-bottom: 24px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(181, 190, 232, 0.35);

    color: var(--lavender-soft);

    font-size: 1.2rem;
}


.service-card h3 {

    margin-bottom: 12px;

    font-family: var(--font-title);

    font-size: 1.75rem;

    color: var(--white);
}


.service-card > p {

    margin-bottom: 20px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.87rem;
}


.service-card ul {

    margin-bottom: 25px;
}


.service-card li {

    position: relative;

    padding: 6px 0 6px 18px;

    color:
        rgba(255, 255, 255, 0.77);

    font-size: 0.81rem;
}


.service-card li::before {

    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    left: 0;
    top: 15px;

    background: var(--gold);

    border-radius: 50%;
}


.service-card > a {

    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--lavender-soft);

    font-size: 0.82rem;
    font-weight: 700;

    transition: var(--transition);
}


.service-card > a:hover {

    color: var(--white);

    gap: 15px;
}



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

.additional-services {

    margin-top: 55px;

    padding: 35px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}


.additional-services h3 {

    margin-bottom: 24px;

    color: var(--white);

    font-family: var(--font-title);

    font-size: 1.75rem;
}


.additional-list {

    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}


.additional-list span {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

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

    font-size: 0.78rem;
}


.additional-list i {
    color: var(--gold-soft);
}



/* ==========================================================
   AMPARO
========================================================== */

.amparo-section {

    position: relative;

    background:
        linear-gradient(
            135deg,
            #f8f8f7 0%,
            #efeff2 100%
        );

    overflow: hidden;
}


.amparo-section::before {

    content: "AMPARO";

    position: absolute;

    top: 30px;
    right: -50px;

    color:
        rgba(15, 23, 41, 0.025);

    font-family: var(--font-title);

    font-size: 9rem;

    font-weight: 700;
}


.amparo-container {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 75px;

    align-items: start;
}


.amparo-intro {

    position: sticky;
    top: 120px;
}


.amparo-intro > p {

    color: var(--gray-500);

    margin-bottom: 20px;
}


.amparo-lead {

    color: var(--gray-700) !important;

    font-size: 1.08rem;

    line-height: 1.8;
}


.amparo-highlight {

    display: flex;
    align-items: flex-start;

    gap: 17px;

    margin: 32px 0;

    padding: 23px;

    background: var(--navy);

    color: var(--white);
}


.amparo-highlight > i {

    margin-top: 3px;

    color: var(--gold-soft);

    font-size: 1.3rem;
}


.amparo-highlight div {

    display: flex;
    flex-direction: column;
}


.amparo-highlight strong {

    font-family: var(--font-title);

    font-size: 1.25rem;
}


.amparo-highlight span {

    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.78rem;
}


.amparo-cases {

    padding: 42px;

    background: var(--white);

    box-shadow: var(--shadow-md);
}


.amparo-cases-label {

    display: block;

    margin-bottom: 27px;

    color: var(--blue);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.amparo-list {

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

    gap: 1px;

    background: var(--gray-200);

    border: 1px solid var(--gray-200);
}


.amparo-item {

    display: flex;
    align-items: flex-start;

    gap: 15px;

    min-height: 175px;

    padding: 25px;

    background: var(--white);

    transition: var(--transition);
}


.amparo-item:hover {
    background: var(--ivory);
}


.amparo-item-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: var(--navy);

    color: var(--white);
}


.amparo-item strong {

    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size: 1.2rem;

    line-height: 1.15;
}


.amparo-item p {

    margin: 0;

    color: var(--gray-500);

    font-size: 0.78rem;

    line-height: 1.55;
}


.amparo-item-wide {
    grid-column: 1 / -1;
}



/* ==========================================================
   BUSINESS / EMPRESAS
========================================================== */

.business-section {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    min-height: 760px;

    background: var(--white);
}


.business-image {
    min-height: 760px;
}


.business-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.business-content {

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding:
        clamp(60px, 8vw, 115px);

    background: var(--ivory);
}


.business-content > p {

    max-width: 650px;

    color: var(--gray-500);

    margin-bottom: 16px;
}


.business-services {

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

    gap: 1px;

    margin: 28px 0 35px;

    background: var(--gray-200);

    border: 1px solid var(--gray-200);
}


.business-services div {

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 18px;

    background: var(--white);
}


.business-services i {

    width: 23px;

    color: var(--blue);

    text-align: center;
}


.business-services span {

    font-size: 0.78rem;
    font-weight: 600;

    color: var(--gray-700);
}


.business-content .btn {
    align-self: flex-start;
}



/* ==========================================================
   FAMILY
========================================================== */

.family-section {

    background: var(--white);
}


.family-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    gap: 80px;

    align-items: center;
}


.family-content > p {

    color: var(--gray-500);

    max-width: 620px;
}


.family-tags {

    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin:
        30px 0 32px;
}


.family-tags span {

    padding:
        9px 14px;

    background: var(--gray-50);

    border:
        1px solid var(--gray-200);

    color: var(--gray-700);

    font-size: 0.76rem;
}


.text-link {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--navy);

    font-weight: 700;
    font-size: 0.9rem;

    border-bottom:
        1px solid var(--gold);

    padding-bottom: 4px;
}


.text-link:hover {
    gap: 16px;
}


.family-image {

    position: relative;

    padding:
        0 0 45px 45px;
}


.image-frame {

    position: relative;

    height: 600px;

    overflow: hidden;
}


.image-frame::before {

    content: "";

    position: absolute;

    inset: 15px;

    z-index: 1;

    border:
        1px solid rgba(255, 255, 255, 0.55);
}


.image-frame img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.family-badge {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 210px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 24px;

    background: var(--navy);

    color: var(--white);

    box-shadow: var(--shadow-md);
}


.family-badge i {
    color: var(--gold-soft);
}


.family-badge span {

    display: flex;
    flex-direction: column;

    font-size: 0.69rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.family-badge strong {

    margin-top: 3px;

    font-family: var(--font-title);

    font-size: 1.25rem;
    text-transform: none;
    letter-spacing: 0;
}



/* ==========================================================
   EXPERIENCIA
========================================================== */

.experience-section {

    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #202e4d
        );

    overflow: hidden;
}


.experience-section::before {

    content: "GV";

    position: absolute;

    right: 2%;
    top: -90px;

    font-family: var(--font-title);

    font-size: 18rem;

    color:
        rgba(255, 255, 255, 0.025);
}


.experience-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 41, 0.45),
            transparent
        );
}


.experience-container {
    position: relative;
    z-index: 2;
}


.experience-heading {

    max-width: 700px;

    margin-bottom: 55px;
}


.experience-heading h2 {
    color: var(--white);
}


.experience-heading p {

    color:
        rgba(255, 255, 255, 0.62);

    max-width: 620px;
}


.experience-stats {

    display: grid;

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

    gap: 1px;

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

    border:
        1px solid rgba(255, 255, 255, 0.12);
}


.stat {

    padding: 42px 25px;

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

    text-align: center;
}


.stat strong {

    display: block;

    color: var(--white);

    font-family: var(--font-title);

    font-size: 4rem;

    line-height: 1;
}


.stat span {

    display: block;

    max-width: 180px;

    margin:
        10px auto 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.75rem;
}



/* ==========================================================
   TRADUCCIONES
========================================================== */

.translations-section {
    background: var(--ivory);
}


.translations-container {

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, 0.9fr);

    gap: 80px;

    align-items: center;
}


.translations-content > p {

    max-width: 650px;

    color: var(--gray-500);
}


.translation-features {

    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin:
        30px 0;
}


.translation-features span {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 11px 14px;

    background: var(--white);

    border:
        1px solid var(--gray-200);

    color: var(--gray-700);

    font-size: 0.78rem;
}


.translation-features i {
    color: var(--blue);
}


.translations-visual {

    position: relative;

    min-height: 420px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--blue)
        );

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}


.translations-visual::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    transform: rotate(45deg);
}


.translation-icon-large {

    position: relative;
    z-index: 2;

    width: 90px;
    height: 90px;

    margin-bottom: 25px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    color: var(--gold-soft);

    font-size: 2.1rem;
}


.translations-visual span,
.translations-visual strong,
.translations-visual small {

    position: relative;
    z-index: 2;
}


.translations-visual span {

    color: var(--lavender-soft);

    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}


.translations-visual strong {

    margin-top: 4px;

    color: var(--white);

    font-family: var(--font-title);

    font-size: 3.3rem;

    font-weight: 500;
}


.translations-visual small {

    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.5);
}



/* ==========================================================
   MISIÓN
========================================================== */

.mission-section {
    background: var(--white);
}


.mission-container {

    max-width: 1000px;

    display: grid;

    grid-template-columns:
        240px 1fr;

    gap: 65px;

    align-items: center;
}


.mission-mark {

    position: relative;

    width: 220px;
    height: 220px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--gray-200);
}


.mission-mark::before {

    content: "";

    position: absolute;

    inset: 20px;

    border:
        1px solid var(--lavender);
}


.mission-mark span {

    font-family: var(--font-title);

    color: var(--navy);

    font-size: 6rem;
    line-height: 1;
}


.mission-content blockquote {

    margin:
        0 0 28px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size: clamp(2rem, 4vw, 3.6rem);

    line-height: 1.05;

    font-style: italic;
}


.mission-content p {

    color: var(--gray-500);

    max-width: 650px;
}



/* ==========================================================
   PRO BONO
========================================================== */

.probono-section {

    padding: 45px 0;

    background:
        linear-gradient(
            90deg,
            #e9ebf4,
            #f5f3ed
        );

    border-top:
        1px solid var(--gray-200);

    border-bottom:
        1px solid var(--gray-200);
}


.probono-container {

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    gap: 28px;

    align-items: center;
}


.probono-icon {

    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    background: var(--navy);

    color: var(--gold-soft);

    font-size: 1.35rem;
}


.probono-content > span {

    display: block;

    margin-bottom: 5px;

    color: var(--blue);

    font-size: 0.68rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}


.probono-content h2 {

    margin-bottom: 4px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size: 1.75rem;
}


.probono-content p {

    margin-bottom: 0;

    max-width: 720px;

    color: var(--gray-500);

    font-size: 0.8rem;
}


.probono-link {

    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-size: 0.8rem;
    font-weight: 700;

    white-space: nowrap;
}


.probono-link:hover {
    gap: 15px;
}



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

.contact-section {

    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #0e1729,
            #182a4a
        );

    overflow: hidden;
}


.contact-section::after {

    content: "GV";

    position: absolute;

    left: -50px;
    bottom: -150px;

    color:
        rgba(255, 255, 255, 0.025);

    font-family: var(--font-title);

    font-size: 22rem;
}


.contact-container {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(340px, 0.8fr);

    gap: 80px;

    align-items: center;
}


.contact-content h2 {
    color: var(--white);
}


.contact-content > p {

    max-width: 650px;

    color:
        rgba(255, 255, 255, 0.63);
}


.contact-features {

    display: grid;

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

    gap: 12px;

    margin:
        30px 0 35px;
}


.contact-features span {

    display: flex;
    align-items: center;

    gap: 10px;

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

    font-size: 0.82rem;
}


.contact-features i {
    color: var(--gold-soft);
}



/* ==========================================================
   CONTACT CARD
========================================================== */

.contact-card {

    padding: 42px;

    background: var(--white);

    box-shadow: var(--shadow-lg);
}


.contact-card-label {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--blue);

    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.contact-card h3 {

    margin-bottom: 26px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size: 2rem;
}


.contact-item {

    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding:
        17px 0;

    border-bottom:
        1px solid var(--gray-200);
}


.contact-item > i {

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: var(--gray-50);

    color: var(--blue);
}


.contact-item div {

    display: flex;
    flex-direction: column;
}


.contact-item small {

    color: var(--gray-500);

    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.contact-item strong {

    color: var(--navy);

    font-size: 0.88rem;

    overflow-wrap: anywhere;
}


.contact-item span {

    margin-top: 5px;

    color: var(--gray-500);

    font-size: 0.76rem;
}


a.contact-item {
    transition: var(--transition);
}


a.contact-item:hover {
    padding-left: 8px;
}


.contact-card-footer {

    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 25px;

    padding: 17px;

    background: var(--gray-50);

    color: var(--gray-500);

    font-size: 0.72rem;
}


.contact-card-footer i {
    color: var(--blue);
}



/* ==========================================================
   EMAILS
========================================================== */

.email-section {

    padding: 34px 0;

    background: var(--ivory);

    border-bottom:
        1px solid var(--gray-200);
}


.email-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1px;

    background: var(--gray-200);
}


.email-card {

    display: flex;
    align-items: center;

    gap: 14px;

    min-height: 90px;

    padding: 20px;

    background: var(--white);

    transition: var(--transition);
}


.email-card:hover {
    background: var(--gray-50);
}


.email-card > i {

    width: 40px;

    color: var(--blue);

    text-align: center;
}


.email-card div {

    min-width: 0;

    display: flex;
    flex-direction: column;
}


.email-card span {

    color: var(--gray-500);

    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.email-card strong {

    color: var(--navy);

    font-size: 0.78rem;

    overflow-wrap: anywhere;
}



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

.footer {

    background: #090f1d;

    color: var(--white);
}


.footer-top {

    padding:
        55px 0 35px;

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

    gap: 40px;
}


.footer-brand {

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


.footer-brand img {

    width: 60px;
    height: 52px;

    object-fit: contain;

    background: var(--white);

    padding: 4px;
}


.footer-brand div {

    display: flex;
    flex-direction: column;
}


.footer-brand strong {

    font-family: var(--font-title);

    font-size: 1.4rem;
}


.footer-brand span {

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.footer-nav {

    display: flex;
    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 19px;
}


.footer-nav a {

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.74rem;

    transition: var(--transition);
}


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


.footer-divider {

    height: 1px;

    background:
        rgba(255, 255, 255, 0.08);
}


.footer-bottom {

    padding:
        27px 0 35px;
}


.footer-bottom p {

    margin-bottom: 8px;

    color:
        rgba(255, 255, 255, 0.4);

    font-size: 0.68rem;
}


.footer-disclaimer {

    max-width: 800px;
}


.supervolante-credit a {

    color: var(--lavender-soft);

    font-weight: 700;
}



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

.whatsapp-float {

    position: fixed;

    right: 23px;
    bottom: 23px;

    z-index: 900;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--whatsapp);

    color: var(--white);

    font-size: 1.8rem;

    box-shadow:
        0 12px 35px rgba(37, 211, 102, 0.35);

    transition: var(--transition);
}


.whatsapp-float:hover {

    transform:
        translateY(-5px)
        scale(1.05);

    background: var(--whatsapp-dark);
}


.whatsapp-tooltip {

    position: absolute;

    right: 70px;

    width: max-content;

    max-width: 240px;

    padding:
        10px 14px;

    border-radius: 4px;

    background: var(--white);

    color: var(--navy);

    box-shadow: var(--shadow-sm);

    font-size: 0.75rem;
    font-weight: 600;

    opacity: 0;

    pointer-events: none;

    transform: translateX(8px);

    transition: var(--transition);
}


.whatsapp-float:hover .whatsapp-tooltip {

    opacity: 1;

    transform: translateX(0);
}



/* ==========================================================
   BACK TO TOP
========================================================== */

.back-top {

    position: fixed;

    right: 28px;
    bottom: 95px;

    z-index: 850;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(15, 23, 41, 0.12);

    background: var(--white);

    color: var(--navy);

    box-shadow: var(--shadow-sm);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(10px);

    transition: var(--transition);
}


.back-top.show {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


.back-top:hover {

    color: var(--white);

    background: var(--navy);
}



/* ==========================================================
   ANIMACIONES PARA JS
========================================================== */

.reveal,
.reveal-left,
.reveal-right {

    opacity: 0;

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


.reveal {
    transform: translateY(35px);
}


.reveal-left {
    transform: translateX(-40px);
}


.reveal-right {
    transform: translateX(40px);
}


.reveal.active,
.reveal-left.active,
.reveal-right.active {

    opacity: 1;

    transform: translate(0, 0);
}



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

@media (max-width: 1100px) {


    .nav {
        gap: 17px;
    }


    .nav > a {
        font-size: 0.74rem;
    }


    .hero-container {

        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(290px, 0.75fr);

        gap: 40px;
    }


    .hero h1 {
        font-size: clamp(3.6rem, 6vw, 6rem);
    }


    .hero-card {
        padding: 32px;
    }


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


    .amparo-container {
        gap: 45px;
    }


    .business-content {
        padding: 70px 50px;
    }


    .family-grid,
    .translations-container,
    .contact-container {
        gap: 50px;
    }

}



/* ==========================================================
   MOBILE NAV + TABLET
========================================================== */

@media (max-width: 900px) {


    .section {
        padding: 85px 0;
    }


    /* HEADER */

    .header {
        height: 74px;
    }


    .header.scrolled {
        height: 68px;
    }


    .brand {
        min-width: 0;
    }


    .brand-logo {

        width: 52px;
        height: 45px;
    }


    .brand-text strong {
        font-size: 1.15rem;
    }


    .brand-text span {
        font-size: 0.58rem;
    }


    .menu-toggle {
        display: flex;
    }


    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(8px)
            rotate(45deg);
    }


    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-8px)
            rotate(-45deg);
    }


    .nav {

        position: fixed;

        inset:
            74px 0 auto auto;

        width: min(85%, 370px);

        height:
            calc(100vh - 74px);

        padding:
            35px 30px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: var(--white);

        box-shadow:
            -20px 30px 60px rgba(15, 23, 41, 0.13);

        transform:
            translateX(105%);

        transition:
            transform 0.4s ease;
    }


    .nav.active {
        transform: translateX(0);
    }


    .nav > a {

        padding:
            16px 0;

        border-bottom:
            1px solid var(--gray-200);

        font-size: 0.84rem;
    }


    .nav > a::after {
        display: none;
    }


    .nav-cta {

        margin-top: 20px;

        padding: 15px 18px !important;

        text-align: center;

        border-bottom: 0 !important;
    }



    /* HERO */

    .hero {
        min-height: auto;
    }


    .hero-container {

        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 100px;
        padding-bottom: 90px;
    }


    .hero-content {
        max-width: 800px;
    }


    .hero-card {
        max-width: 540px;
    }


    .hero::after {
        font-size: 16rem;
    }



    /* TRUST */

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


    .trust-strip-grid > div:nth-child(2) {
        border-right: 0;
    }


    .trust-strip-grid > div:nth-child(-n+2) {
        border-bottom:
            1px solid var(--gray-200);
    }



    /* FIRMA */

    .legacy-block {

        grid-template-columns: 180px 1fr;

        gap: 30px;

        padding: 30px;
    }


    .legacy-mark {
        min-height: 190px;
    }


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


    .value-card {
        min-height: auto;
    }



    /* AMPARO */

    .amparo-container {
        grid-template-columns: 1fr;
    }


    .amparo-intro {
        position: static;
    }



    /* BUSINESS */

    .business-section {

        grid-template-columns: 1fr;

        min-height: auto;
    }


    .business-image {
        min-height: 500px;
    }



    /* FAMILY */

    .family-grid {

        grid-template-columns: 1fr;
    }


    .family-image {

        max-width: 620px;

        margin-inline: auto;

        width: 100%;
    }



    /* EXPERIENCE */

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



    /* TRANSLATIONS */

    .translations-container {
        grid-template-columns: 1fr;
    }


    .translations-visual {
        min-height: 370px;
    }



    /* MISSION */

    .mission-container {

        grid-template-columns: 180px 1fr;

        gap: 40px;
    }


    .mission-mark {

        width: 170px;
        height: 170px;
    }



    /* PROBONO */

    .probono-container {

        grid-template-columns:
            auto 1fr;
    }


    .probono-link {

        grid-column: 2;

        justify-self: start;
    }



    /* CONTACT */

    .contact-container {
        grid-template-columns: 1fr;
    }


    .contact-card {
        max-width: 620px;
    }


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



    /* FOOTER */

    .footer-top {

        flex-direction: column;

        align-items: flex-start;
    }


    .footer-nav {
        justify-content: flex-start;
    }

}



/* ==========================================================
   MÓVIL
========================================================== */

@media (max-width: 650px) {


    :root {
        --radius-lg: 18px;
    }


    html {
        scroll-padding-top: 72px;
    }


    .container {
        width: min(90%, var(--container));
    }


    .section {
        padding: 72px 0;
    }



    /* TITULOS */

    .section-heading {
        margin-bottom: 45px;
    }


    .section-heading h2,
    .business-content h2,
    .family-content h2,
    .experience-heading h2,
    .translations-content h2,
    .contact-content h2,
    .amparo-intro h2 {

        font-size: 2.75rem;

        line-height: 1;
    }


    .section-label {

        font-size: 0.64rem;

        letter-spacing: 0.14em;
    }



    /* HEADER */

    .brand-text strong {
        font-size: 1.02rem;
    }


    .brand-text span {
        display: none;
    }



    /* HERO */

    .hero-background {

        background-position: 58% center;

        opacity: 0.34;
    }


    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(10, 17, 32, 0.94) 0%,
                rgba(10, 17, 32, 0.92) 60%,
                rgba(10, 17, 32, 0.98) 100%
            );
    }


    .hero-container {

        padding-top: 85px;
        padding-bottom: 75px;
    }


    .hero-eyebrow {
        font-size: 0.62rem;
    }


    .hero h1 {

        font-size: clamp(3.25rem, 14vw, 5rem);

        line-height: 0.9;
    }


    .hero h1 em {
        margin-top: 12px;
    }


    .hero-description {

        font-size: 0.95rem;

        line-height: 1.7;
    }


    .hero-values {

        gap: 11px;

        flex-direction: column;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .hero-trust {

        display: grid;

        grid-template-columns: 1fr;
    }


    .hero-card {

        padding: 28px 24px;
    }


    .hero-card h2 {
        font-size: 1.85rem;
    }


    .scroll-indicator {
        display: none;
    }



    /* TRUST STRIP */

    .trust-strip-grid {

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


    .trust-strip-grid > div {

        min-height: 78px;

        flex-direction: column;

        gap: 5px;

        text-align: center;
    }


    .trust-strip-grid span {
        font-size: 0.69rem;
    }



    /* LEGADO */

    .legacy-block {

        grid-template-columns: 1fr;

        padding: 22px;
    }


    .legacy-mark {

        width: 100%;
        min-height: 160px;
    }


    .legacy-mark span {
        font-size: 4.2rem;
    }


    .legacy-content h3 {
        font-size: 2rem;
    }



    /* VALUE */

    .value-card {
        padding: 30px 25px;
    }



    /* SERVICES */

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


    .service-card {

        min-height: auto;

        padding: 28px 24px;
    }


    .additional-services {
        padding: 28px 0;
    }


    .additional-list {
        gap: 8px;
    }



    /* AMPARO */

    .amparo-section::before {
        font-size: 5rem;
    }


    .amparo-cases {
        padding: 20px;
    }


    .amparo-list {

        grid-template-columns: 1fr;
    }


    .amparo-item {

        min-height: auto;

        padding: 21px;
    }


    .amparo-item-wide {
        grid-column: auto;
    }



    /* BUSINESS */

    .business-image {
        min-height: 390px;
    }


    .business-content {
        padding: 65px 5%;
    }


    .business-services {
        grid-template-columns: 1fr;
    }


    .business-content .btn {
        width: 100%;
    }



    /* FAMILY */

    .family-grid {
        gap: 45px;
    }


    .family-image {

        padding:
            0 0 38px 22px;
    }


    .image-frame {
        height: 460px;
    }


    .family-badge {

        width: 185px;

        padding: 19px;
    }



    /* EXPERIENCE */

    .experience-section {
        padding: 75px 0;
    }


    .experience-stats {
        grid-template-columns: 1fr 1fr;
    }


    .stat {
        padding: 28px 14px;
    }


    .stat strong {
        font-size: 3rem;
    }


    .stat span {
        font-size: 0.67rem;
    }



    /* TRANSLATIONS */

    .translations-container {
        gap: 45px;
    }


    .translations-visual {
        min-height: 320px;
    }


    .translations-visual strong {
        font-size: 2.7rem;
    }



    /* MISSION */

    .mission-container {
        grid-template-columns: 1fr;
    }


    .mission-mark {

        width: 145px;
        height: 145px;
    }


    .mission-mark span {
        font-size: 4.5rem;
    }


    .mission-content blockquote {
        font-size: 2.35rem;
    }



    /* PRO BONO */

    .probono-container {

        grid-template-columns: 1fr;

        text-align: left;
    }


    .probono-link {

        grid-column: auto;

        justify-self: start;
    }



    /* CONTACT */

    .contact-section {
        padding: 75px 0;
    }


    .contact-features {
        grid-template-columns: 1fr;
    }


    .contact-content .btn {
        width: 100%;
    }


    .contact-card {
        padding: 28px 22px;
    }



    /* EMAIL */

    .email-card {

        align-items: flex-start;
    }



    /* FOOTER */

    .footer-top {
        padding-top: 40px;
    }


    .footer-nav {

        display: grid;

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

        width: 100%;
    }



    /* FLOATS */

    .whatsapp-float {

        right: 16px;
        bottom: 16px;

        width: 54px;
        height: 54px;

        font-size: 1.65rem;
    }


    .whatsapp-tooltip {
        display: none;
    }


    .back-top {

        right: 21px;
        bottom: 83px;
    }

}



/* ==========================================================
   MÓVILES PEQUEÑOS
========================================================== */

@media (max-width: 420px) {


    .hero h1 {
        font-size: 3rem;
    }


    .hero-card h2 {
        font-size: 1.65rem;
    }


    .trust-strip-grid {
        grid-template-columns: 1fr;
    }


    .trust-strip-grid > div {
        border-right: 0;
        border-bottom:
            1px solid var(--gray-200);
    }


    .experience-stats {
        grid-template-columns: 1fr;
    }


    .family-tags span {
        font-size: 0.69rem;
    }


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

}



/* ==========================================================
   ACCESIBILIDAD / REDUCCIÓN DE MOVIMIENTO
========================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }


    .reveal,
    .reveal-left,
    .reveal-right {

        opacity: 1;

        transform: none;
    }

}
/* ==========================================================
   FIX OVERFLOW MOBILE
========================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 900px) {

    .header {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }

    .header-container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand {
        min-width: 0;
        max-width: calc(100% - 55px);
    }

    .menu-toggle {
        flex: 0 0 42px;
        margin-left: auto;
    }

    .nav {
        right: 0;
        left: auto;
        width: min(85vw, 370px);
        max-width: 100%;
    }

}


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

@media (max-width: 650px) {

    .brand-logo {
        width: 43px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 1rem;
        white-space: nowrap;
    }

    /*
       Los elementos decorativos gigantes no son necesarios
       en móvil y pueden contribuir al overflow.
    */

    .hero::after,
    .amparo-section::before,
    .experience-section::before,
    .contact-section::after {
        display: none;
    }

}

/* ==========================================================
   DERECHO LABORAL
========================================================== */

.laboral-section {

    position: relative;

    background:
        linear-gradient(
            180deg,
            #f8f7f3 0%,
            #ffffff 45%,
            #f5f5f7 100%
        );

    overflow: hidden;
}


.laboral-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.laboral-decoration-one {

    width: 520px;
    height: 520px;

    top: -260px;
    right: -200px;

    border:
        1px solid rgba(113, 131, 199, 0.12);
}


.laboral-decoration-two {

    width: 300px;
    height: 300px;

    left: -160px;
    top: 40%;

    background:
        radial-gradient(
            circle,
            rgba(181, 190, 232, 0.12),
            transparent 70%
        );
}


.laboral-container {

    position: relative;
    z-index: 2;
}



/* ==========================================================
   HEADING
========================================================== */

.laboral-heading {

    max-width: 850px;

    margin-bottom: 70px;
}


.laboral-heading h2 {

    margin-bottom: 25px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size:
        clamp(3rem, 5vw, 5.7rem);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.045em;
}


.laboral-heading h2 em {

    display: block;

    color: var(--lavender);

    font-weight: 400;

    font-style: italic;
}


.laboral-heading-lead {

    max-width: 720px;

    color: var(--gray-500);

    font-size: 1.05rem;

    line-height: 1.85;
}



/* ==========================================================
   INTRO
========================================================== */

.laboral-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.85fr);

    gap: 75px;

    align-items: center;
}


.laboral-kicker {

    display: inline-block;

    margin-bottom: 13px;

    color: var(--blue);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}


.laboral-intro-content h3,
.laboral-services-heading h3,
.laboral-closing-content h3 {

    margin-bottom: 25px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size:
        clamp(2.2rem, 4vw, 3.8rem);

    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.025em;
}


.laboral-intro-content h3 em,
.laboral-services-heading h3 em,
.laboral-closing-content h3 em {

    display: block;

    color: var(--lavender);

    font-weight: 400;

    font-style: italic;
}


.laboral-intro-content > p {

    color: var(--gray-500);

    margin-bottom: 18px;
}



/* ==========================================================
   SERVICIOS PRINCIPALES INTRO
========================================================== */

.laboral-core-services {

    margin-top: 35px;

    border-top:
        1px solid var(--gray-200);
}


.laboral-core-item {

    display: grid;

    grid-template-columns: 54px 1fr;

    gap: 18px;

    padding: 23px 0;

    border-bottom:
        1px solid var(--gray-200);
}


.laboral-core-icon {

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--navy);

    color: var(--gold-soft);

    font-size: 1rem;
}


.laboral-core-item strong {

    display: block;

    margin-bottom: 4px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size: 1.35rem;
}


.laboral-core-item p {

    margin: 0;

    color: var(--gray-500);

    font-size: 0.8rem;

    line-height: 1.6;
}



/* ==========================================================
   VISUAL LABORAL
========================================================== */

.laboral-visual {

    position: relative;

    padding:
        0 0 55px 35px;
}


.laboral-image-wrap {

    position: relative;

    min-height: 650px;

    overflow: hidden;

    background: var(--navy);

    box-shadow: var(--shadow-lg);
}


.laboral-image-wrap img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s ease;
}


.laboral-image-wrap:hover img {

    transform: scale(1.035);
}


.laboral-image-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(10, 18, 34, 0.85) 100%
        );
}


.laboral-image-wrap::before {

    content: "";

    position: absolute;

    inset: 18px;

    z-index: 3;

    border:
        1px solid rgba(255, 255, 255, 0.35);

    pointer-events: none;
}


.laboral-image-badge {

    position: absolute;

    z-index: 4;

    left: 40px;
    right: 40px;
    bottom: 40px;

    display: flex;
    align-items: center;

    gap: 16px;

    color: var(--white);
}


.laboral-image-badge > span {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,0.3);

    color: var(--gold-soft);
}


.laboral-image-badge div {

    display: flex;
    flex-direction: column;
}


.laboral-image-badge small {

    color:
        rgba(255, 255, 255, 0.58);

    text-transform: uppercase;

    letter-spacing: 0.13em;

    font-size: 0.63rem;
}


.laboral-image-badge strong {

    font-family: var(--font-title);

    font-size: 1.45rem;

    font-weight: 500;
}



/* TARJETA FLOTANTE */

.laboral-floating-card {

    position: absolute;

    left: 0;
    bottom: 0;

    min-width: 285px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 22px;

    background: var(--navy);

    color: var(--white);

    box-shadow: var(--shadow-md);
}


.laboral-floating-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

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

    color: var(--gold-soft);
}


.laboral-floating-card div:last-child {

    display: flex;
    flex-direction: column;
}


.laboral-floating-card strong {

    font-family: var(--font-title);

    font-size: 1.15rem;
}


.laboral-floating-card span {

    color:
        rgba(255, 255, 255, 0.53);

    font-size: 0.65rem;
}



/* ==========================================================
   STATEMENT
========================================================== */

.laboral-statement {

    max-width: 1050px;

    margin:
        95px auto 100px;

    display: grid;

    grid-template-columns: auto 1fr;

    gap: 28px;

    align-items: center;

    padding: 42px 50px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #1c2c4e
        );

    color: var(--white);

    box-shadow: var(--shadow-md);
}


.laboral-statement-icon {

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,0.2);

    color: var(--gold-soft);

    font-size: 1.5rem;
}


.laboral-statement span {

    display: block;

    margin-bottom: 7px;

    color: var(--lavender-soft);

    font-size: 0.66rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}


.laboral-statement p {

    margin: 0;

    max-width: 800px;

    color:
        rgba(255,255,255,0.78);

    font-family: var(--font-title);

    font-size: 1.65rem;

    line-height: 1.3;
}



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

.laboral-services-heading {

    max-width: 770px;

    margin-bottom: 50px;
}



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

.laboral-services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.laboral-service-card {

    position: relative;

    min-height: 385px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    background: var(--white);

    border:
        1px solid var(--gray-200);

    overflow: hidden;

    transition: var(--transition);
}


.laboral-service-card::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--lavender),
            var(--gold)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}


.laboral-service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

    border-color:
        rgba(113, 131, 199, 0.3);
}


.laboral-service-card:hover::before {
    transform: scaleX(1);
}


.laboral-service-featured {

    color: var(--white);

    background:
        linear-gradient(
            150deg,
            var(--navy),
            var(--blue)
        );

    border-color: transparent;
}


.laboral-featured-label {

    position: absolute;

    top: 0;
    right: 0;

    padding:
        7px 13px;

    background: var(--gold-soft);

    color: var(--navy);

    font-size: 0.58rem;
    font-weight: 800;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.laboral-service-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}


.laboral-service-number {

    color:
        rgba(15, 23, 41, 0.14);

    font-family: var(--font-title);

    font-size: 2.6rem;
}


.laboral-service-featured
.laboral-service-number {

    color:
        rgba(255,255,255,0.18);
}


.laboral-service-icon {

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--gray-200);

    color: var(--blue);
}


.laboral-service-featured
.laboral-service-icon {

    border-color:
        rgba(255,255,255,0.22);

    color: var(--gold-soft);
}


.laboral-service-card h4 {

    margin-bottom: 15px;

    color: var(--navy);

    font-family: var(--font-title);

    font-size: 1.65rem;

    line-height: 1.08;
}


.laboral-service-featured h4 {
    color: var(--white);
}


.laboral-service-card > p {

    color: var(--gray-500);

    font-size: 0.82rem;

    line-height: 1.7;
}


.laboral-service-featured > p {

    color:
        rgba(255,255,255,0.64);
}


.laboral-service-line {

    height: 1px;

    margin-top: auto;
    margin-bottom: 18px;

    background: var(--gray-200);
}


.laboral-service-featured
.laboral-service-line {

    background:
        rgba(255,255,255,0.15);
}


.laboral-service-tag {

    color: var(--blue);

    font-size: 0.63rem;
    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.laboral-service-featured
.laboral-service-tag {

    color: var(--gold-soft);
}



/* ==========================================================
   CIERRE
========================================================== */

.laboral-closing {

    margin-top: 95px;

    display: grid;

    grid-template-columns:
        minmax(220px, 0.36fr)
        minmax(0, 1fr);

    background: var(--ivory);

    border:
        1px solid var(--gray-200);
}


.laboral-closing-mark {

    min-height: 360px;

    position: relative;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--blue)
        );

    overflow: hidden;
}


.laboral-closing-mark::before {

    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    border:
        1px solid rgba(255,255,255,0.11);

    transform: rotate(45deg);
}


.laboral-closing-mark span {

    position: relative;

    color: var(--white);

    font-family: var(--font-title);

    font-size: 7rem;

    line-height: 1;
}


.laboral-closing-content {

    padding:
        60px clamp(35px, 6vw, 75px);

    align-self: center;
}


.laboral-closing-content > p {

    max-width: 670px;

    color: var(--gray-500);

    margin-bottom: 30px;
}


.btn-laboral {

    background: var(--navy);

    color: var(--white);
}


.btn-laboral i {

    color: #25d366;
}


.btn-laboral:hover {

    background: var(--blue);

    transform: translateY(-3px);

    box-shadow: var(--shadow-md);
}



/* ==========================================================
   DERECHO LABORAL - TABLET
========================================================== */

@media (max-width: 1000px) {

    .laboral-intro-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .laboral-visual {

        max-width: 650px;

        margin-inline: auto;

        width: 100%;
    }


    .laboral-services-grid {

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

}



/* ==========================================================
   DERECHO LABORAL - MOBILE
========================================================== */

@media (max-width: 650px) {


    .laboral-heading {
        margin-bottom: 50px;
    }


    .laboral-heading h2 {

        font-size: 3rem;
    }


    .laboral-intro-grid {
        gap: 45px;
    }


    .laboral-intro-content h3,
    .laboral-services-heading h3,
    .laboral-closing-content h3 {

        font-size: 2.45rem;
    }


    .laboral-core-item {

        grid-template-columns:
            45px 1fr;

        gap: 14px;
    }


    .laboral-core-icon {

        width: 42px;
        height: 42px;
    }


    .laboral-visual {

        padding:
            0 0 45px 18px;
    }


    .laboral-image-wrap {
        min-height: 500px;
    }


    .laboral-image-badge {

        left: 28px;
        right: 28px;
        bottom: 80px;
    }


    .laboral-floating-card {

        width: calc(100% - 38px);

        min-width: 0;

        padding: 18px;
    }


    .laboral-statement {

        margin:
            70px 0;

        grid-template-columns: 1fr;

        padding:
            30px 25px;
    }


    .laboral-statement-icon {

        width: 58px;
        height: 58px;
    }


    .laboral-statement p {

        font-size: 1.4rem;
    }


    .laboral-services-grid {
        grid-template-columns: 1fr;
    }


    .laboral-service-card {

        min-height: auto;

        padding: 28px 24px;
    }


    .laboral-closing {

        margin-top: 70px;

        grid-template-columns: 1fr;
    }


    .laboral-closing-mark {

        min-height: 190px;
    }


    .laboral-closing-mark span {

        font-size: 5rem;
    }


    .laboral-closing-content {

        padding:
            40px 25px;
    }


    .btn-laboral {

        width: 100%;
    }

}
/* ==========================================================
   VIDEO PRESENTACIÓN GV
========================================================== */

.gv-video-section {

    position: relative;

    padding: 90px 0 105px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f6f2 100%
        );

    overflow: hidden;
}


.gv-video-section::before {

    content: "GV";

    position: absolute;

    right: -30px;
    top: -90px;

    font-family: var(--font-title);

    font-size: 18rem;

    line-height: 1;

    color:
        rgba(15, 23, 41, 0.025);

    pointer-events: none;
}


.gv-video-container {

    position: relative;
    z-index: 2;

    max-width: 1100px;
}


.gv-video-heading {

    text-align: center;

    margin-bottom: 38px;
}


.gv-video-heading .section-label {

    justify-content: center;
}


.gv-video-heading h2 {

    margin: 0;

    color: var(--navy);

    font-family: var(--font-title);

    font-size:
        clamp(2.7rem, 5vw, 4.5rem);

    font-weight: 500;

    line-height: 0.95;
}


.gv-video-heading h2 em {

    display: block;

    color: var(--lavender);

    font-weight: 400;

    font-style: italic;
}


/* CONTENEDOR VIDEO */

.gv-video-frame {

    position: relative;

    max-width: 1000px;

    margin-inline: auto;

    padding: 10px;

    background: var(--white);

    border:
        1px solid rgba(15, 23, 41, 0.08);

    box-shadow:
        0 25px 70px rgba(15, 23, 41, 0.16);
}


.gv-video-frame::before {

    content: "";

    position: absolute;

    z-index: -1;

    left: -16px;
    bottom: -16px;

    width: 100%;
    height: 100%;

    border:
        1px solid rgba(113, 131, 199, 0.24);
}


/* VIDEO */

.gv-video {

    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #05080f;

    object-fit: cover;
}


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

@media (max-width: 650px) {

    .gv-video-section {

        padding:
            65px 0 75px;
    }


    .gv-video-section::before {
        display: none;
    }


    .gv-video-heading {

        margin-bottom: 28px;
    }


    .gv-video-heading h2 {

        font-size: 2.8rem;
    }


    .gv-video-frame {

        width: 100%;

        padding: 5px;
    }


    .gv-video-frame::before {

        left: -7px;
        bottom: -7px;
    }

}