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

:root {
    --bg-dark: #071116;
    --bg-dark-2: #0d1b21;

    --white: #ffffff;
    --text: #111820;
    --text-light: #68747c;

    --cyan: #00c8ff;
    --cyan-dark: #009fd0;

    --pink: #ff0b78;
    --yellow: #ffc400;
    --green: #10c878;
    --purple: #7040d8;

    --border: #e5eaee;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    --container: 1200px;

    --transition:
        0.25s ease;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

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

    line-height: 1.5;

    overflow-x: hidden;
}

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

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

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

button {
    cursor: pointer;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


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

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 74px;

    background:
        rgba(7, 17, 22, 0.94);

    backdrop-filter: blur(15px);

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

.header__content {
    height: 100%;

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

    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.logo__icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--pink)
        );

    color: white;

    font-size: 15px;
    font-weight: 900;
}

.logo__text {
    display: flex;
    flex-direction: column;

    color: white;
}

.logo__text strong {
    font-size: 19px;
    line-height: 1;
}

.logo__text small {
    margin-top: 4px;

    font-size: 8px;
    letter-spacing: 2px;

    opacity: 0.6;
}


/* NAV */

.nav {
    display: flex;
    align-items: center;

    gap: 27px;

    margin-left: auto;
}

.nav a {
    position: relative;

    color: rgba(255,255,255,.82);

    font-size: 14px;
    font-weight: 500;

    transition:
        color var(--transition);
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -8px;

    height: 2px;

    background: var(--cyan);

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform var(--transition);
}

.nav a:hover {
    color: white;
}

.nav a:hover::after {
    transform:
        scaleX(1);
}


/* WHATSAPP */

.header__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 18px;

    border-radius: 30px;

    background: #10c878;

    color: white;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.header__whatsapp:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(16, 200, 120, .3);
}


/* MOBILE MENU */

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    color: white;

    font-size: 27px;
}


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

.hero {
    position: relative;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 200, 255, .12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061015,
            #0c1a20
        );

    color: white;

    overflow: hidden;
}


/* decoraciones */

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 11, 120, .16),
            transparent 70%
        );

    pointer-events: none;
}

.hero__content {
    min-height: 480px;

    display: grid;

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

    align-items: center;

    gap: 45px;

    padding-top: 55px;
    padding-bottom: 40px;
}


/* HERO TEXT */

.hero__text {
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--cyan);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero h1 {
    max-width: 650px;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: .98;

    letter-spacing: -2.5px;

    font-weight: 900;
}

.hero h1 span {
    display: block;

    color: var(--cyan);

    text-shadow:
        0 0 25px rgba(0, 200, 255, .15);
}

.hero__text > p {
    max-width: 530px;

    margin-top: 24px;

    color: rgba(255,255,255,.72);

    font-size: 18px;
}


/* HERO BUTTONS */

.hero__buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* BUTTONS */

.btn {
    display: inline-flex;

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

    min-height: 48px;

    padding:
        0 23px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background:
        linear-gradient(
            135deg,
            var(--pink),
            #ff287f
        );

    color: white;

    box-shadow:
        0 10px 25px rgba(255, 11, 120, .2);
}

.btn--secondary {
    border:
        1px solid rgba(255,255,255,.2);

    color: white;

    background:
        rgba(255,255,255,.04);
}

.btn--secondary:hover {
    background:
        rgba(255,255,255,.1);
}

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


/* HERO IMAGE */

.hero__visual {
    position: relative;
}

.hero__image {
    position: relative;

    overflow: hidden;

    border-radius:
        var(--radius-lg);

    box-shadow:
        0 30px 70px rgba(0,0,0,.35);

    transform:
        perspective(1000px)
        rotateY(-2deg);
}

.hero__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0, 200, 255, .08),
            transparent 50%
        );

    pointer-events: none;
}

.hero__image img {
    min-height: 360px;

    object-fit: cover;
}


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

.hero__benefits {
    display: grid;

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

    gap: 20px;

    padding-bottom: 28px;
}

.benefit {
    display: grid;

    grid-template-columns:
        auto 1fr;

    column-gap: 10px;

    align-items: center;

    font-size: 13px;
}

.benefit span {
    grid-row: span 2;

    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    border:
        1px solid rgba(0,200,255,.3);

    border-radius: 9px;

    color: var(--cyan);

    background:
        rgba(0,200,255,.05);

    font-size: 16px;
}

.benefit strong {
    color: white;
}

.benefit small {
    color: rgba(255,255,255,.55);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding:
        90px 0;
}

.section__header {
    max-width: 720px;

    margin-bottom: 42px;
}

.section__header--row {
    max-width: none;

    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 20px;
}

.section__header--row > a {
    color: var(--cyan);

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;
}

.section__eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--cyan);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.section__header h2 {
    font-size:
        clamp(30px, 4vw, 44px);

    line-height: 1.05;

    letter-spacing: -1.5px;

    font-weight: 900;
}

.section__header p {
    margin-top: 14px;

    color: var(--text-light);

    font-size: 16px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #f7f9fa;
}

.services-grid {
    display: grid;

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

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 230px;

    padding: 25px;

    overflow: hidden;

    border-radius:
        var(--radius-md);

    background: white;

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

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform:
        translateY(-6px);

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

.service-card::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -40px;
    bottom: -40px;

    border-radius: 50%;

    background:
        rgba(0,200,255,.08);
}

.service-card__icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        #eafaff;

    font-size: 24px;
}

.service-card h3 {
    font-size: 21px;

    line-height: 1.1;
}

.service-card p {
    max-width: 320px;

    margin-top: 10px;

    color: var(--text-light);

    font-size: 14px;
}

.service-card a {
    display: inline-block;

    margin-top: 20px;

    color: var(--cyan-dark);

    font-size: 13px;
    font-weight: 800;
}


/* Diferentes colores */

.service-card:nth-child(2) > .service-card__icon {
    background: #fff0f7;
}

.service-card:nth-child(3) > .service-card__icon {
    background: #fff7d9;
}

.service-card:nth-child(4) > .service-card__icon {
    background: #f2edff;
}

.service-card:nth-child(5) > .service-card__icon {
    background: #eafbf3;
}


/* =========================================================
   MATERIALS
========================================================= */

.materials {
    background: white;
}

.materials__examples {
    display: grid;

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

    gap: 16px;
}

.material-example {
    position: relative;

    padding: 25px;

    min-height: 210px;

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            145deg,
            #0c1b22,
            #122832
        );

    color: white;

    overflow: hidden;

    transition:
        transform var(--transition);
}

.material-example:hover {
    transform:
        translateY(-5px);
}

.material-example::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(0,200,255,.15);
}

.material-example h3 {
    position: relative;
    z-index: 1;

    font-size: 18px;
}

.material-example p {
    position: relative;
    z-index: 1;

    margin-top: 12px;

    color: rgba(255,255,255,.65);

    font-size: 14px;
}

.material-example span {
    position: absolute;

    left: 25px;
    bottom: 22px;

    color: var(--cyan);

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   PERSONALIZED
========================================================= */

.personalized {
    background:
        #f7f9fa;
}

.products-grid {
    display: grid;

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

    gap: 18px;
}

.product-card {
    overflow: hidden;

    border-radius:
        var(--radius-md);

    background: white;

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

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    transform:
        translateY(-5px);

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

.product-card img {
    aspect-ratio: 4 / 3;

    object-fit: cover;

    background: #e9edef;
}

.product-card__content {
    padding: 19px;
}

.product-card h3 {
    font-size: 17px;
}

.product-card p {
    margin-top: 7px;

    color: var(--text-light);

    font-size: 13px;
}

.product-card a {
    display: inline-block;

    margin-top: 14px;

    color: var(--cyan-dark);

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   FEATURED
========================================================= */

.featured {
    background: white;
}


/* =========================================================
   STATIONERY
========================================================= */

.stationery {
    background:
        #f7f9fa;
}

.stationery-grid {
    min-height: 150px;

    display: grid;

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

    gap: 14px;
}

.stationery-grid > * {
    min-width: 0;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: white;
}

.gallery-grid {
    display: grid;

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

    grid-auto-rows: 180px;

    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        var(--radius-sm);
}


/* =========================================================
   CTA
========================================================= */

.cta {
    position: relative;

    padding: 65px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #071116,
            #102932
        );

    color: white;
}

.cta::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -150px;
    top: -200px;

    border-radius: 50%;

    background:
        rgba(0,200,255,.12);
}

.cta__content {
    position: relative;
    z-index: 1;

    display: flex;

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

    gap: 30px;
}

.cta span {
    color: var(--cyan);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}

.cta h2 {
    margin-top: 7px;

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

    line-height: 1.05;
}

.cta p {
    max-width: 600px;

    margin-top: 12px;

    color:
        rgba(255,255,255,.62);
}


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

.contact {
    background: white;
}

.contact__grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;
}

.contact__info,
.contact__action {
    padding: 30px;

    border-radius:
        var(--radius-md);

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

.contact-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 0;

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

.contact-item:last-child {
    border-bottom: 0;
}

.contact-item > span {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #effaff;

    font-size: 20px;
}

.contact-item strong {
    display: block;

    font-size: 15px;
}

.contact-item p {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 13px;
}

.contact__action {
    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #071116,
            #122b35
        );

    color: white;
}

.contact__action h3 {
    font-size: 28px;
}

.contact__action p {
    max-width: 450px;

    margin: 10px 0 25px;

    color:
        rgba(255,255,255,.65);
}

.contact__action .btn {
    align-self: flex-start;
}


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

.footer {
    background:
        #061015;

    color: white;
}

.footer__content {
    min-height: 140px;

    display: grid;

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

    align-items: center;

    gap: 30px;
}

.footer__brand {
    display: flex;

    flex-direction: column;
}

.footer__brand strong {
    font-size: 20px;
}

.footer__brand small {
    margin-top: 4px;

    color: rgba(255,255,255,.45);

    font-size: 8px;
    letter-spacing: 2px;
}

.footer__links {
    display: flex;

    justify-content: center;

    gap: 22px;

    color:
        rgba(255,255,255,.55);

    font-size: 13px;
}

.footer__links a:hover {
    color: white;
}

.footer__social {
    display: flex;

    justify-content: flex-end;

    gap: 16px;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
}

.footer__social a:hover {
    color: var(--cyan);
}

.footer__bottom {
    border-top:
        1px solid rgba(255,255,255,.08);
}

.footer__bottom .container {
    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.footer__bottom p {
    color:
        rgba(255,255,255,.35);

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 13px;
    }

    .header__whatsapp {
        display: none;
    }

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

    .hero h1 {
        font-size: 48px;
    }

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

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

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

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

    .gallery-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .stationery-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .header {
        height: 66px;
    }

    .nav {
        display: none;

        position: absolute;

        left: 14px;
        right: 14px;
        top: 73px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        border-radius: 15px;

        background:
            #0b1b22;

        box-shadow:
            0 20px 50px rgba(0,0,0,.3);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px;

        border-radius: 8px;
    }

    .nav a:hover {
        background:
            rgba(255,255,255,.05);
    }

    .menu-toggle {
        display: block;
    }


    /* HERO */

    .hero__content {
        min-height: auto;

        grid-template-columns: 1fr;

        padding-top: 55px;
        padding-bottom: 30px;

        gap: 35px;
    }

    .hero h1 {
        font-size:
            clamp(40px, 12vw, 54px);

        letter-spacing: -2px;
    }

    .hero__text > p {
        font-size: 16px;
    }

    .hero__image {
        transform: none;
    }

    .hero__image img {
        min-height: 240px;
    }

    .hero__benefits {
        grid-template-columns: 1fr 1fr;

        gap: 14px;

        padding-bottom: 25px;
    }

    .benefit {
        font-size: 11px;
    }

    .benefit small {
        font-size: 10px;
    }


    /* SECTIONS */

    .section {
        padding: 65px 0;
    }

    .section__header {
        margin-bottom: 30px;
    }

    .section__header--row {
        align-items: start;

        flex-direction: column;
    }


    /* SERVICES */

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

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


    /* MATERIALS */

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


    /* PRODUCTS */

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

        gap: 12px;
    }

    .product-card__content {
        padding: 14px;
    }

    .product-card h3 {
        font-size: 15px;
    }

    .product-card p {
        font-size: 12px;
    }


    /* STATIONERY */

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


    /* GALLERY */

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

        grid-auto-rows: 140px;
    }


    /* CTA */

    .cta__content {
        flex-direction: column;

        align-items: flex-start;
    }


    /* CONTACT */

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


    /* FOOTER */

    .footer__content {
        padding: 35px 0;

        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__links {
        flex-wrap: wrap;
    }

    .footer__social {
        justify-content: center;
    }

}


/* =========================================================
   MOBILE PEQUEÑO
========================================================= */

@media (max-width: 420px) {

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
    }

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

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

    .gallery-grid {
        grid-auto-rows: 170px;
    }

}




/* =========================================================
   CATÁLOGO MODAL
========================================================= */

.catalog-modal {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;

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

    padding: 20px;
}

.catalog-modal.active {
    display: flex;
}

.catalog-modal__overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(3, 10, 13, .82);

    backdrop-filter:
        blur(8px);
}

.catalog-modal__content {
    position: relative;

    z-index: 1;

    width: min(
        900px,
        100%
    );

    max-height:
        calc(100vh - 40px);

    overflow-y: auto;

    padding: 35px;

    border-radius:
        24px;

    background: white;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.4);
}

.catalog-modal__close {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 50%;

    background:
        #edf1f3;

    color:
        #172027;

    font-size: 27px;

    line-height: 1;

    transition:
        .2s ease;
}

.catalog-modal__close:hover {
    background:
        #dfe6e9;

    transform:
        rotate(90deg);
}


/* TÍTULO */

.catalog-title {
    padding-right: 45px;

    font-size:
        clamp(28px, 5vw, 42px);

    line-height: 1.05;

    font-weight: 900;
}

.catalog-description {
    margin-top: 10px;

    color:
        var(--text-light);

    max-width: 650px;
}


/* SERVICIOS */

.catalog-services {
    display: grid;

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

    gap: 14px;

    margin-top: 30px;
}

.catalog-service {
    padding: 20px;

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

    border-radius:
        16px;

    background:
        #fafcfd;

    transition:
        .2s ease;
}

.catalog-service:hover {
    border-color:
        var(--cyan);

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.06);
}

.catalog-service h3 {
    font-size: 18px;
}

.catalog-service p {
    margin-top: 7px;

    color:
        var(--text-light);

    font-size: 13px;
}

.catalog-service button {
    margin-top: 15px;

    border: 0;

    background: transparent;

    color:
        var(--cyan-dark);

    font-size: 13px;

    font-weight: 800;
}


/* DETALLE */

.service-detail {
    margin-top: 25px;

    padding-top: 25px;

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

.service-detail h3 {
    font-size: 25px;
}

.service-detail > p {
    margin-top: 8px;

    color:
        var(--text-light);
}


/* MATERIALES */

.detail-section {
    margin-top: 25px;
}

.detail-section h4 {
    margin-bottom: 12px;

    font-size: 15px;
}

.material-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.material-tag {
    padding: 8px 12px;

    border-radius: 20px;

    background:
        #edfaff;

    color:
        #007fa8;

    font-size: 12px;

    font-weight: 700;
}


/* TAMAÑOS */

.size-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.size-tag {
    padding: 8px 12px;

    border-radius: 8px;

    background:
        #f0f2f4;

    font-size: 12px;

    font-weight: 700;
}


/* COTIZAR */

.service-detail__actions {
    margin-top: 30px;

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.service-detail__actions a {
    display: inline-flex;

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

    min-height: 45px;

    padding:
        0 18px;

    border-radius:
        10px;

    background:
        #10c878;

    color: white;

    font-size: 13px;

    font-weight: 800;
}


/* MOBILE */

@media (max-width: 600px) {

    .catalog-modal {
        padding: 10px;
    }

    .catalog-modal__content {
        max-height:
            calc(100vh - 20px);

        padding: 25px 18px;
    }

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

}