/* =====================================================
   DRA. MARINES MARQUES
   ADVOCACIA CRIMINALISTA
   TEMA: AZUL ESCURO + BRANCO + DOURADO
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   VARIÁVEIS
===================================================== */

:root {
    --azul: #071a33;
    --azul-escuro: #030d1c;
    --azul-medio: #0c2544;
    --azul-claro: #15395f;

    --branco: #ffffff;

    --cinza: #eef2f6;
    --cinza-medio: #697586;
    --texto: #172033;

    --dourado: #c7a45b;
    --dourado-claro: #e1c47d;

    --borda: rgba(199, 164, 91, 0.35);

    --sombra: 0 20px 50px rgba(3, 13, 28, 0.12);

    --container: 1180px;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(3, 13, 28, 0.97);

    border-bottom: 1px solid rgba(199, 164, 91, 0.20);

    backdrop-filter: blur(12px);
}

.header-content {
    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
   NOME DA DRA. MARINES
===================================================== */

.brand {
    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 2px;

    min-width: 210px;
}

.brand strong {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.2;
}

.brand span {
    color: var(--dourado-claro);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =====================================================
   MENU
===================================================== */

.nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.nav a {
    position: relative;

    color: #ffffff;

    font-size: 14px;

    font-weight: 500;

    padding: 8px 0;

    transition: 0.3s ease;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--dourado);

    transition: 0.3s ease;
}

.nav a:hover {
    color: var(--dourado-claro);
}

.nav a:hover::after {
    width: 100%;
}


/* =====================================================
   MENU MOBILE
===================================================== */

.menu-toggle {
    display: none;

    align-items: center;

    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 8px;

    background: transparent;

    color: #ffffff;

    font-size: 23px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 760px;

    padding: 150px 0 100px;

    background:
        linear-gradient(
            135deg,
            #030d1c 0%,
            #071a33 55%,
            #0c2544 100%
        );

    color: #ffffff;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -200px;

    border: 1px solid rgba(199, 164, 91, 0.15);

    border-radius: 50%;
}

.hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -180px;

    border: 1px solid rgba(199, 164, 91, 0.10);

    border-radius: 50%;
}

.hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 650px;
}

.hero-label {
    display: inline-block;

    position: relative;

    color: var(--dourado-claro);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 22px;

    padding-left: 38px;
}

.hero-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 27px;
    height: 1px;

    background: var(--dourado);
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -1.5px;

    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--dourado-claro);
}

.hero-text {
    max-width: 590px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 34px;
}


/* =====================================================
   BOTÕES
===================================================== */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 45px;
}

.btn {
    min-height: 52px;

    padding: 0 26px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    background: var(--dourado);

    color: #071a33;

    box-shadow:
        0 10px 30px rgba(199, 164, 91, 0.18);
}

.btn-primary:hover {
    background: var(--dourado-claro);

    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.30);

    color: #ffffff;

    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--dourado);

    color: var(--dourado-claro);
}


/* =====================================================
   INFORMAÇÕES DO HERO
===================================================== */

.hero-info {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    padding-top: 25px;
}

.hero-info-item {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.hero-info-item strong {
    font-size: 13px;

    color: #ffffff;
}

.hero-info-item span {
    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;
}


/* =====================================================
   FOTO HERO
===================================================== */

.hero-image-area {
    position: relative;

    max-width: 510px;

    margin-left: auto;
}

.hero-image-frame {
    position: relative;

    padding: 12px;

    border: 1px solid rgba(199, 164, 91, 0.45);

    background: rgba(255, 255, 255, 0.04);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.30);
}

.hero-image-frame::before {
    content: "";

    position: absolute;

    left: -10px;
    bottom: -10px;

    width: 100%;
    height: 100%;

    border: 1px solid rgba(199, 164, 91, 0.18);

    z-index: -1;
}

.hero-image {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    object-position: center;

    background: #0c2544;
}

.hero-image-caption {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    background: rgba(3, 13, 28, 0.90);

    border-left: 2px solid var(--dourado);

    backdrop-filter: blur(8px);
}

.hero-image-caption > span {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    background: var(--dourado);

    border-radius: 50%;
}

.hero-image-caption div {
    display: flex;

    flex-direction: column;
}

.hero-image-caption strong {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;
}

.hero-image-caption small {
    color: rgba(255, 255, 255, 0.60);

    font-size: 11px;

    margin-top: 2px;
}


/* =====================================================
   SEÇÕES
===================================================== */

.section {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading.center {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-label {
    display: inline-block;

    color: var(--dourado);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.section-heading h2,
.about-content h2,
.contact-content h2,
.highlight h2 {
    color: var(--azul);

    font-family: Georgia, "Times New Roman", serif;

    font-weight: 500;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin-bottom: 18px;
}

.section-heading p {
    color: var(--cinza-medio);

    font-size: 16px;
}


/* =====================================================
   ESPECIALIDADE
===================================================== */

.specialty {
    padding: 90px 0;

    background: #ffffff;

    border-bottom: 1px solid #e7ebf0;
}

.specialty-content {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 80px;
}

.specialty .section-heading {
    margin-bottom: 0;
}

.specialty-content > p {
    color: #596579;

    font-size: 17px;

    line-height: 1.9;
}


/* =====================================================
   ÁREAS DE ATUAÇÃO
===================================================== */

.areas {
    background: #f5f7fa;
}

.cards-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.area-card {
    position: relative;

    min-height: 245px;

    padding: 35px 30px 32px;

    background: #ffffff;

    border: 1px solid #e5e9ee;

    overflow: hidden;

    transition: 0.35s ease;
}

.area-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: var(--dourado);

    transition: 0.35s ease;
}

.area-card:hover {
    transform: translateY(-7px);

    border-color: var(--borda);

    box-shadow: var(--sombra);
}

.area-card:hover::before {
    height: 100%;
}

.card-number {
    color: var(--dourado);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 28px;
}

.area-card h3 {
    color: var(--azul);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    font-weight: 500;

    margin-bottom: 12px;
}

.area-card p {
    color: #687385;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   DESTAQUE
===================================================== */

.highlight {
    padding: 105px 0;

    background:
        linear-gradient(
            120deg,
            #030d1c,
            #071a33
        );

    color: #ffffff;
}

.highlight-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;
}

.highlight .section-label {
    color: var(--dourado-claro);
}

.highlight h2 {
    color: #ffffff;

    margin-bottom: 0;
}

.highlight h2 span {
    color: var(--dourado-claro);
}

.highlight p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 25px;
}

.text-link {
    display: inline-block;

    color: var(--dourado-claro);

    font-size: 14px;

    font-weight: 700;

    border-bottom: 1px solid rgba(225, 196, 125, 0.45);

    padding-bottom: 5px;

    transition: 0.3s ease;
}

.text-link:hover {
    color: #ffffff;

    border-color: #ffffff;
}


/* =====================================================
   DIFERENCIAIS
===================================================== */

.differentials {
    background: #ffffff;
}

.differentials-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 45px;
}

.differential {
    padding: 15px 10px;
}

.differential-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;
    height: 55px;

    border: 1px solid var(--borda);

    color: var(--dourado);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 25px;
}

.differential h3 {
    color: var(--azul);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    font-weight: 500;

    margin-bottom: 13px;
}

.differential p {
    color: #697586;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   SOBRE
===================================================== */

.about {
    background: #f5f7fa;
}

.about-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 90px;
}

.about-image-wrapper {
    position: relative;

    max-width: 470px;
}

.about-image-frame {
    position: relative;

    padding: 10px;

    background: #ffffff;

    border: 1px solid #dce2e9;

    box-shadow: var(--sombra);
}

.about-image-frame::after {
    content: "";

    position: absolute;

    left: 20px;
    top: 20px;

    width: 100%;
    height: 100%;

    border: 1px solid var(--borda);

    z-index: 0;
}

.about-image {
    position: relative;

    z-index: 1;

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    object-position: center;
}

.about-content {
    position: relative;

    z-index: 2;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content > p {
    color: #657083;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;
}

.about-signature {
    display: flex;

    flex-direction: column;

    gap: 3px;

    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid #dce2e9;
}

.about-signature strong {
    color: var(--azul);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
}

.about-signature span {
    color: var(--dourado);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =====================================================
   AVALIAÇÕES
===================================================== */

.reviews {
    background: #ffffff;
}

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.review-card {
    padding: 35px 30px;

    background: #f7f9fb;

    border: 1px solid #e4e9ee;

    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--sombra);

    border-color: var(--borda);
}

.stars {
    color: var(--dourado);

    letter-spacing: 3px;

    font-size: 14px;

    margin-bottom: 22px;
}

.review-card p {
    color: #596579;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.review-card strong {
    color: var(--azul);

    font-size: 13px;
}


/* =====================================================
   CONTATO
===================================================== */

.contact {
    background: #f5f7fa;
}

.contact-box {
    padding: 65px;

    background:
        linear-gradient(
            135deg,
            #071a33,
            #030d1c
        );

    color: #ffffff;

    border: 1px solid rgba(199, 164, 91, 0.25);

    box-shadow: var(--sombra);
}

.contact-content {
    max-width: 680px;

    margin-bottom: 45px;
}

.contact-content .section-label {
    color: var(--dourado-claro);
}

.contact-content h2 {
    color: #ffffff;

    margin-bottom: 15px;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.70);

    font-size: 15px;

    line-height: 1.8;
}

.contact-options {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.contact-card {
    min-height: 150px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.13);

    background: rgba(255, 255, 255, 0.035);

    transition: 0.3s ease;
}

.contact-card:hover {
    border-color: var(--dourado);

    background: rgba(199, 164, 91, 0.07);

    transform: translateY(-3px);
}

.contact-icon {
    color: var(--dourado-claro);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.contact-card strong {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 4px;
}

.contact-card small {
    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;

    line-height: 1.5;

    word-break: break-word;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding-top: 60px;

    background: #020914;

    color: #ffffff;
}

.footer-content {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 45px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* NOME NO RODAPÉ */

.footer-brand {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-name {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    font-weight: 500;

    transition: 0.3s ease;
}

.footer-name:hover {
    color: var(--dourado-claro);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.50);

    font-size: 12px;
}


/* LINKS */

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--dourado-claro);
}


/* CONTATO */

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;

    word-break: break-word;

    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: var(--dourado-claro);
}


/* =====================================================
   FOOTER INFERIOR
===================================================== */

.footer-bottom {
    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);

    font-size: 11px;
}


/* =====================================================
   WHATSAPP FLUTUANTE
===================================================== */

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 999;

    min-width: 58px;
    height: 58px;

    padding: 0 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #1fa855;

    color: #ffffff;

    border-radius: 50px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);

    transition: 0.3s ease;
}

.whatsapp-float span {
    font-size: 12px;

    font-weight: 800;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .nav {
        gap: 18px;
    }

    .nav a {
        font-size: 13px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 55px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .container {
        width: min(100% - 30px, 600px);
    }


    /* HEADER */

    .header-content {
        min-height: 72px;
    }

    .brand {
        min-width: 0;

        max-width: 230px;
    }

    .brand strong {
        font-size: 18px;
    }

    .brand span {
        font-size: 8px;

        letter-spacing: 1.5px;
    }


    /* BOTÃO MENU */

    .menu-toggle {
        display: flex;
    }


    /* MENU */

    .nav {
        position: absolute;

        top: 72px;

        left: 15px;
        right: 15px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        background: #030d1c;

        border: 1px solid rgba(199, 164, 91, 0.20);

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a::after {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 125px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-content {
        max-width: none;
    }

    .hero-label {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 52px);

        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 15px;

        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-info {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .hero-image-area {
        width: 100%;

        max-width: 480px;

        margin: 0 auto;
    }

    .hero-image-caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }


    /* SEÇÕES */

    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .about-content h2,
    .contact-content h2,
    .highlight h2 {
        font-size: 34px;
    }


    /* ESPECIALIDADE */

    .specialty {
        padding: 70px 0;
    }

    .specialty-content {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .specialty-content > p {
        font-size: 15px;
    }


    /* CARDS */

    .cards-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .area-card {
        min-height: auto;

        padding: 28px 25px;
    }


    /* DESTAQUE */

    .highlight {
        padding: 75px 0;
    }

    .highlight-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* DIFERENCIAIS */

    .differentials-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .differential {
        padding: 0;
    }


    /* SOBRE */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image-wrapper {
        width: 100%;

        max-width: 470px;

        margin: 0 auto;
    }


    /* AVALIAÇÕES */

    .reviews-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    /* CONTATO */

    .contact-box {
        padding: 40px 25px;
    }

    .contact-options {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 20px 0;

        gap: 7px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        right: 15px;
        bottom: 15px;

        width: 55px;
        min-width: 55px;
        height: 55px;

        padding: 0;

        border-radius: 50%;
    }

    .whatsapp-float span {
        font-size: 0;
    }

    .whatsapp-float::before {
        content: "↗";

        font-size: 23px;

        font-weight: bold;
    }

}


/* =====================================================
   CELULARES PEQUENOS
===================================================== */

@media (max-width: 400px) {

    .container {
        width: calc(100% - 24px);
    }

    .brand strong {
        font-size: 16px;
    }

    .brand span {
        font-size: 7px;

        letter-spacing: 1px;
    }

    .hero {
        padding-top: 115px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 14px;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading h2,
    .about-content h2,
    .contact-content h2,
    .highlight h2 {
        font-size: 30px;
    }

    .contact-box {
        padding: 32px 20px;
    }

    .hero-image-caption {
        padding: 12px;

        left: 12px;
        right: 12px;
        bottom: 12px;
    }

}


/* =====================================================
   ACESSIBILIDADE
===================================================== */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--dourado-claro);

    outline-offset: 4px;
}


/* =====================================================
   SELEÇÃO DE TEXTO
===================================================== */

::selection {
    background: var(--dourado);

    color: var(--azul-escuro);
}
