/* ============================================================
   PAULO VIOLANTE RESTAURAÇÕES
   styles.css
   ============================================================ */


/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-width: 320px;
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: #2d241e;
    background: #f5f0e9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

::selection {
    background: #8a5a36;
    color: #fff;
}


/* ============================================================
   VARIÁVEIS
   ============================================================ */

:root {

    /* Madeira */
    --wood-950: #2d1d13;
    --wood-900: #3a2619;
    --wood-800: #4b2f1d;
    --wood-700: #604026;
    --wood-600: #765033;
    --wood-500: #91653f;
    --wood-400: #ad7d50;
    --wood-300: #c59b6d;

    /* Neutros */
    --cream: #f5f0e9;
    --cream-dark: #e9dfd2;
    --white: #ffffff;

    /* Texto */
    --text: #2d241e;
    --text-soft: #685b50;
    --text-light: #f7f2eb;

    /* WhatsApp */
    --whatsapp: #25d366;

    /* Layout */
    --container: 1180px;
    --radius: 18px;
    --radius-small: 10px;

    /* Sombras */
    --shadow-soft:
        0 12px 40px rgba(45, 29, 19, 0.08);

    --shadow-medium:
        0 20px 60px rgba(45, 29, 19, 0.15);

    /* Transições */
    --transition:
        220ms ease;

}


/* ============================================================
   CONTAINER
   ============================================================ */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* ============================================================
   TIPOGRAFIA
   ============================================================ */

h1,
h2,
h3 {
    color: var(--wood-900);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(
        2.5rem,
        5vw,
        5rem
    );
}

h2 {
    font-size: clamp(
        2rem,
        4vw,
        3.5rem
    );
}

h3 {
    font-size: 1.35rem;
}

p {
    color: var(--text-soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: var(--wood-600);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;
}

.eyebrow-light {
    color: var(--wood-300);
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(245, 240, 233, 0.829);

    border-bottom:
        1px solid rgba(75, 47, 29, 0.08);

    backdrop-filter: blur(14px);
}

.header-container {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.brand img {
    width: auto;
    height: 62px;
    object-fit: contain;
   
}


/* ============================================================
   NAVEGAÇÃO
   ============================================================ */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;

    font-size: 0.92rem;
    font-weight: 600;
}

.main-navigation a {
    position: relative;

    color: var(--wood-800);

    transition:
        color var(--transition);
}

.main-navigation a:not(.nav-cta)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--wood-500);

    transition:
        width var(--transition);
}

.main-navigation a:hover {
    color: var(--wood-500);
}

.main-navigation a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 18px;

    color: var(--white) !important;
    background: var(--wood-700);

    border-radius: 999px;

    transition:
        transform var(--transition),
        background var(--transition);
}

.nav-cta:hover {
    background: var(--wood-800);
    transform: translateY(-2px);
}


/* ============================================================
   MENU MOBILE
   ============================================================ */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    border: 0;
    border-radius: 50%;

    background: var(--wood-900);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: var(--white);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;

    min-height: 760px;

    display: grid;
    align-items: center;

    overflow: hidden;

    background: var(--wood-950);
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            rgba(45, 29, 19, 0.98) 0%,
            rgba(45, 29, 19, 0.84) 42%,
            rgba(45, 29, 19, 0.35) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    min-height: 760px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);

    align-items: center;

    gap: 60px;
}


/* Galeria */

.hero-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
     background:
        radial-gradient(
            circle at center,
            var(--wood-700) 0%,
            var(--wood-900) 100%
        );
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    flex-shrink: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(45, 29, 19, 0.72) 0%,
            rgba(45, 29, 19, 0.30) 45%,
            rgba(45, 29, 19, 0.08) 100%
        );
    pointer-events: none;
}

.slide-label {
    position: absolute;

    left: 28px;
    bottom: 28px;

    z-index: 5;

    padding: 8px 14px;

    color: var(--white);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    background:
        rgba(45, 29, 19, 0.7);

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 999px;

    backdrop-filter: blur(8px);
}


/* Conteúdo */

.hero-content {
    max-width: 620px;
}

.hero-content .eyebrow {
    color: var(--wood-300);
}

.hero-content h1 {
    color: var(--white);
}

.hero-content h1 strong {
    display: block;

    color: #d3a778;

    font-weight: inherit;
}

.hero-description {
    max-width: 560px;

    margin-top: 24px;

    color:
        rgba(247, 242, 235, 0.82);

    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}


/* ============================================================
   BOTÕES
   ============================================================ */

.button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding:
        13px 22px;

    border-radius: 999px;

    font-size: 0.92rem;
    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--wood-500);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2);
}

.button-primary:hover {
    background: var(--wood-400);
}

.button-secondary {
    color: var(--white);

    border:
        1px solid rgba(255, 255, 255, 0.32);
}

.button-secondary:hover {
    background:
        rgba(255, 255, 255, 0.1);
}


/* ============================================================
   SEÇÕES
   ============================================================ */

.section {
    padding:
        110px 0;
}

.section-light {
    background: var(--cream);
}

.section-wood {
    color: var(--text-light);

    background:
        linear-gradient(
            135deg,
            var(--wood-800),
            var(--wood-600)
        );
}

.section-dark {
    color: var(--text-light);

    background:
        var(--wood-950);
}

.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.section-heading > p:last-child {
    margin-top: 18px;
}


/* ============================================================
   SOBRE
   ============================================================ */

.two-columns {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 100px;

    align-items: start;
}

.section-text {
    max-width: 600px;
}

.section-text p + p {
    margin-top: 18px;
}

.text-link {
    display: inline-block;

    margin-top: 28px;

    color: var(--wood-600);

    font-weight: 700;

    border-bottom:
        1px solid var(--wood-400);

    transition:
        color var(--transition);
}

.text-link:hover {
    color: var(--wood-800);
}


/* ============================================================
   SERVIÇOS
   ============================================================ */

.section-wood h2,
.section-dark h2 {
    color: var(--white);
}

.section-wood p,
.section-dark p {
    color:
        rgba(247, 242, 235, 0.74);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    min-height: 280px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: var(--radius);

    background:
        rgba(255, 255, 255, 0.055);

    transition:
        transform var(--transition),
        background var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.09);
}

.service-number {
    margin-bottom: auto;

    color: var(--wood-300);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.service-card h3 {
    color: var(--white);

    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.93rem;
}


/* ============================================================
   PORTFÓLIO
   ============================================================ */

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}

.portfolio-card {
    overflow: hidden;

    border:
        1px solid rgba(75, 47, 29, 0.1);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: var(--shadow-soft);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-medium);
}

.portfolio-image {
    position: relative;

    aspect-ratio: 3 / 2;

    overflow: hidden;

    background: var(--cream-dark);
}

.portfolio-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 500ms ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.04);
}

.portfolio-badge {
    position: absolute;

    right: 18px;
    bottom: 18px;

    padding: 8px 13px;

    color: var(--white);

    font-size: 0.72rem;
    font-weight: 700;

    background:
        rgba(45, 29, 19, 0.82);

    border-radius: 999px;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.portfolio-card:hover .portfolio-badge {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-content {
    padding: 22px 24px 26px;
}

.portfolio-content > span {
    color: var(--wood-500);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portfolio-content h3 {
    margin-top: 6px;
}


/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */

.location-layout {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}

.location-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.location-list span {
    padding: 15px 17px;

    color:
        rgba(247, 242, 235, 0.88);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.035);

    font-size: 0.9rem;
}


/* ============================================================
   CTA
   ============================================================ */

.contact-section {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #e8d8c5,
            #f5f0e9
        );
}

.contact-container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.contact-container h2 {
    max-width: 750px;
}

.contact-container p {
    margin-top: 14px;
}

.button-whatsapp {
    flex-shrink: 0;

    color: var(--white);

    background:
        var(--whatsapp);

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.2);
}

.button-whatsapp:hover {
    background:
        #20bd5b;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding: 55px 0 25px;

    color:
        rgba(247, 242, 235, 0.75);

    background:
        var(--wood-950);
}

.footer-container {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr;

    gap: 50px;
}

.footer-brand img {
    width: 150px;
    height: auto;
}

.footer-brand p {
    max-width: 360px;

    margin-top: 15px;

    color:
        rgba(247, 242, 235, 0.6);

    font-size: 0.88rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;

    justify-content: flex-end;

    align-content: flex-start;

    gap: 15px 25px;

    font-size: 0.88rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    grid-column: 1 / -1;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    font-size: 0.75rem;
}

.footer-bottom p {
    color:
        rgba(247, 242, 235, 0.5);
}


/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 1500;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background:
        var(--whatsapp);

    border-radius: 50%;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp svg {
    width: 31px;
    height: 31px;

    fill: currentColor;
}

.floating-whatsapp span {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}


/* ============================================================
   RESPONSIVIDADE — TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .main-navigation {
        gap: 16px;
    }

    .hero-container {
        grid-template-columns:
            1fr;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero {
        min-height: auto;
    }

    .hero-gallery {
        min-height: 500px;
        order: 1;
    }

    .hero-content {
        order: 2;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .two-columns,
    .location-layout {
        gap: 50px;
    }

}


/* ============================================================
   RESPONSIVIDADE — MOBILE
   ============================================================ */

@media (max-width: 760px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    html {
        scroll-padding-top: 75px;
    }

    .header-container {
        min-height: 72px;
    }

    .brand img {
        height: 52px;
    }


    /* Menu */

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 14px 18px;

        background:
            rgba(245, 240, 233, 0.98);

        border-bottom:
            1px solid rgba(75, 47, 29, 0.1);
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        padding: 14px 10px;
    }

    .main-navigation .nav-cta {
        margin-top: 5px;

        text-align: center;
    }


    /* Hero */

    .hero-container {
        min-height: auto;

        padding-top: 35px;
        padding-bottom: 60px;

        gap: 32px;
    }

    .hero-gallery {
        min-height: 410px;

        border-radius: 16px;
    }

    .hero-content h1 {
        font-size:
            clamp(
                2.25rem,
                11vw,
                3.4rem
            );
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }


    /* Seções */

    .section {
        padding: 75px 0;
    }

    .two-columns {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* Serviços */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 220px;
    }


    /* Portfólio */

    .portfolio-grid {
        grid-template-columns: 1fr;
    }


    /* Localização */

    .location-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .location-list {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .contact-section {
        padding: 70px 0;
    }

    .contact-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-container .button {
        width: 100%;
    }


    /* Footer */

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
    }


    /* WhatsApp */

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;

        width: 58px;
        height: 58px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

}


/* ============================================================
   ACESSIBILIDADE
   ============================================================ */

:focus-visible {
    outline:
        3px solid #d5a36d;

    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}

#copy{
    color: #c59700;
}   

/* ============================================================
   CONTATO + GOOGLE MAPS
   ============================================================ */

.contact-section {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #e8d8c5,
            #f5f0e9
        );
}

.contact-container {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(360px, 1.1fr);

    align-items: center;

    gap: 70px;
}

.contact-content {
    max-width: 600px;
}

.contact-content h2 {
    max-width: 650px;
}

.contact-content > p:not(.eyebrow) {
    margin-top: 14px;
    margin-bottom: 28px;
}


/* Card do mapa */

.contact-map-card {
    overflow: hidden;

    background: var(--white);

    border:
        1px solid rgba(75, 47, 29, 0.1);

    border-radius: var(--radius);

    box-shadow: var(--shadow-soft);
}


/* Cabeçalho */

.contact-map-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 24px 26px 20px;
}

.map-label {
    margin-bottom: 5px;

    color: var(--wood-500);

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-map-header h3 {
    font-size: 1.25rem;
}

.map-pin {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--wood-600);

    border:
        1px solid rgba(75, 47, 29, 0.12);

    border-radius: 50%;

    font-size: 1.25rem;
}


/* Mapa */

.contact-map {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: var(--cream-dark);
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* Rodapé do card */

.contact-map-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 22px 26px 25px;
}

.address-info {
    display: flex;
    flex-direction: column;

    gap: 3px;

    font-size: 0.82rem;
}

.address-info strong {
    margin-bottom: 4px;

    color: var(--wood-800);

    font-size: 0.9rem;
}

.address-info span {
    color: var(--text-soft);
}

.map-link {
    flex-shrink: 0;

    color: var(--wood-600);

    font-size: 0.82rem;
    font-weight: 700;

    white-space: nowrap;

    transition:
        color var(--transition);
}

.map-link:hover {
    color: var(--wood-900);
}


/* ============================================================
   CONTATO — MOBILE
   ============================================================ */

@media (max-width: 760px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-content .button {
        width: 100%;
    }

    .contact-map-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }

    .map-link {
        padding-top: 4px;
    }

}

.portfolio-detail {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.portfolio-detail h1 {
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.portfolio-detail-intro {
    max-width: 760px;
    margin-bottom: 3rem;
}

.portfolio-detail-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.portfolio-detail-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
}

.portfolio-detail-image figcaption {
    margin-top: 0.85rem;
    color: var(--wood-700);
    font-size: 0.9rem;
}

.portfolio-before-after {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
    margin-top: 3rem;
}

.portfolio-before-after figure {
    position: relative;
    margin: 0;
    background: var(--cream-dark);
    overflow: hidden;
}

.portfolio-before-after img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.portfolio-image-label {
    position: absolute;
    z-index: 2;
    top: 1rem;
    left: 1rem;
    padding: 0.45rem 0.75rem;
    background: var(--wood-950);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-detail-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 700px) {
    .portfolio-before-after {
        grid-template-columns: 1fr;
    }
}

/* Complemento para o link minimalista "Ver todos os trabalhos". */
.portfolio-more {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.portfolio-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0;
    color: var(--wood-800);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(75, 47, 29, 0.35);
    transition: gap 0.25s ease, border-color 0.25s ease;
}

.portfolio-more-link:hover,
.portfolio-more-link:focus-visible {
    gap: 0.9rem;
    border-color: var(--wood-800);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--wood-700);
    text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    text-decoration: underline;
}
