@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/Manrope-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/Manrope-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/Manrope-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/Manrope-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #fffdfd;
    --surface: #ffffff;
    --surface-soft: #fff9f8;
    --text: #141519;
    --muted: #5c6068;
    --border: #f0e3e3;
    --primary: #d41111;
    --primary-dark: #b10d0d;
    --shadow: 0 24px 60px rgba(131, 18, 18, 0.08);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1240px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(212, 17, 17, 0.04), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 860px;
    padding: 4rem 0;
}

.section {
    padding: 1.2rem 0;
}

.section-tight {
    background: #fff;
    padding-top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 0px solid rgba(240, 227, 227, 0.8);
}

.header-bar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-inline: auto;
}

.brand img {
    width: 112px;
    height: auto;
}

.desktop-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    font-size: 0.97rem;
    line-height: 1;
}

.mobile-header-nav {
    display: none;
}

.mobile-bottom-nav {
    display: none;
}

.desktop-nav--left {
    justify-content: flex-end;
}

.desktop-nav--right {
    justify-content: flex-start;
}

.desktop-nav a:not(.btn) {
    color: #23262d;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a:not(.btn):hover,
.desktop-nav a:not(.btn):focus-visible {
    color: var(--primary);
}

.desktop-nav a[target="_blank"]::after {
    content: "\2197";
    margin-left: 0.3rem;
    font-size: 0.82em;
    transform: translateY(-0.08em);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary {
    background: linear-gradient(180deg, #df1c1c 0%, #c80f0f 100%);
    color: #fff;
    border-color: rgba(143, 10, 10, 0.22);
    box-shadow: 0 10px 22px rgba(212, 17, 17, 0.14);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary-dark);
    box-shadow: 0 12px 24px rgba(212, 17, 17, 0.18);
    transform: translateY(-1px);
}

.btn-light {
    background: #fff;
    color: var(--primary);
    width: auto;
    min-width: 190px;
}

.btn-light:hover,
.btn-light:focus-visible {
    background: #111;
    color: #fff;
}

.hero {
    background: #fff;
    padding-top: 1.25rem;
    padding-bottom: 0;
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: clamp(2.5rem, 4vw, 4.5rem);
    min-height: calc(100svh - var(--header-height));
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.28rem, 3.9vw, 3.48rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.04em;
    max-width: 16.8ch;
}

.hero-copy h1 span,
.text-link,
.faq-cta a {
    color: var(--primary);
}

.hero-line {
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: var(--primary);
    margin: 2rem 0 1.85rem;
}

.lead {
    max-width: 29rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2.35rem;
}

.hero-copy .btn-primary {
    align-self: flex-start;
    min-width: 0;
    width: auto;
    padding-inline: 1.1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: min(100%, 780px);
    height: auto;
}

.panel {
    background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(1.5rem, 3vw, 3rem);
}

#que-es.panel,
#para-que-sirve.panel,
#como-lo-hacemos.panel {
    background: #f7f7f5;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.pillar-grid,
.sector-grid,
.faq-grid,
.benefits-grid {
    display: grid;
    gap: 1rem;
}

.pillar-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.pillar-card,
.mini-card,
.sector-card,
.faq-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.4rem;
}

.pillar-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar-card h2,
.mini-card h3,
.sector-card h3,
.faq-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.pillar-card p,
.mini-card p,
.sector-card p,
.faq-card p,
.panel p,
.privacy-page p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.faq-section-title {
    display: none;
}

.section-copy-sm {
    display: grid;
    gap: 0.9rem;
}

#sectores > .container > h2 {
    text-align: center;
}

#que-es .section-copy-sm p,
#como-lo-hacemos .section-copy-sm p {
    font-size: 0.82rem;
    line-height: 1.5;
}

.icon {
    width: 46px;
    height: 46px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pillar-card .icon {
    width: 58px;
    height: 58px;
    margin-bottom: 1.2rem;
    stroke-width: 1.7;
}

.pillar-card p {
    max-width: 24ch;
    margin-inline: auto;
    font-size: 0.95rem;
    line-height: 1.55;
}

.two-col {
    display: grid;
    gap: 2rem;
}

.step-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.step-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.step-list span {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
}

.step-copy {
    display: grid;
    gap: 0.3rem;
}

.step-copy strong {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.step-copy p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--muted);
}

.benefits-intro {
    display: grid;
    gap: 2rem;
}

#para-que-sirve .benefits-grid {
    align-items: start;
}

#para-que-sirve .mini-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

#para-que-sirve .mini-card .icon {
    width: 52px;
    height: 52px;
    margin-bottom: 0.95rem;
    margin-inline: auto;
}

#para-que-sirve .mini-card h3 {
    font-size: 0.98rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

#para-que-sirve .mini-card p {
    font-size: 0.92rem;
    line-height: 1.55;
}

.sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.sector-card {
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.5rem 0.35rem;
}

.sector-card .icon {
    margin-inline: auto;
    width: 60px;
    height: 60px;
    margin-bottom: 0.45rem;
}

.sector-card h3 {
    font-size: 0.88rem;
    line-height: 1.35;
    margin-bottom: 0;
}

.faq-grid {
    margin-top: 1.5rem;
}

.faq-section-title {
    font-size: 1.2;
    line-height: 1.2;
    margin: 0;
}

.faq-card {
    background: transparent;
    border-radius: 0;
}

.faq-card__head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.faq-card__head .icon {
    margin-bottom: 0;
    width: 34px;
    height: 34px;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-list details {
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.45;
    padding-right: 1.5rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list details p {
    margin-top: 0.75rem;
    font-size: 0.84rem;
    line-height: 1.5;
}

.faq-cta {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 700;
}

.contact-section {
    background: linear-gradient(135deg, #cb0f0f 0%, #e11616 45%, #b00d0d 100%);
    color: #fff;
}

.contact-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.contact-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 1.5rem 0 1rem;
    max-width: 16ch;
}

.contact-copy p,
.legal-copy {
    color: rgba(255, 255, 255, 0.88);
}

.contact-form-wrap {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.contact-form {
    display: grid;
    gap: 0.8rem;
}

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

.field {
    display: grid;
    gap: 0.45rem;
}

.field label,
.check {
    font-weight: 600;
    font-size: 0.88rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    min-height: 42px;
    padding: 0.68rem 0.85rem;
    font: inherit;
    font-size: 0.92rem;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    min-height: 84px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18), 0 0 18px rgba(255, 255, 255, 0.22);
}

.contact-form .btn-light {
    align-self: flex-start;
    justify-self: start;
    width: fit-content;
}

.field small,
.contact-form > small {
    color: #ffe2e2;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.check input {
    margin-top: 0.2rem;
}

.check span {
    font-size: 0.56rem;
    line-height: 1.35;
    text-align: justify;
    font-weight: 400;
}

.check a {
    color: #fff;
    text-decoration: underline;
}

.legal-copy {
    font-size: 0.62rem;
    line-height: 1.4;
    text-align: justify;
}

.form-alert {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    padding: 0.8rem 0.9rem;
    margin-bottom: 1rem;
}

.form-alert--success {
    background: rgba(255, 255, 255, 0.16);
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.site-footer {
    padding: 0.6rem 0 1rem;
    background: #fff;
    text-align: center;
    color: #6a7079;
    font-size: 0.78rem;
}

.site-footer p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.legal-page {
    background: #fff;
    color: var(--text);
}

.legal-page__header {
    background: #fff;
    border-bottom: 1px solid rgba(230, 221, 221, 0.8);
    padding: 1rem 0;
}

.legal-page__brand {
    display: flex;
    justify-content: center;
}

.legal-page__brand img {
    width: 168px;
    height: auto;
}

.legal-page__main {
    padding: 2rem 0 4rem;
}

.legal-page__container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page__content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin: 0 0 2rem;
}

.legal-page__content section + section {
    margin-top: 1.75rem;
}

.legal-page__content h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 0.7rem;
}

.legal-page__content p,
.legal-page__content li {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-page__content ul {
    margin: 0.8rem 0 1rem 1.2rem;
    padding: 0;
}

.legal-page__back {
    margin: 0 0 1.5rem;
}

.legal-page__back--bottom {
    margin-top: 2rem;
}

.cookie-banner-open {
    overflow: hidden;
}

.cookie-banner {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(18, 20, 24, 0.46);
    backdrop-filter: blur(8px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__dialog {
    width: min(100%, 560px);
    background: #fff;
    border: 1px solid rgba(212, 17, 17, 0.12);
    box-shadow: 0 28px 70px rgba(21, 24, 30, 0.18);
    padding: 1.75rem;
}

.cookie-banner__eyebrow {
    margin: 0 0 0.55rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-banner__dialog h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.12;
}

.cookie-banner__dialog p:last-of-type {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.btn-ghost {
    background: #fff;
    color: var(--text);
    border-color: rgba(212, 17, 17, 0.18);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    color: var(--primary);
    border-color: rgba(212, 17, 17, 0.35);
    box-shadow: 0 8px 18px rgba(212, 17, 17, 0.08);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

.text-link::after {
    content: "→";
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }

    .legal-page {
        padding-bottom: 0;
    }

    .site-header {
        padding-block: 0.75rem 0.5rem;
        border-bottom: 0;
    }

    .header-bar {
        min-height: 88px;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 0;
    }

    .brand {
        align-self: center;
        padding-top: 0;
    }

    .brand img {
        width: 124px;
    }

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

    .hero-copy h1 {
        font-size: clamp(2rem, 3.4vw, 3rem);
        margin-inline: auto;
    }

    .hero-line {
        margin-inline: auto;
    }

    .lead {
        text-align: center;
    }

    .hero-copy .btn-primary {
        align-self: center;
    }

    .section-copy-sm p {
        text-align: justify;
    }

    #para-que-sirve .benefits-intro,
    #para-que-sirve .mini-card {
        text-align: center;
    }

    #para-que-sirve .mini-card .icon {
        width: 60px;
        height: 60px;
        margin-inline: auto;
    }

    .contact-copy {
        text-align: center;
        justify-items: center;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: end;
        padding: 0.45rem 0.4rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(226, 216, 216, 0.95);
        box-shadow: 0 -12px 34px rgba(78, 22, 22, 0.08);
        backdrop-filter: blur(14px);
    }

    .mobile-bottom-nav__link {
        position: relative;
        display: grid;
        justify-items: center;
        gap: 0.28rem;
        padding: 0.4rem 0.15rem 0;
        text-align: center;
        color: #16181d;
    }

    .mobile-bottom-nav__link .icon {
        width: 1.72rem;
        height: 1.72rem;
        margin: 0;
        color: currentColor;
    }

    .mobile-bottom-nav__link span {
        font-size: 0.72rem;
        line-height: 1.15;
        font-weight: 500;
    }

    .mobile-bottom-nav__link.is-active {
        color: var(--primary);
    }

    .mobile-bottom-nav__link.is-active::before {
        content: "";
        position: absolute;
        top: -0.45rem;
        left: 18%;
        right: 18%;
        height: 4px;
        border-radius: 999px;
        background: var(--primary);
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner__dialog {
        padding: 1.35rem;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__actions .btn {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .form-row,
    .pillar-grid,
    .faq-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-col,
    .hero-grid,
    .contact-grid,
    .benefits-intro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-col--reverse > :first-child {
        order: 0;
    }

    .two-col--reverse > :last-child {
        order: 1;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-block: 1rem;
        max-width: 40rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.5rem;
        padding-block: 1.5rem 0;
    }

    .hero-copy {
        max-width: none;
        text-align: center;
        align-items: center;
        padding-block: 0;
    }

    .hero-visual {
        display: none;
    }

    .hero-copy h1 {
        max-width: 11.5ch;
        margin-inline: auto;
        font-size: clamp(3.1rem, 6vw, 4.4rem);
        line-height: 1.02;
    }

    .hero-line {
        margin: 1.35rem auto 1.4rem;
    }

    .lead {
        max-width: 28rem;
        margin: 0 auto 2rem;
        text-align: center;
        font-size: 1.18rem;
        line-height: 1.65;
    }

    .hero-copy .btn-primary {
        align-self: center;
    }
}

@media (max-width: 767.98px) {
    .contact-grid,
    .contact-copy,
    .contact-form-wrap,
    .contact-form,
    .field,
    .check {
        min-width: 0;
    }

    .check span,
    .legal-copy,
    .form-alert {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (min-width: 992px) {
    .site-header {
        padding-block: 0.35rem;
    }

    .header-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        padding-top: 0.35rem;
        gap: 2.5rem;
    }

    .desktop-nav {
        display: flex;
    }

    .mobile-header-nav,
    .mobile-bottom-nav {
        display: none;
    }

    .desktop-nav--left,
    .desktop-nav--right {
        min-width: 0;
    }

    .brand {
        justify-self: center;
        margin-inline: 0;
    }

    .hero {
        padding-top: 0;
    }

    .hero-grid {
        min-height: calc(100vh - var(--header-height));
        padding-block: 1.25rem 0;
    }

    .hero-copy {
        transform: translate(40px, -40px);
    }

    .hero-copy h1 {
        max-width: 16.1ch;
        line-height: 1.12;
    }

    .lead {
        max-width: 26rem;
    }

    .hero-visual {
        transform: translate(-40px, -40px);
    }

    .pillar-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid var(--border);
        margin-top: -90px;
    }

    .pillar-card {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 1.9rem 1.6rem 1.5rem;
        position: relative;
    }

    .pillar-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 1.4rem;
        right: 0;
        width: 1px;
        height: calc(100% - 2.8rem);
        background: var(--border);
    }

    .sector-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .faq-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid var(--border);
        margin-top: 1.1rem;
    }

    .faq-card {
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 1.9rem 1.6rem 1.5rem;
        position: relative;
    }

    .faq-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 1.4rem;
        right: 0;
        width: 1px;
        height: calc(100% - 2.8rem);
        background: var(--border);
    }

    .faq-section-title {
        font-size: 1rem;
    }

    .contact-copy img {
        transform: translateX(120px);
    }

    #para-que-sirve .benefits-intro {
        grid-template-columns: minmax(260px, 1.05fr) minmax(0, 2.1fr);
        gap: 2.5rem;
        align-items: start;
    }

    #para-que-sirve .benefits-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }

    #para-que-sirve .mini-card .icon {
        width: 78px;
        height: 78px;
		margin-left: 20px;
    }

    #para-que-sirve .mini-card h3 {
        font-size: 0.95rem;
    }

    #para-que-sirve .mini-card p {
        font-size: 0.84rem;
        line-height: 1.5;
    }
}
