/* =========================================================
   TIRO E ARMA
   STYLE.CSS
   ========================================================= */

:root {
    --bg: #080a0c;
    --bg-soft: #0d1013;
    --bg-card: #111519;
    --bg-card-2: #151a1e;

    --white: #f2f2f2;
    --muted: #9da3a8;
    --muted-2: #747b81;

    --red: #c62828;
    --red-dark: #8e1717;
    --red-light: #e43a3a;

    --line: rgba(255,255,255,.09);
    --line-strong: rgba(255,255,255,.15);

    --container: 1180px;

    --font-title: "Barlow Condensed", sans-serif;
    --font-body: "Inter", sans-serif;

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


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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

button {
    border: 0;
}


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

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


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

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

    background: rgba(8,10,12,.92);
    backdrop-filter: blur(14px);

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

.nav-wrap {
    min-height: 82px;

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

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.main-nav a {
    color: #d5d8da;
    transition: color .2s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav .nav-news {
    color: #d5d8da;
}

.main-nav .nav-cta {
    background: var(--red);
    color: #fff;

    padding: 11px 18px;

    border-radius: 3px;

    transition:
        background .2s ease,
        transform .2s ease;
}

.main-nav .nav-cta:hover {
    background: var(--red-light);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;

    background: transparent;
    color: #fff;

    font-size: 28px;
    cursor: pointer;
}


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

.hero {
    position: relative;
    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to right,
        black 0%,
        rgba(0,0,0,.7) 50%,
        transparent 100%
    );
}

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(198,40,40,.20),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            rgba(8,10,12,.95) 0%,
            rgba(8,10,12,.65) 55%,
            rgba(8,10,12,.20) 100%
        );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 100px 0;
}

.eyebrow,
.section-kicker {
    color: var(--red-light);

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

    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 18px;

    max-width: 760px;

    font-family: var(--font-title);
    font-size: clamp(58px, 8vw, 105px);
    line-height: .88;

    font-weight: 800;
    letter-spacing: -.02em;

    text-transform: uppercase;
}


.hero h1 span {
    color: var(--red-light);
	width: 100%;
    max-width: 100%;
    line-height: 1.05;
    white-space: normal;
    overflow: visible;
}





.hero-text {
    max-width: 680px;

    margin-top: 28px;

    color: #c1c6ca;

    font-size: 16px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 35px;
}

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

    min-height: 48px;

    padding: 13px 22px;

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

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;

    transition:
        background .2s ease,
        color .2s ease,
        border .2s ease,
        transform .2s ease;
}

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

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-red:hover {
    background: var(--red-light);
}

.btn-outline {
    background: transparent;
    color: #fff;

    border-color: rgba(255,255,255,.22);
}

.btn-outline:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.4);
}

.btn-large {
    min-height: 56px;
    padding-inline: 28px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 28px;

    color: #8f969b;

    font-size: 11px;
    font-weight: 600;
}

.hero-mark {
    position: absolute;

    right: 5%;
    top: 50%;

    width: 430px;
    height: 430px;

    transform: translateY(-50%);

    border-radius: 50%;

    opacity: .75;
}

.target-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(198,40,40,.28);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.r1 {
    width: 100%;
    height: 100%;
}

.r2 {
    width: 72%;
    height: 72%;
}

.r3 {
    width: 43%;
    height: 43%;
}

.target-dot {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: var(--red);

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 0 10px rgba(198,40,40,.08),
        0 0 50px rgba(198,40,40,.5);
}


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

.section {
    padding: 105px 0;
}

.intro {
    background: var(--bg-soft);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}

.intro h2,
.section-heading h2,
.highlight h2,
.faq h2,
.contact h2 {
    margin-top: 14px;

    font-family: var(--font-title);
    font-size: clamp(42px, 5vw, 65px);
    line-height: .95;

    text-transform: uppercase;
    letter-spacing: -.01em;
}

.intro h2 span,
.section-heading h2 span,
.highlight h2 span,
.faq h2 span,
.contact h2 span {
    color: var(--red-light);
}

.intro p {
    color: var(--muted);

    font-size: 16px;
    line-height: 1.85;
}


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

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;

    margin-bottom: 45px;
}

.section-heading > p {
    max-width: 420px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.service-grid {
    display: grid;

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

    gap: 20px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 470px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #15191d 0%,
            #0e1215 100%
        );

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

    border-radius: 4px;

    padding-bottom: 27px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

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

    border-color: rgba(198,40,40,.4);

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

.service-card.featured {
    border-color: rgba(198,40,40,.35);
}

.card-art {
    position: relative;

    height: 180px;

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

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #181d21,
            #0a0d0f
        );

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

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

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 35%,
            rgba(198,40,40,.14) 35%,
            rgba(198,40,40,.14) 36%,
            transparent 36%
        ),
        linear-gradient(
            45deg,
            transparent 55%,
            rgba(255,255,255,.03) 55%,
            rgba(255,255,255,.03) 56%,
            transparent 56%
        );
}

.card-art::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 50%;
}

.card-art span {
    position: relative;
    z-index: 2;

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

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

    letter-spacing: .04em;

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

    text-shadow: 0 5px 25px rgba(0,0,0,.5);
}


/* Art variations */

.art-cr span {
    color: #fff;
}

.art-posse {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(198,40,40,.18),
            transparent 45%
        ),
        #0c1013;
}

.art-porte {
    background:
        linear-gradient(
            135deg,
            #171b1f,
            #0a0d10
        );
}

.art-doc {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(198,40,40,.15),
            transparent 50%
        ),
        #0c1013;
}

.art-craf {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(198,40,40,.20),
            transparent 48%
        ),
        linear-gradient(
            135deg,
            #171b1f,
            #090c0e
        );
}

.art-caca {
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(45,100,45,.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #172019,
            #090d0a
        );
}

.art-motosserra {
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(198,40,40,.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #191b18,
            #0b0d0c
        );
}

.art-pesca {
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(30,100,130,.18),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #111b20,
            #080d10
        );
}


/* Card content */

.service-card small {
    display: block;

    margin:
        22px 24px 0;

    color: var(--red-light);

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

    letter-spacing: .15em;
}

.service-card h3 {
    margin:
        9px 24px 0;

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

    font-size: 29px;
    line-height: 1;

    text-transform: uppercase;
}

.service-card p {
    margin:
        14px 24px 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}

.service-card > a {
    margin:
        auto 24px 0;

    padding-top: 24px;

    color: #fff;

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

    letter-spacing: .1em;

    transition: color .2s ease;
}

.service-card > a:hover {
    color: var(--red-light);
}


/* =========================================================
   AMBIENTAL
   ========================================================= */

.environmental {
    background:
        linear-gradient(
            180deg,
            #090b0d 0%,
            #0d1113 100%
        );

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

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

.environmental-card {
    min-height: 480px;
}

.environmental-note {
    display: grid;

    grid-template-columns: auto 1fr;

    gap: 20px;

    margin-top: 28px;
    padding: 22px 25px;

    background: rgba(198,40,40,.06);

    border: 1px solid rgba(198,40,40,.2);

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

.environmental-note strong {
    color: var(--red-light);

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

    font-size: 18px;
    letter-spacing: .05em;
}

.environmental-note p {
    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process {
    background: var(--bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

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

.step {
    position: relative;

    min-height: 260px;

    padding: 35px 28px;

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

.step:last-child {
    border-right: 0;
}

.step b {
    color: var(--red-light);

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

    font-size: 38px;
}

.step h3 {
    margin-top: 25px;

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

    font-size: 27px;

    text-transform: uppercase;
}

.step p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   BLOG
   ========================================================= */

.blog {
    background: var(--bg-soft);
}

.blog-grid {
    display: grid;

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

    gap: 18px;
}

.post {
    padding: 27px;

    background: #111519;

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

    border-radius: 3px;
}

.post-tag {
    color: var(--red-light);

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

    letter-spacing: .12em;
}

.post h3 {
    margin-top: 18px;

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

    font-size: 27px;
    line-height: 1.05;

    text-transform: uppercase;
}

.post p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.75;
}

.post-note {
    color: #70777c !important;

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

    padding-top: 14px;
}

.blog-more {
    display: flex;
    justify-content: center;
    gap: 13px;

    margin-top: 35px;
}


/* =========================================================
   SOBRE
   ========================================================= */

.highlight {
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(198,40,40,.08),
            transparent 30%
        ),
        var(--bg);
}

.highlight-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    align-items: center;

    gap: 100px;
}

.shield-visual {
    position: relative;

    width: 380px;
    height: 380px;

    margin-inline: auto;
}

.shield {
    position: absolute;

    inset: 55px;

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

    border: 1px solid rgba(198,40,40,.4);

    background:
        radial-gradient(
            circle,
            rgba(198,40,40,.12),
            rgba(8,10,12,.9)
        );

    clip-path: polygon(
        50% 0%,
        90% 15%,
        100% 50%,
        82% 83%,
        50% 100%,
        18% 83%,
        0% 50%,
        10% 15%
    );
}

.shield img {
    width: 180px;
    opacity: .95;
}

.orbit {
    position: absolute;

    inset: 20px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}

.ob {
    inset: 0;

    border-color: rgba(198,40,40,.15);

    transform: rotate(30deg) scaleX(.75);
}

.highlight .copy {
    max-width: 700px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}

.feature-list {
    margin-top: 35px;

    display: grid;

    gap: 18px;
}

.feature-list > div {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding-bottom: 18px;

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

.feature-list b {
    color: var(--red-light);

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

    font-size: 28px;
}

.feature-list span {
    color: var(--muted);

    font-size: 13px;
}

.feature-list strong {
    color: #fff;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq {
    background: var(--bg-soft);
}

.faq-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 90px;
}

.muted {
    max-width: 480px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 14px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

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

.faq-list summary {
    position: relative;

    padding: 23px 45px 23px 0;

    cursor: pointer;

    list-style: none;

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

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

.faq-list summary::after {
    content: "+";

    position: absolute;

    right: 5px;
    top: 19px;

    color: var(--red-light);

    font-size: 22px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding:
        0
        45px
        23px
        0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


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

.contact {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-box {
    display: flex;

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

    gap: 50px;

    padding: 55px;

    background:
        linear-gradient(
            135deg,
            #171b1f,
            #0c1012
        );

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

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

.contact h2 {
    font-size: clamp(42px, 5vw, 62px);
}

.contact-box p {
    max-width: 620px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;
}

.contact-actions {
    display: flex;
    flex-direction: column;

    gap: 12px;

    min-width: 250px;
}


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

footer {
    padding-top: 55px;

    background: #050708;

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

.footer-grid {
    display: grid;

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

    gap: 35px;

    align-items: start;
}

.footer-logo {
    width: 150px;
}

.footer-grid strong {
    font-family: var(--font-title);

    font-size: 22px;
}

.footer-grid p,
.footer-contact span {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 9px;

    font-size: 12px;
}

.footer-links a {
    color: var(--muted);

    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact > a {
    color: #fff;

    font-weight: 700;
}

.legal {
    display: flex;

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

    gap: 20px;

    margin-top: 50px;
    padding: 22px 0;

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

    color: var(--muted-2);

    font-size: 10px;
}


/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 999;

    width: 58px;
    height: 58px;

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

    border-radius: 50%;

    background: #25d366;

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

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.04);

    box-shadow:
        0 14px 35px rgba(37,211,102,.25);
}

.floating-whatsapp svg {
    width: 31px;
    height: 31px;

    fill: #fff;
}


/* =========================================================
   RESPONSIVO — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 15px;
        font-size: 11px;
    }

    .hero-mark {
        right: -100px;
        opacity: .35;
    }

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

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

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

    .highlight-grid,
    .faq-grid {
        gap: 55px;
    }

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

    .step:nth-child(2) {
        border-right: 0;
    }

    .step:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

}


/* =========================================================
   RESPONSIVO — CELULAR
   ========================================================= */

@media (max-width: 760px) {

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

    .site-header {
        position: sticky;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand img {
        width: 130px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        left: 14px;
        right: 14px;
        top: calc(100% + 1px);

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

        gap: 0;

        padding: 10px;

        background: rgba(10,12,14,.98);

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

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

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 13px 12px;

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

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .main-nav .nav-cta {
        margin-top: 8px;

        text-align: center;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: clamp(55px, 17vw, 82px);
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-mark {
        width: 330px;
        height: 330px;

        right: -110px;
        top: 58%;

        opacity: .25;
    }

    .trust-row {
        flex-direction: column;
        gap: 8px;
    }

    .section {
        padding: 75px 0;
    }

    .intro-grid,
    .highlight-grid,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;
    }

    .service-grid,
    .environmental-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .environmental-card {
        min-height: 460px;
    }

    .card-art {
        height: 175px;
    }

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

    .step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .step:last-child {
        border-bottom: 0;
    }

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

    .blog-more {
        flex-direction: column;
    }

    .blog-more .btn {
        width: 100%;
    }

    .shield-visual {
        width: 300px;
        height: 300px;
    }

    .shield {
        inset: 42px;
    }

    .shield img {
        width: 145px;
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 35px 25px;
    }

    .contact-actions {
        width: 100%;
    }

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

    .environmental-note {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .legal {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 430px) {

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

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

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

    .intro h2,
    .section-heading h2,
    .highlight h2,
    .faq h2,
    .contact h2 {
        font-size: 45px;
    }

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

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;

        width: 54px;
        height: 54px;
    }

}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

:focus-visible {
    outline: 2px solid var(--red-light);
    outline-offset: 3px;
}

::selection {
    background: var(--red);
    color: #fff;
}
