:root {
    --primary-navy: #0f172a;
    --primary-navy-light: #1e293b;
    --primary-blue: #1e40af;
    --blue: #2563eb;
    --accent: yellowgreen;
    --accent-dark: #6b8e23;

    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --bg-white: #ffffff;

    --border: #e2e8f0;

    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;

    --shadow-sm:
        0 2px 6px rgba(15, 23, 42, 0.06);

    --shadow-md:
        0 10px 25px rgba(15, 23, 42, 0.09);

    --shadow-lg:
        0 20px 40px rgba(15, 23, 42, 0.13);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;

    background: var(--bg-light);
    color: var(--text-dark);

    font-family:
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Roboto",
        sans-serif;

    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    border: 0;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    padding: 15px 0;

    background: rgba(15, 23, 42, 0.97);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: var(--shadow-md);
}

.header-content {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo-container {
    display: flex;
    align-items: center;

    min-width: 0;
}

.logo-text {
    display: block;

    color: #fff;

    font-size: 1.8rem;
    font-weight: 800;

    letter-spacing: 1.5px;
    line-height: 1;

    background:
        linear-gradient(
            135deg,
            yellowgreen,
            #ffffff
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   NAVEGACIÓN
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 13px;

    border-radius: 10px;

    color: #e2e8f0;

    font-size: 0.95rem;
    font-weight: 600;

    transition: var(--transition);
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover i {
    color: var(--accent);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    padding: 9px;

    cursor: pointer;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 3px;

    background: #fff;

    border-radius: 5px;

    transition: var(--transition);
}

.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);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #020617 0%,
            #0f172a 45%,
            #344516 100%
        );
}

.hero-background {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(132, 204, 22, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(37, 99, 235, 0.20),
            transparent 40%
        );
}

.hero-background::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -200px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);
}

.hero-background::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    bottom: -400px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.06);
}

.hero-content {
    position: relative;
    z-index: 1;

    max-width: 900px;

    padding-top: 90px;
    padding-bottom: 90px;

    text-align: center;
}

.hero-badge {
    display: inline-block;

    margin-bottom: 25px;

    padding: 7px 18px;

    border: 1px solid rgba(154, 205, 50, 0.45);

    border-radius: 50px;

    background: rgba(154, 205, 50, 0.12);

    color: var(--accent);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.hero h1 {
    max-width: 850px;

    margin: 0 auto 22px;

    color: #fff;

    font-size: clamp(2.5rem, 6vw, 4.5rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.hero h1 span {
    display: block;

    color: var(--accent);
}

.hero p {
    max-width: 700px;

    margin: 0 auto 35px;

    color: #cbd5e1;

    font-size: 1.15rem;

    line-height: 1.7;
}


/* =========================================================
   BOTONES HERO
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 13px 25px;

    border-radius: 50px;

    font-size: 0.98rem;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);

    color: #fff;

    box-shadow:
        0 8px 25px rgba(154, 205, 50, 0.28);
}

.btn-primary:hover {
    background: #8db32d;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(154, 205, 50, 0.4);
}

.btn-primary span {
    font-size: 1.2rem;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.07);

    color: #fff;
}

.btn-secondary:hover {
    background: #fff;

    color: var(--primary-navy);

    transform: translateY(-3px);
}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;
}

.hero-features div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #cbd5e1;

    font-size: 0.9rem;
}

.hero-features strong {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: rgba(154,205,50,.15);

    color: var(--accent);

    font-size: 0.75rem;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 90px 0 70px;

    background: #fff;
}

.intro-content {
    max-width: 850px;

    text-align: center;
}

.intro-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--accent-dark);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.intro-content h2 {
    margin-bottom: 20px;

    color: var(--primary-navy);

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.15;
}

.intro-content p {
    max-width: 760px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 1.05rem;

    line-height: 1.8;
}


/* =========================================================
   SERVICIOS
========================================================= */

.services-section {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #eef2f7 100%
        );
}

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.section-heading > div {
    max-width: 700px;
}

.section-heading > span,
.section-heading div > span {
    display: block;

    margin-bottom: 8px;

    color: var(--accent-dark);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.section-heading h2 {
    color: var(--primary-navy);

    font-size: clamp(1.8rem, 4vw, 2.6rem);

    font-weight: 800;

    line-height: 1.2;
}

.section-heading p {
    max-width: 350px;

    color: var(--text-muted);

    font-size: 0.95rem;
}


/* =========================================================
   BUSCADOR
========================================================= */

.service-search {
    position: relative;

    width: 100%;

    margin-bottom: 20px;
}

.service-search .search-icon {
    position: absolute;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: var(--text-muted);

    font-size: 1rem;

    pointer-events: none;
}

.service-search input {
    display: block;

    width: 100%;

    padding: 15px 20px 15px 50px;

    border: 1.5px solid var(--border);

    border-radius: 14px;

    outline: none;

    background: #fff;

    color: var(--text-dark);

    font-size: 1rem;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.service-search input::placeholder {
    color: #94a3b8;
}

.service-search input:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 4px rgba(154,205,50,.12);
}


/* =========================================================
   FILTROS
========================================================= */

.service-filters {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

.filter-btn {
    padding: 10px 16px;

    border: 1px solid var(--border);

    border-radius: 50px;

    background: #fff;

    color: var(--text-muted);

    cursor: pointer;

    font-size: 0.82rem;
    font-weight: 700;

    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--accent);

    color: var(--accent-dark);

    transform: translateY(-2px);
}

.filter-btn.active {
    border-color: var(--primary-navy);

    background: var(--primary-navy);

    color: #fff;

    box-shadow: var(--shadow-sm);
}


/* =========================================================
   GRID SERVICIOS
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;
    min-height: 330px;

    padding: 28px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: #fff;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--primary-blue),
            var(--accent)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(154,205,50,.45);

    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.hidden {
    display: none;
}


/* =========================================================
   ICONOS SERVICIO
========================================================= */

.service-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin-bottom: 20px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #e0f2fe,
            #ecfccb
        );

    font-size: 1.7rem;

    box-shadow:
        inset 0 0 0 1px rgba(154,205,50,.12);
}


/* =========================================================
   CONTENIDO SERVICIO
========================================================= */

.service-main {
    flex: 1;
}

.service-category {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--primary-blue);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: .6px;

    line-height: 1.4;
}

.service-main h3 {
    margin-bottom: 10px;

    color: var(--primary-navy);

    font-size: 1.25rem;

    font-weight: 750;

    line-height: 1.3;
}

.service-main p {
    color: var(--text-muted);

    font-size: 0.92rem;

    line-height: 1.65;
}


/* =========================================================
   LINK SERVICIO
========================================================= */

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    margin-top: 22px;

    color: var(--primary-blue);

    font-size: 0.88rem;

    font-weight: 800;

    transition: var(--transition);
}

.service-link span {
    font-size: 1.1rem;

    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-dark);
}

.service-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   SIN RESULTADOS
========================================================= */

.no-results {
    display: none;

    margin-top: 25px;

    padding: 30px;

    border: 1px dashed #cbd5e1;

    border-radius: var(--radius-md);

    background: #fff;

    text-align: center;
}

.no-results.show {
    display: block;
}

.no-results strong {
    display: block;

    margin-bottom: 7px;

    color: var(--primary-navy);

    font-size: 1.1rem;
}

.no-results p {
    color: var(--text-muted);

    font-size: 0.92rem;
}


/* =========================================================
   PROCESO
========================================================= */

.process-section {
    padding: 90px 0;

    background: #fff;
}

.section-heading.centered {
    display: block;

    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-heading.centered > span {
    display: block;

    margin-bottom: 8px;

    color: var(--accent-dark);

    font-size: .78rem;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.section-heading.centered h2 {
    margin-bottom: 12px;
}

.section-heading.centered p {
    max-width: 600px;

    margin: 0 auto;

    color: var(--text-muted);
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.process-card {
    position: relative;

    padding: 30px 24px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: #fff;

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);

    border-color: rgba(154,205,50,.45);
}

.process-number {
    position: absolute;

    top: 15px;
    right: 18px;

    color: #cbd5e1;

    font-size: .78rem;

    font-weight: 800;
}

.process-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin: 10px auto 20px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ecfccb
        );

    font-size: 1.8rem;
}

.process-card h3 {
    margin-bottom: 9px;

    color: var(--primary-navy);

    font-size: 1.15rem;
}

.process-card p {
    color: var(--text-muted);

    font-size: .9rem;

    line-height: 1.6;
}


/* =========================================================
   FORMATOS
========================================================= */

.formats-section {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #f8fafc,
            #eef2f7
        );
}

.formats-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;
}

.formats-header > div span {
    display: block;

    margin-bottom: 8px;

    color: var(--accent-dark);

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.formats-header h2 {
    color: var(--primary-navy);

    font-size: clamp(1.8rem, 4vw, 2.6rem);

    line-height: 1.2;
}

.formats-header > p {
    max-width: 380px;

    color: var(--text-muted);

    font-size: .95rem;
}

.formats-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.format-card {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: #fff;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.format-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);

    border-color: rgba(154,205,50,.4);
}

.format-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border-radius: 15px;

    background: #eff6ff;

    font-size: 1.5rem;
}

.format-content {
    flex: 1;

    min-width: 0;
}

.format-content > span {
    display: block;

    margin-bottom: 6px;

    color: var(--primary-blue);

    font-size: .67rem;

    font-weight: 800;

    line-height: 1.4;
}

.format-content h3 {
    margin-bottom: 8px;

    color: var(--primary-navy);

    font-size: 1.1rem;

    line-height: 1.3;
}

.format-content p {
    margin-bottom: 8px;

    color: var(--text-muted);

    font-size: .88rem;

    line-height: 1.55;
}

.format-content small {
    color: var(--text-light);

    font-size: .75rem;
}

.download-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    flex-shrink: 0;

    padding: 10px 15px;

    border-radius: 10px;

    background: var(--primary-navy);

    color: #fff;

    font-size: .78rem;

    font-weight: 700;

    transition: var(--transition);
}

.download-btn:hover {
    background: var(--accent-dark);

    transform: translateY(-2px);
}

.download-btn span {
    font-size: 1rem;
}


/* =========================================================
   AVISO
========================================================= */

.notice-section {
    padding: 35px 0;

    background: #fff;
}

.notice-box {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 25px 28px;

    border: 1px solid #bae6fd;

    border-left: 5px solid var(--primary-blue);

    border-radius: var(--radius-md);

    background: #f0f9ff;
}

.notice-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 12px;

    background: #dbeafe;

    font-size: 1.25rem;
}

.notice-box strong {
    display: block;

    margin-bottom: 5px;

    color: var(--primary-navy);

    font-size: 1rem;
}

.notice-box p {
    color: var(--text-muted);

    font-size: .88rem;

    line-height: 1.65;
}


/* =========================================================
   CONTACTO
========================================================= */

.contact-section {
    padding: 80px 0;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554
        );
}

.contact-container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.contact-text {
    max-width: 600px;
}

.contact-text > span {
    display: block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.contact-text h2 {
    margin-bottom: 15px;

    color: #fff;

    font-size: clamp(2rem, 4vw, 2.8rem);

    line-height: 1.15;
}

.contact-text p {
    color: #cbd5e1;

    font-size: 1rem;

    line-height: 1.7;
}

.contact-actions {
    display: flex;

    flex-direction: column;

    gap: 12px;

    width: 100%;
    max-width: 320px;
}

.contact-button {
    display: flex;

    align-items: center;

    gap: 13px;

    width: 100%;

    padding: 14px 18px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 12px;

    background: rgba(255,255,255,.07);

    color: #fff;

    font-size: .9rem;

    font-weight: 700;

    transition: var(--transition);
}

.contact-button:first-letter {
    font-size: 1.1rem;
}

.contact-button:hover {
    transform: translateY(-3px);

    background: rgba(255,255,255,.13);
}

.contact-button.email:hover {
    border-color: #60a5fa;
}

.contact-button.phone:hover {
    border-color: #86efac;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;

    padding: 28px 20px 20px;

    background: #020617;

    color: #94a3b8;

    text-align: center;
}

.footer-content {
    display: flex;

    flex-direction: column;

    align-items: center;
}

.redes-footer {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 15px;
}

.redes-footer a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(255,255,255,.07);

    transition: var(--transition);
}

.icon-redes-footer {
    color: #fff;

    font-size: 1rem;

    transition: var(--transition);
}

.redes-footer a:hover {
    transform: translateY(-4px);

    background: var(--accent);
}

.footer-divider {
    width: 100%;

    height: 1px;

    margin: 10px 0 15px;

    border: 0;

    background: rgba(255,255,255,.1);
}

.footer-info h5 {
    margin: 4px 0;

    color: #cbd5e1;

    font-size: .78rem;

    font-weight: 500;

    line-height: 1.4;
}


/* =========================================================
   FOCUS / ACCESIBILIDAD
========================================================= */

:focus-visible {
    outline: 3px solid var(--accent);

    outline-offset: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .hero {
        min-height: 560px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .formats-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        align-items: flex-start;
    }

}


/* =========================================================
   TABLET PEQUEÑA / MOBILE
========================================================= */

@media (max-width: 768px) {

    .header {
        padding: 12px 0;
    }

    .header-content {
        min-height: 45px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;

        top: calc(100% + 12px);

        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 8px;

        width: 100%;

        padding: 15px;

        border: 1px solid rgba(255,255,255,.08);

        border-radius: 15px;

        background: rgba(15,23,42,.99);

        box-shadow:
            0 20px 35px rgba(0,0,0,.25);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;
    }

    .nav-menu.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

    .nav-link {
        width: 100%;

        justify-content: center;

        padding: 14px;

        background: rgba(255,255,255,.05);
    }

    .nav-link:hover {
        background: rgba(255,255,255,.1);
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-heading,
    .formats-header {
        display: block;
    }

    .section-heading p,
    .formats-header > p {
        max-width: 650px;

        margin-top: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-actions {
        max-width: 500px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-badge {
        max-width: 100%;

        padding: 6px 12px;

        font-size: .68rem;

        letter-spacing: .5px;
    }

    .hero h1 {
        font-size: 2rem;

        letter-spacing: -.5px;
    }

    .hero p {
        font-size: .94rem;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;

        align-items: center;

        gap: 10px;
    }

    .intro-section,
    .services-section,
    .process-section,
    .formats-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .intro-content p {
        font-size: .94rem;
    }

    .section-heading h2,
    .formats-header h2 {
        font-size: 1.8rem;
    }

    .service-filters {
        flex-direction: column;

        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .service-card {
        min-height: auto;

        padding: 24px 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .format-card {
        flex-direction: column;

        padding: 22px;
    }

    .format-icon {
        width: 55px;
        height: 55px;
    }

    .download-btn {
        width: 100%;
    }

    .notice-box {
        flex-direction: column;

        padding: 22px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-text h2 {
        font-size: 2rem;
    }

}


/* =========================================================
   MOBILE PEQUEÑO
========================================================= */

@media (max-width: 420px) {

    .logo-text {
        font-size: 1.35rem;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: .9rem;
    }

    .intro-content h2 {
        font-size: 1.6rem;
    }

    .section-heading h2,
    .formats-header h2 {
        font-size: 1.55rem;
    }

    .service-card {
        padding: 22px 18px;
    }

    .service-main h3 {
        font-size: 1.15rem;
    }

    .footer-info h5 {
        font-size: .72rem;
    }

}


/* =========================================================
   REDUCIR ANIMACIONES
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

}