/* ── Reset & Variables ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ── Paleta de la plataforma ── */
    --azul-oscuro: #00316b;
    --azul-medio: #006996;
    --azul-claro: #009fdf;
    --verde: #7cb828;
    --azul-aqua: #36b9cb;
    --amarillo: #fcdb1c;
    --color-azul: #18ace3;
    --color-verde: #009640;
    --color-morado: #ab4191;
    --color-blanco: #FFFFFF;
    --guayaba: #FD6C69;
    --montana: #1B3834;
    --mantequilla: #F8F3DE;
    --verde-claro: #D6FBB5;
    --verde-limoncito: #55bf3b;
    --cielo: #A6DDF0;
    --guayacan: #F9DA59;
    --azul-acopi: #00316b;
    --metal: #bdbdbd;
    --cian: #21a9ff;
    --gris-claro: #f5f5f5;

    /* ── Aliases semánticos para esta landing ── */
    --primary: var(--azul-oscuro);
    --primary-mid: var(--azul-medio);
    --accent: var(--azul-aqua);
    --accent-hover: var(--color-azul);
    --accent-alt: var(--verde-limoncito);
    --highlight: var(--amarillo);
    --navy: var(--azul-oscuro);
    --text-dark: #1a2d45;
    --text-muted: #5a6e85;
    --white: #ffffff;
    --off-white: var(--gris-claro);
    --card-bg: #ffffff;
    --pale-bg: #e8f4fb;
    --border: rgba(54, 185, 203, .18);
    --shadow-sm: 0 2px 12px rgba(0, 49, 107, .08);
    --shadow-md: 0 8px 32px rgba(0, 49, 107, .14);
    --shadow-lg: 0 20px 60px rgba(0, 49, 107, .2);
    --radius: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── Navbar ── */
nav {
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(54, 185, 203, .2);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.5px;
}

.nav-logo span {
    color: var(--azul-aqua);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--azul-aqua);
}

.nav-cta {
    background: var(--azul-aqua);
    color: var(--white) !important;
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background .2s, transform .15s !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

/* ── CATALOGO HERO - Clases exclusivas ── */
.catalogo-hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--azul-oscuro);
    position: relative;
    overflow: hidden;
    padding: 40px 0 40px;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.catalogo-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 50%, rgba(54, 185, 203, .18) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(0, 105, 150, .5) 0%, transparent 45%);
}

.catalogo-hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(54, 185, 203, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(54, 185, 203, .06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.catalogo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.catalogo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(54, 185, 203, .18);
    border: 1px solid rgba(54, 185, 203, .35);
    color: var(--azul-aqua);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: catalogo-fadeUp .6s .1s both;
}

.catalogo-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.2rem;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    animation: catalogo-fadeUp .7s .2s both;
}

.catalogo-hero-title em {
    font-style: italic;
    color: var(--azul-aqua);
}

.catalogo-hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 2.4rem;
    animation: catalogo-fadeUp .7s .35s both;
}

.catalogo-hero-search {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 700px;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .25);
    margin: 0 auto 2rem;
    animation: catalogo-fadeUp .7s .45s both;
}

.catalogo-hero-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: var(--text-dark);
    background: transparent;
}

.catalogo-hero-search input::placeholder {
    color: #aaa;
}

.catalogo-hero-search button {
    background: var(--azul-aqua);
    border: none;
    cursor: pointer;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: background .2s;
}

.catalogo-hero-search button:hover {
    background: var(--accent-hover);
}

.catalogo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.4rem;
    animation: catalogo-fadeUp .7s .45s both;
}

.catalogo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--azul-aqua);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: .9rem 2rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(54, 185, 203, .4);
}

.catalogo-btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(54, 185, 203, .5);
}

.catalogo-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .35);
    cursor: pointer;
    padding: .9rem 2rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .15s;
}

.catalogo-btn-secondary:hover {
    border-color: var(--verde-limoncito);
    background: rgba(46, 204, 113, .08);
    transform: translateY(-2px);
}

.catalogo-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    animation: catalogo-fadeUp .7s .55s both;
}

.catalogo-stat-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255, 255, 255, .75);
    font-size: .88rem;
}

.catalogo-stat-item i {
    color: var(--azul-aqua);
    font-size: 1.1rem;
}

/* ── Animaciones exclusivas ── */
@keyframes catalogo-fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Floating Contact Button ── */
#float-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--azul-aqua);
    color: var(--white);
    padding: .85rem 1.6rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 28px rgba(54, 185, 203, .5);
    transition: background .2s, transform .15s, box-shadow .2s;
    animation: bounceIn .8s 1s both;
}

#float-contact:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(54, 185, 203, .6);
}

#float-contact .pulse {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    position: relative;
}

#float-contact .pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: pulseRing 1.5s infinite;
}

/* ── Sections common ── */
section {
    padding: 90px 5%;
}

.section-label {
    display: inline-block;
    color: var(--azul-medio);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--azul-oscuro);
    line-height: 1.2;
    margin-bottom: .9rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 560px;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-sub {
    margin: 0 auto;
}

/* ── Problem section ── */
#problem {
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.problem-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: transform .25s, box-shadow .25s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--pale-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-medio);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--azul-oscuro);
}

.problem-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.stat-banner {
    margin-top: 2.5rem;
    background: var(--pale-bg);
    border: 1px solid rgba(0, 159, 223, .2);
    border-radius: var(--radius);
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--azul-oscuro);
    font-size: .95rem;
}

.stat-banner i {
    font-size: 1.4rem;
    color: var(--azul-medio);
    flex-shrink: 0;
}

/* ── Solution ── */
#solution {
    background: var(--off-white);
}

.solution-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--pale-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-medio);
    font-size: 1.5rem;
    margin: 0 auto 1.1rem;
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: .5rem;
}

.value-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── How it works ── */
#how {
    background: var(--azul-oscuro);
}

#how .section-title {
    color: var(--white);
}

#how .section-sub {
    color: rgba(255, 255, 255, .65);
}

#how .section-label {
    color: var(--azul-aqua);
}

.steps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
    counter-reset: step;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(54, 185, 203, .2);
    border-radius: var(--radius);
    padding: 1.8rem 1.4rem;
    position: relative;
    transition: background .25s, transform .25s;
}

.step-item:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--azul-aqua);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.step-item i {
    font-size: 1.6rem;
    color: var(--azul-aqua);
    margin-bottom: .8rem;
    display: block;
}

.step-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .45rem;
}

.step-item p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.55;
}

.step-arrow {
    align-self: center;
    color: var(--azul-aqua);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ── Services / Areas ── */
#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.service-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--azul-aqua);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--pale-bg);
    border: 1.5px solid rgba(0, 159, 223, .15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-medio);
    font-size: 1.3rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul-oscuro);
}

.service-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Packages / Pricing ── */
#packages {
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    background: var(--azul-oscuro);
    border-color: var(--azul-aqua);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured h3,
.pricing-card.featured .pkg-feature {
    color: var(--white) !important;
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, .65) !important;
}

.pricing-badge {
    display: inline-block;
    background: var(--amarillo);
    color: var(--azul-oscuro);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .2rem .7rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: .4rem;
}

.pricing-card>p {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
    line-height: 1.5;
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    flex: 1;
}

.pkg-feature {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: var(--text-dark);
    line-height: 1.45;
}

.pkg-feature i {
    color: var(--verde-limoncito);
    margin-top: .1rem;
    flex-shrink: 0;
}

.pkg-feature.no i {
    color: #aaa;
}

.pkg-feature.no span {
    color: var(--text-muted);
}

.pricing-cta {
    margin-top: 1.8rem;
    width: 100%;
    padding: .85rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .2s;
}

.pricing-cta.light {
    background: var(--pale-bg);
    color: var(--azul-oscuro);
}

.pricing-cta.light:hover {
    background: var(--cielo);
}

.pricing-cta.dark {
    background: var(--azul-aqua);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(54, 185, 203, .4);
}

.pricing-cta.dark:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* ── Results ── */
#results {
    background: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.result-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    transition: transform .25s, box-shadow .25s;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.result-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: .8rem;
}

.result-label i {
    color: var(--azul-medio);
}

.result-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--azul-medio);
    line-height: 1;
    margin-bottom: .5rem;
}

.result-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Contact Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open {
    display: flex;
    animation: fadeIn .25s;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 2.5rem 2.8rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp .35s;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--off-white);
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: background .2s;
}

.modal-close:hover {
    background: #ddd;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: .3rem;
}

.modal-sub {
    color: var(--text-muted);
    font-size: .93rem;
    margin-bottom: 1.8rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 1.1rem;
}

.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid #d0dce8;
    border-radius: 10px;
    padding: .7rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--azul-aqua);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    width: 100%;
    padding: .95rem;
    background: var(--azul-aqua);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 18px rgba(54, 185, 203, .35);
    margin-top: .5rem;
}

.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .9rem;
}

.form-note i {
    color: var(--azul-aqua);
}

/* ── Footer ── */
footer {
    background: var(--azul-oscuro);
    padding: 3.5rem 5% 2rem;
    color: rgba(255, 255, 255, .65);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand .nav-logo {
    font-size: 1.6rem;
    margin-bottom: .7rem;
}

.footer-brand p {
    font-size: .88rem;
    max-width: 260px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--azul-aqua);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    font-size: .82rem;
}

/* ── Animations ── */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.5) translateY(20px);
    }

    70% {
        transform: scale(1.06) translateY(-3px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media(max-width:768px) {
    .nav-links {
        display: none;
    }

    .catalogo-hero {
        padding: 96px 0 56px;
    }

    .catalogo-hero-content {
        padding: 0 16px;
    }

    .catalogo-hero-title {
        font-size: 2.4rem;
    }

    .catalogo-hero-sub {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .catalogo-hero-actions {
        margin-bottom: 1rem;
    }

    .catalogo-hero-stats {
        gap: .8rem 1.2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .step-arrow {
        display: none;
    }

    .modal-box {
        padding: 2rem 1.6rem;
    }
}



ul.list-unstyled li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* ============================================
        LANDING PAGE - PRODUCTIVIDAD
        File: public/css/landing.css
        ============================================ */

:root {
    --color-primary: #0066cc;
    --color-primary-dark: #003d99;
    --color-primary-light: #cce0ff;
    --color-text: #1a1a1a;
    --color-text-secondary: #666666;
    --color-background: #ffffff;
    --color-background-light: #f5f5f5;
    --color-border: #e5e5e5;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;

    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

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

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.16);

    --transition: all 0.3s ease;
}

/* ========== TYPOGRAPHY ========== */
/* body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                "Helvetica Neue", Arial, sans-serif;
            color: var(--color-text);
            background: var(--color-background);
            line-height: 1.6;
        } */

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

h1 {
    font-size: clamp(32px, 5vw, 56px);
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

/* ========== CONTAINER & GRID ========== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

.py-5 {
    padding: var(--spacing-3xl) 0;
}

.py-3 {
    padding: var(--spacing-2xl) 0;
}

.mb-5 {
    margin-bottom: var(--spacing-3xl);
}

.mb-3 {
    margin-bottom: var(--spacing-2xl);
}

.mt-4 {
    margin-top: var(--spacing-xl);
}

.mt-5 {
    margin-top: var(--spacing-3xl);
}

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

.text-success {
    color: var(--color-success);
}

.bg-light {
    background: var(--color-background-light);
}

.my-5 {
    margin: var(--spacing-3xl) 0;
}

/* ========== BUTTONS ========== */
/* .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-sm);
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 16px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            white-space: nowrap;
        } */

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 20px;
}

.btn-block {
    width: 100%;
}

/* ========== SECTIONS ========== */
.section-header {
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f5ff 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.08);
    z-index: 0;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    z-index: 2;
}

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

.hero-headline {
    color: var(--color-primary);
    /* font-size: clamp(36px, 5vw, 52px);
            line-height: 1.3;
            margin-bottom: var(--spacing-lg); */
}

.hero-subheadline {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.hero-disclaimer {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.hero-image {
    position: relative;
}

.mockup-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.dashboard-mockup {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    animation: float-badge 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.floating-badge.success {
    background: var(--color-success);
    color: white;
    bottom: 60px;
    left: 20px;
}

.floating-badge.warning {
    background: var(--color-warning);
    color: white;
    top: 60px;
    right: 20px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    color: var(--color-background-light);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
        margin-bottom: var(--spacing-2xl);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }
}

/* ========== PROBLEMS SECTION ========== */
.problems-section {
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
}

.problem-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

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

.problem-icon {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.problem-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.problem-impact {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.problem-impact small {
    color: var(--color-danger);
    font-weight: 600;
}

/* ========== FEATURES SECTION ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
}

.feature-card {
    padding: var(--spacing-xl);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition);
    background: white;
    border-radius: var(--radius-sm);
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: var(--spacing-lg);
}

.feature-card h3 {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.learn-more {
    display: inline-block;
    margin-top: var(--spacing-md);
    font-weight: 600;
    color: var(--color-primary);
}

.learn-more:hover {
    text-decoration: underline;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: white;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: var(--spacing-xl);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border-radius: 50%;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.step h3 {
    color: var(--color-text);
    font-size: 20px;
    margin-bottom: var(--spacing-md);
}

.step p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.step-time {
    margin-top: var(--spacing-md);
    font-weight: 600;
    color: var(--color-primary);
}

.step-arrow {
    font-size: 32px;
    color: var(--color-primary);
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-md) 0;
    }
}

/* ========== FOR WHOM SECTION ========== */
.for-whom {
    background: var(--color-background-light);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
}

.segment-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-primary);
    transition: var(--transition);
}

.segment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-dark);
}

.segment-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.segment-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.segment-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

.segment-card ul {
    list-style: none;
    padding: 0;
}

.segment-card li {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
}

.segment-card li:before {
    content: '✓ ';
    color: var(--color-success);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

/* ========== TRUST SECTION ========== */
.trust-section {
    background: white;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    margin: var(--spacing-3xl) 0;
}

.logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    max-height: 60px;
    max-width: 200px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.logo-placeholder {
    background: var(--color-primary-light);
    padding: var(--spacing-xl) var(--spacing-2xl);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-weight: 600;
    min-width: 200px;
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
}

.stat {
    padding: var(--spacing-xl);
    text-align: center;
}

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.badge {
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

hr {
    border: none;
    height: 2px;
    background: var(--color-border);
    margin: var(--spacing-2xl) 0;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--color-background-light);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-background-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: var(--spacing-lg);
    background: var(--color-background-light);
    border-top: 1px solid var(--color-border);
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--color-text-secondary);
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
    background: rgb(243, 247, 255);
    color: #1a1a1a;
    text-align: center;
}

.cta-headline {
    color: #1a1a1a;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: var(--spacing-lg);
}

.cta-subheadline {
    font-size: 18px;
    color: #666666;
    margin-bottom: var(--spacing-2xl);
}

.cta-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

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

.final-cta .btn-primary:hover {
    background: var(--color-primary-light);
}

.final-cta .btn-secondary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.final-cta .btn-secondary:hover {
    background: rgba(79, 172, 254, 0.1);
    color: var(--color-primary);
}

.or-divider {
    color: rgba(255, 255, 255, 0.6);
    margin: var(--spacing-md) 0;
    font-weight: 600;
}

.cta-disclaimer {
    font-size: 14px;
    color: #999999;
}

@media (max-width: 768px) {
    .cta-options {
        width: 100%;
    }

    .btn-xl {
        width: 100%;
    }
}

/* ========== FOOTER SECTION ========== */
.footer-section {
    background-color: #17a2b8;
    color: #ccc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    margin-bottom: var(--spacing-lg);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: var(--spacing-md);
}

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

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-column p {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    border-top: 1px solid #e5e5e5;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: var(--spacing-lg);
}

.social-links a {
    color: #ccc;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .problems-grid,
    .features-grid,
    .segments-grid,
    .trust-stats {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .btn {
        width: auto;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
}

/* ========== DARK MODE ========== */
@media (prefers-color-scheme: dark) {
    :root {
        --color-text: #f0f0f0;
        --color-text-secondary: #b0b0b0;
        --color-background: #1a1a2e;
        --color-background-light: #242d48;
        --color-border: #333333;
    }

    body {
        background: var(--color-background);
        color: var(--color-text);
    }

    .hero-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #242d48 100%);
    }

    .problem-card,
    .feature-card,
    .segment-card,
    .step {
        background: #242d48;
    }

    .faq-question {
        background: #242d48;
    }

    .faq-question:hover {
        background: #2d3856;
    }

    .faq-answer {
        background: #2d3856;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated {
    animation: slideInUp 0.6s ease-out;
}

/* ========== MESA DE SERVICIOS HOME ========== */
.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-outline:hover {
    background: var(--color-background-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.context-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.context-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.context-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-3xl);
    align-items: center;
}

.context-copy h3 {
    font-size: 28px;
    margin-bottom: var(--spacing-md);
}

.context-copy p {
    color: var(--color-text-secondary);
}

.context-values {
    margin-top: var(--spacing-lg);
    display: grid;
    gap: var(--spacing-lg);
}

.context-values strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.context-geometry {
    position: relative;
}

.context-panel {
    background: #f6f9ff;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.context-panel h4 {
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.context-highlight {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
}

.context-shape {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 160px;
    height: 160px;
    background: rgba(0, 102, 204, 0.12);
    border-radius: 24px;
    transform: rotate(12deg);
    z-index: 1;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

.services-section {
    background: #f6f8fc;
}

.services-section .section-title {
    color: #0f3b70;
}

.services-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-3xl);
    align-items: start;
}

.services-summary {
    background: #ffffff;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.services-cta {
    margin-top: var(--spacing-lg);
}

.services-lines {
    display: grid;
    gap: var(--spacing-lg);
}

.service-line {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.service-line h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 18px;
}

.service-line p {
    margin: 0;
    color: var(--color-text-secondary);
}

.service-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cta-band {
    background: rgb(243, 247, 255);
    color: #1a1a1a;
    padding: var(--spacing-2xl) 0;
}

.cta-band-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    align-items: center;
    justify-content: space-between;
}

.cta-band-content h3 {
    color: #1a1a1a;
    margin-bottom: var(--spacing-sm);
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.mesa-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.mesa-section .section-title {
    color: #1a3c6b;
}

.mesa-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-3xl);
    align-items: stretch;
}

.benefits-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.benefits-card h3 {
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.mesa-benefits ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0;
    display: grid;
    gap: var(--spacing-sm);
}

.mesa-benefits li {
    display: flex;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
}

.mesa-journey {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px dashed var(--color-border);
}

.journey-step:last-child {
    border-bottom: none;
}

.journey-step span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.journey-step h4 {
    margin: 0 0 var(--spacing-xs);
    font-size: 18px;
}

.impact-section {
    background: #f3f7ff;
}

.impact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.impact-quote {
    background: #ffffff;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--color-primary);
    position: relative;
}

.impact-quote i {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.impact-quote p {
    font-size: 18px;
    margin-bottom: var(--spacing-md);
}

.impact-author {
    font-weight: 600;
    color: var(--color-primary);
}

.impact-stats {
    display: grid;
    gap: var(--spacing-lg);
}

.impact-stats div {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.impact-stats strong {
    display: block;
    font-size: 24px;
    color: var(--color-primary);
}

.impact-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.impact-strip h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

/* ========== CAROUSEL STYLES ========== */
.impact-carousel {
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
}

.carousel-slide .impact-quote {
    width: 100%;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--color-primary-light);
}

/* ========== CAROUSEL CONTROLS (Bootstrap Override) ========== */
.carousel-control-prev,
.carousel-control-next {
    width: auto !important;
    background: var(--color-primary);
    border-radius: 50%;
    padding: 8px 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--color-primary-dark);
    transform: translateY(-50%) scale(1.1);
}

#catalogosPadresCarousel {
    padding: 0 80px;
}

#catalogosPadresCarousel .carousel-item .row {
    justify-content: flex-start;
}

/* ========== CONTACT GRID ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-section {
    background: #ffffff;
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    border-top: 4px solid #0f3b70;
}

.contact-info {
    background: #f6f9ff;
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
}

.contact-info h3 {
    margin-bottom: var(--spacing-md);
}

.contact-highlights {
    margin-top: var(--spacing-lg);
    display: grid;
    gap: var(--spacing-sm);
}

.contact-highlights div {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    color: var(--color-text-secondary);
}

.contact-badges {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.contact-badges span {
    background: #ffffff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.contact-form .form-control {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    /* padding: 12px 14px; */
    font-size: 14px;
    background: #fff;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

@media (max-width: 768px) {
    .cta-band-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band-actions {
        width: 100%;
    }

    .cta-band-actions .btn {
        width: 100%;
    }

    .services-layout,
    .context-layout,
    .mesa-layout,
    .impact-layout {
        grid-template-columns: 1fr;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-text: #f5f5f5;
        --color-text-secondary: #c7c7c7;
        --color-background: #0f1218;
        --color-background-light: #151a22;
        --color-border: #242b36;
        --color-primary: #6aa8ff;
        --color-primary-dark: #3e78d6;
        --color-primary-light: rgba(106, 168, 255, 0.2);
    }

    body {
        background: var(--color-background);
        color: var(--color-text);
    }

    .hero-section,
    .context-section,
    .services-section,
    .mesa-section,
    .impact-section,
    .contact-section,
    .final-cta {
        background: var(--color-background);
    }

    .hero-section::after,
    .context-section::before,
    .context-shape {
        opacity: 0.35;
    }

    .services-summary,
    .service-line,
    .context-panel,
    .impact-quote,
    .impact-stats div,
    .impact-strip,
    .mesa-journey,
    .contact-info,
    .contact-form-card {
        background: var(--color-background-light);
        border-color: var(--color-border);
        box-shadow: none;
    }

    .services-section .section-subtitle,
    .services-summary p,
    .service-line p {
        color: #d2dbe8;
    }

    .services-summary h3,
    .service-line h4 {
        color: #f3f6fb;
    }

    .impact-section .section-subtitle,
    .impact-quote p,
    .impact-stats span,
    .impact-strip p {
        color: #d2dbe8;
    }

    .impact-quote,
    .impact-stats div,
    .impact-strip {
        background: var(--color-background-light);
        border-color: var(--color-border);
    }

    .impact-strip h4,
    .impact-stats strong {
        color: #8fbaff;
    }

    .contact-badges span,
    .context-highlight {
        background: #0f1218;
        border-color: var(--color-border);
        color: var(--color-text-secondary);
    }

    .section-title,
    .hero-headline,
    .mesa-section .section-title,
    .services-section .section-title {
        color: var(--color-text);
    }

    .context-section .section-subtitle,
    .context-copy p,
    .context-values p,
    .values-list li {
        color: #d2dbe8;
    }

    .context-values strong,
    .context-panel h4 {
        color: #8fbaff;
    }

    .cta-band {
        background: #151a22;
    }

    .btn-primary {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #0f1218;
    }

    .btn-secondary,
    .btn-outline {
        color: var(--color-text);
        border-color: var(--color-border);
    }

    .btn-secondary:hover,
    .btn-outline:hover {
        background: #1e2531;
        color: var(--color-text);
    }
}

/* ========== CONTACT SECTION UTILITIES ========== */
.contact-subheading {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.community-card {
    background: #f3f7ff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    color: #1a1a1a;
    border-left: 4px solid #4facfe;
}

.community-card h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #1a1a1a;
}

.community-card p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== PROCESS ITEMS ========== */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.process-item i {
    color: #51cf66;
    margin-top: 4px;
    flex-shrink: 0;
}

.process-item div {
    flex: 1;
}

.process-item div strong {
    display: block;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.process-item div small {
    margin-left: 0;
    color: #666666;
    display: block;
    font-size: 12px;
}

/* ========== CONTACT FORM BUTTONS ========== */
.form-footer {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-submit,
.btn-reset {
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-submit {
    background: #0066cc;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
}

.btn-submit:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
    color: white;
    text-decoration: none;
}

.btn-reset {
    background: #f3f7ff;
    color: #0066cc;
    border: 2px solid #0066cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-reset:hover {
    background: #e8f2ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    color: #003d99;
    text-decoration: none;
}

@media (max-width: 768px) {
    .form-footer {
        flex-direction: column;
    }

    .btn-submit,
    .btn-reset {
        width: 100%;
    }
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-header i {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 15px;
    display: block;
}

.info-cards-section {
    margin-bottom: 60px;
    animation: slideInUp 0.8s ease;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #0066cc;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-top-color: #00f2fe;
}

.info-card i {
    font-size: 42px;
    color: #0066cc;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.info-card:hover i {
    color: #003d99;
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    margin-top: 0;
}

.info-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.form-section {
    animation: slideInUp 0.8s ease 0.2s both;
}

.form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    background: white;
    padding: 30px;
    color: #1a1a1a;
    border-bottom: 3px solid #0066cc;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
}

.form-header i {
    font-size: 28px;
    color: #0066cc;
}

.form-header p {
    margin: 10px 0 0 0;
    color: #666666;
    font-size: 14px;
}

.form-body {
    padding: 40px;
}

@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 16px;
    }

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

    .contact-container {
        padding: 30px 15px;
    }

    .form-body {
        padding: 25px;
    }

    .info-cards-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 24px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-container {
        padding: 20px 10px;
    }

    .form-body {
        padding: 20px;
    }
}

/* ========== FORM STYLES ========== */
body {
    background: #f3f7ff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-col-6 {
    grid-column: span 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #0066cc;
    font-size: 16px;
}

.required {
    color: #ff6b6b;
    font-weight: 700;
}

.form-control,
.custom-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafafa;
    color: #333;
    width: 100%;
}

.form-control:focus,
.custom-select:focus {
    background-color: white;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    color: #333;
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

textarea.form-control::placeholder {
    color: #999;
    opacity: 1;
}

/* File Input */
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-file-label::after {
    content: "Seleccionar archivo";
    color: #666;
}

.custom-file-input:lang(es)~.custom-file-label::after {
    content: "Seleccionar archivo";
}

.custom-file-label {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    color: #999;
    font-size: 14px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-file-label::before {
    content: "📎";
    font-size: 16px;
}

.custom-file-input:focus~.custom-file-label {
    border-color: #0066cc;
    background-color: white;
}

.custom-file-input {
    display: none;
}

/* Alerts */
.alert {
    border-left: 4px solid;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background-color: #fee;
    border-left-color: #ff6b6b;
    color: #c92a2a;
}

.alert-success {
    background-color: #e7f5e7;
    border-left-color: #51cf66;
    color: #2f5233;
}

.alert i {
    margin-right: 10px;
    font-weight: 600;
}

.alert ul {
    margin-bottom: 0;
    margin-top: 8px;
    padding-left: 20px;
}

/* Invalid feedback */
.invalid-feedback {
    display: block;
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
}

.is-invalid {
    border-color: #ff6b6b !important;
}

/* Utility classes */
.text-muted {
    color: #999;
}

.mt-2 {
    margin-top: 8px;
}

.d-block {
    display: block;
}

.mr-1 {
    margin-right: 4px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Estilos para la sección de servicios que requieres */
.servicios-requieres-section {
    position: relative;
    color: white;
    padding: 3rem 0;
    border-radius: 20px;
}

/* Estilos para el contenedor del formulario */
.servicios-requieres-section .bg-white {
    background-color: #ffffff;
    color: #212529;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Estilos para el título del formulario */
.servicios-requieres-section .bg-white h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Estilos para los selects del formulario */
.servicios-requieres-section .form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.servicios-requieres-section .form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Estilos para las etiquetas del formulario */
.servicios-requieres-section .form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Estilos para el botón gradient */
.servicios-requieres-section .btn-gradient {
    background: linear-gradient(to right, #00cba9, #1cb5e0);
    border: none;
    color: white;
    border-radius: 12px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
}

.servicios-requieres-section .btn-gradient:hover {
    background: linear-gradient(to right, #1cb5e0, #00cba9);
    color: white;
}

/* Estilos para el contenedor del resultado */
.servicios-requieres-section #resultado {
    margin-top: 1.5rem;
}

.servicios-requieres-section #resultado h4 {
    font-weight: 500;
    line-height: 1.2;
}

.servicios-requieres-section #resultado ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.servicios-requieres-section #resultado li {
    margin-bottom: 0.5rem;
}

/* Estilos para el texto principal */
.servicios-requieres-section .display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 700;
    line-height: 1.2;
}

/* Estilos responsivos */
@media (min-width: 768px) {
    .servicios-requieres-section .display-5 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .servicios-requieres-section .bg-white {
        margin-top: 1rem;
    }
}

.contenedor-servicios {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 15px;
}

.servicios-izquierda,
.servicios-derecha {
    flex: 1;
    min-width: 300px;
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.servicio-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.servicio-contenido {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 10px;
    color: white;
    text-align: center;
}

.servicio-titulo {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.boton-vermas {
    background-color: #ffffff;
    color: #333;
    padding: 6px 15px;
    font-size: 14px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.boton-vermas:hover {
    background-color: #f0f0f0;
}

.grid-publicidad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.publicidad-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.publicidad-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-servicios {
        grid-template-columns: 1fr;
    }
}

.montar-img {
    position: absolute;
    top: 75%;
    left: 18%;
    transform: translate(-50%, -50%);
    width: 22%;
    text-align: center;
}

.hero {
    background: url('img/mipymenegocia/comunidad/Baner-principal1.jpg') center center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    color: #0d6efd;
}

.service-card,
.solution-card,
.collab-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-left: 5px solid #0d6efd;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover,
.solution-card:hover,
.collab-card:hover {
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.1);
    transform: translateY(-3px);
}

#quizForm select {
    border-radius: 0.5rem;
}

#filtro-servicio {
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-gradient {
    background: linear-gradient(to right, #00cba9, #1cb5e0);
    border: none;
    color: white;
    border-radius: 12px;
    transition: background 0.3s ease-in-out;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #1cb5e0, #00cba9);
    color: white;
}
