* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #161616;
    background: #fff;
}

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

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    z-index: 20;
    color: white;
}

.logo img {
    width: 82px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    background:
        url("../../assets/img/Banner_Home2.jpg")
        center center / cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.82) 0%,
            rgba(8,8,8,.56) 45%,
            rgba(8,8,8,.18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(780px, 88%);
    margin-left: 8vw;
    padding-top: 80px;
}

.eyebrow {
    margin: 0 0 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
}

.eyebrow.dark {
    color: #777;
}

.hero h1 {
    font-size: clamp(50px, 7vw, 100px);
    line-height: .95;
    letter-spacing: -.055em;
    margin: 0;
}

.hero h1 span {
    display: block;
    font-weight: 300;
}

.hero-text {
    max-width: 570px;
    margin: 35px 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
}

.hero-actions {
    display: flex;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.button.primary {
    background: white;
    color: #111;
}

.button.secondary {
    border: 1px solid rgba(255,255,255,.55);
}

.button.dark {
    color: white;
    background: #063b55;
}

.scroll-indicator {
    position: absolute;
    bottom: 38px;
    right: 6vw;
    z-index: 2;
    font-size: 25px;
}

.intro {
    max-width: 1400px;
    margin: auto;
    padding: 130px 7vw;
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    gap: 55px;
}

.section-number {
    font-size: 12px;
    color: #999;
    padding-top: 7px;
}

.intro h2,
.section-heading h2,
.world h2,
.cta h2 {
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -.045em;
    margin: 0;
}

.intro-copy {
    max-width: 600px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    color: #111;
    font-weight: 700;
}

.stats {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stat {
    padding: 55px 4vw;
    border-right: 1px solid #ddd;
}

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

.stat strong {
    display: block;
    font-size: 50px;
    letter-spacing: -.04em;
}

.stat span {
    color: #777;
    font-size: 13px;
}

.areas {
    padding: 130px 6vw;
}

.section-heading {
    max-width: 1400px;
    margin: 0 auto 65px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 80px;
}

.section-heading > p {
    max-width: 420px;
    line-height: 1.7;
    color: #666;
}

.area-grid {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.area-card {
    min-height: 390px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.area-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            rgba(0,0,0,.05)
        );
    transition: .4s;
}

.area-card:hover::before {
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.12)
        );
}

.area-card div {
    position: absolute;
    left: 35px;
    bottom: 30px;
    color: white;
}

.area-card span {
    font-size: 11px;
    opacity: .6;
}

.area-card h3 {
    margin: 8px 0 0;
    font-size: 34px;
}

.world {
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.world-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,.66),rgba(0,0,0,.66)),
        url("../../assets/img/home_4.jpg")
        center / cover no-repeat;
}

.world-content {
    position: relative;
    width: min(1350px,88%);
    margin: auto;
}

.world-top {
    display: grid;
    grid-template-columns: minmax(430px,.78fr) minmax(520px,1.22fr);
    gap: clamp(35px,6vw,100px);
    align-items: center;
}

.world-map {
    position: relative;
    width: 100%;
    max-width: 760px;
    justify-self: end;
}

.world-map > img {
    display: block;
    width: 100%;
    height: auto;
    opacity: .72;
}

.world h2 span {
    display: block;
    font-weight: 300;
}

.world-description {
    max-width: 600px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    margin: 30px 0 60px;
}

@media (max-width: 1050px) {
    .world-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
    .world-top { grid-template-columns:1fr; }
    .world-map { max-width:640px; justify-self:center; margin:-20px 0 35px; }
}

@media (max-width: 550px) {
    .world-map { margin:0 0 30px; }
}

.countries {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid rgba(255,255,255,.35);
    border-bottom: 1px solid rgba(255,255,255,.35);
}

.countries a {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,.25);
}

.countries a:last-child {
    border-right: 0;
}

.countries span {
    display: block;
    font-size: 11px;
    opacity: .55;
    text-transform: uppercase;
}

.countries strong {
    display: block;
    margin-top: 9px;
    font-size: 25px;
}

.cta {
    text-align: center;
    padding: 140px 20px;
}

.cta h2 span {
    display: block;
    font-weight: 300;
}

.cta .button {
    margin-top: 40px;
}

footer {
    background: #111;
    color: white;
}

.footer-main {
    max-width: 1400px;
    margin: auto;
    padding: 80px 6vw;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer-brand img {
    width: 90px;
    height: auto;
}

.footer-brand p {
    color: #888;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links strong {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
}

.footer-bottom {
    padding: 25px 6vw;
    border-top: 1px solid #292929;
    color: #777;
    font-size: 12px;
}


@media (max-width: 900px) {

    .header {
        height: 90px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        padding: 30px;
        flex-direction: column;
        background: #111;
        align-items: flex-start;
    }

    .nav.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
        width: 36px;
        background: none;
        border: 0;
    }

    .menu-toggle span {
        height: 2px;
        background: white;
        display: block;
        margin: 7px 0;
    }

    .hero-content {
        margin-left: 6vw;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 90px 7vw;
    }

    .section-number {
        display: none;
    }

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

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

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

    .section-heading {
        display: block;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 550px) {

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

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

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

    .stat {
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

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

    .countries a {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

}


/* ==================================================
   AJUSTES VISUAIS V2
   ================================================== */


/* HEADER */

.header {
    height: 120px;
    padding-left: 7vw;
    padding-right: 7vw;
}

.logo img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.nav {
    gap: 34px;
}

.nav a {
    font-size: 13px;
    letter-spacing: .07em;
    transition: opacity .25s ease;
}

.nav a:hover {
    opacity: .6;
}


/* HERO */

.hero-content {
    width: min(850px, 88%);
}

.hero-text {
    font-size: 19px;
    max-width: 620px;
}


/* INTRODUÇÃO */

.intro {
    padding-top: 150px;
    padding-bottom: 150px;
}

.intro-copy {
    font-size: 18px;
}


/* NÚMEROS */

.stat {
    padding-top: 65px;
    padding-bottom: 65px;
}

.stat strong {
    font-size: 62px;
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}


/* ÁREAS */

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

.area-card {
    min-height: 430px;
}

/* Trading ocupa toda a largura */

.area-card:last-child {
    grid-column: 1 / -1;
    min-height: 480px;
    background-position: center 48%;
}

.area-card h3 {
    font-size: 38px;
}

.area-card div {
    left: 40px;
    bottom: 38px;
}


/* PRESENÇA INTERNACIONAL */

.world {
    min-height: 850px;
}

.countries a {
    padding: 35px;
    transition: background .25s ease;
}

.countries a:hover {
    background: rgba(255,255,255,.08);
}

.countries strong {
    font-size: 28px;
}


/* CTA */

.cta {
    padding-top: 160px;
    padding-bottom: 160px;
}


/* FOOTER */

.footer-main {
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-brand img {
    width: 115px;
}

.footer-brand p {
    font-size: 15px;
}

.footer-links strong {
    font-size: 14px;
}

.footer-links a {
    font-size: 14px;
    line-height: 1.7;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}


/* MOBILE */

@media (max-width: 900px) {

    .logo img {
        width: 76px;
        height: 76px;
    }

    .area-card:last-child {
        grid-column: auto;
        min-height: 390px;
    }

    .stat strong {
        font-size: 50px;
    }

}


@media (max-width: 550px) {

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

    .area-card {
        min-height: 360px;
    }

    .area-card:last-child {
        min-height: 360px;
    }

}


/* ==================================================
   CARTÕES ÁREAS DE ATIVIDADE — ESTILO ORIGINAL JAMO
   ================================================== */

.areas {
    padding: 130px 4vw 150px;
}

.area-grid {
    max-width: 1560px;
    margin: 0 auto;

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

    gap: 48px 24px;
}


/* cartão */

.area-card,
.area-card:last-child {

    grid-column: auto;

    position: relative;

    min-height: 0;

    aspect-ratio: 0.84 / 1;

    border-radius: 7px;

    overflow: hidden;

    background-size: cover;
    background-position: center;

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);

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


/* sombreado */

.area-card::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.03) 20%,
            rgba(0,0,0,.15) 55%,
            rgba(0,0,0,.72) 100%
        );

    transition: background .35s ease;
}


/* efeito hover */

.area-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.18);
}

.area-card:hover::before {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05) 15%,
            rgba(0,0,0,.20) 50%,
            rgba(0,0,0,.82) 100%
        );
}


/* texto */

.area-card div {

    position: absolute;

    left: 40px;
    right: 30px;
    bottom: 48px;

    color: white;

    z-index: 2;
}


/* escondemos a numeração moderna */

.area-card div > span {

    display: none;
}


.area-card h3 {

    margin: 0;

    font-size: clamp(21px, 1.6vw, 31px);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .14em;

    line-height: 1.15;

    color: white;
}


/* ícone linear */

.area-card div::before {

    content: "";

    display: block;

    width: 42px;
    height: 42px;

    margin-bottom: 28px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    opacity: .95;
}


/* ícones SVG simples */

.area-card:nth-child(1) div::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M7 30l5-10c1-3 4-5 7-5h10c3 0 5 1 7 4l5 11'/%3E%3Cpath d='M5 30h38v7H5z'/%3E%3Ccircle cx='14' cy='37' r='4'/%3E%3Ccircle cx='34' cy='37' r='4'/%3E%3C/svg%3E");
}

.area-card:nth-child(2) div::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M7 20h28v9H7z'/%3E%3Cpath d='M35 23h7v3h-7'/%3E%3Cpath d='M12 20v-5h7v5M15 29v7'/%3E%3C/svg%3E");
}

.area-card:nth-child(3) div::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M17 7h14v8H17z'/%3E%3Cpath d='M24 15v26'/%3E%3Cpath d='M13 22h22'/%3E%3C/svg%3E");
}

.area-card:nth-child(4) div::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M17 7h14v8H17z'/%3E%3Cpath d='M24 15v26'/%3E%3Cpath d='M13 22h22'/%3E%3C/svg%3E");
}

.area-card:nth-child(5) div::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M11 18c5-8 21-8 26 0'/%3E%3Ccircle cx='14' cy='27' r='6'/%3E%3Ccircle cx='34' cy='27' r='6'/%3E%3Cpath d='M20 27h8'/%3E%3C/svg%3E");
}

.area-card:nth-child(6) div::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='17' cy='24' r='8'/%3E%3Cpath d='M25 24h17M35 24v6M30 24v4'/%3E%3C/svg%3E");
}

.area-card:nth-child(7) div::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M24 6v36M24 13L12 23M24 13l12 10M12 23v5M36 23v5'/%3E%3Cpath d='M9 42h30'/%3E%3C/svg%3E");
}


/* TABLET */

@media (max-width: 1200px) {

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

}


/* MOBILE / TABLET */

@media (max-width: 850px) {

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}


/* MOBILE */

@media (max-width: 560px) {

    .areas {
        padding-left: 22px;
        padding-right: 22px;
    }

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

    .area-card,
    .area-card:last-child {
        aspect-ratio: 0.9 / 1;
    }

    .area-card div {
        left: 30px;
        bottom: 35px;
    }

    .area-card h3 {
        font-size: 24px;
    }

}


/* ==================================================
   ÍCONES ORIGINAIS ICONSMIND — GRUPO JAMO
   ================================================== */


/* eliminar completamente os SVG temporários */

.area-card div::before {
    content: none !important;
    display: none !important;
    background-image: none !important;
}


/* ícone original */

.jamo-area-icon {
    display: block;

    width: auto;
    height: auto;

    margin: 0 0 25px 0;

    color: #fff;

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

    font-style: normal;

    font-weight: normal;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-shadow:
        0 1px 2px rgba(0,0,0,.15);
}


/* afinação do conjunto ícone + título */

.area-card div {
    left: 40px;
    right: 30px;
    bottom: 42px;
}

.area-card h3 {
    margin: 0;

    color: #fff;

    font-size: clamp(20px, 1.55vw, 29px);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .13em;

    line-height: 1.1;
}


/* ligeiramente maiores em ecrãs grandes */

@media (min-width: 1400px) {

    .jamo-area-icon {
        font-size: 46px;
        margin-bottom: 27px;
    }

}


/* mobile */

@media (max-width: 560px) {

    .jamo-area-icon {
        font-size: 40px;
        margin-bottom: 22px;
    }

}


/* ==================================================
   CRÉDITO K4W
   ================================================== */

.footer-credit {
    margin-left: 5px;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
    opacity: .72;
    transition: opacity .2s ease;
}

.footer-credit a:hover {
    opacity: 1;
}


/* ==================================================
   MENSAGEM DA ADMINISTRAÇÃO
   ================================================== */

.administracao {
    display: grid;
    grid-template-columns: 1fr 1fr;

    max-width: 1500px;
    width: calc(100% - 8vw);

    margin: 120px auto 0;

    min-height: 650px;

    overflow: hidden;

    background: #111;
}


/* FOTOGRAFIA */

.admin-photo {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.admin-photo img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform .8s ease;
}

.administracao:hover .admin-photo img {
    transform: scale(1.025);
}


/* BLOCO MENSAGEM */

.admin-message {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;
}


/* imagem de fundo subtil */

.admin-message-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.78),
            rgba(0,0,0,.84)
        ),
        url("../../assets/img/msg_presidente.jpg")
        center / cover no-repeat;

    transform: scale(1.03);
}


/* conteúdo */

.admin-message-content {
    position: relative;
    z-index: 2;

    max-width: 620px;

    padding: 80px 7vw;
}

.admin-message-content .eyebrow {
    color: rgba(255,255,255,.6);

    margin-bottom: 25px;
}

.admin-message-content h2 {
    margin: 0 0 35px;

    font-size: clamp(42px, 4.6vw, 72px);

    line-height: 1;

    letter-spacing: -.045em;

    font-weight: 700;
}

.admin-message-content p {
    margin: 0 0 18px;

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

    font-size: 17px;

    line-height: 1.8;
}


/* LINK */

.admin-link {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    margin-top: 22px;

    padding-bottom: 6px;

    border-bottom: 1px solid rgba(255,255,255,.35);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .09em;

    transition:
        border-color .25s ease,
        opacity .25s ease;
}

.admin-link span {
    font-size: 18px;
    transition: transform .25s ease;
}

.admin-link:hover {
    border-color: #fff;
}

.admin-link:hover span {
    transform: translateX(5px);
}


/* dar continuidade à secção Grupo JAMO */

.administracao + .intro {
    margin-top: 0;
}


/* TABLET */

@media (max-width: 1000px) {

    .administracao {
        width: calc(100% - 44px);

        grid-template-columns: 1fr;

        margin-top: 80px;
    }

    .admin-photo {
        min-height: 520px;
    }

    .admin-photo img {
        position: absolute;
    }

    .admin-message {
        min-height: auto;
    }

    .admin-message-content {
        padding: 75px 8vw;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .administracao {
        width: 100%;

        margin-top: 0;
    }

    .admin-photo {
        min-height: 400px;
    }

    .admin-message-content {
        padding: 65px 25px;
    }

    .admin-message-content h2 {
        font-size: 42px;
    }

    .admin-message-content p {
        font-size: 16px;
    }

}


/* ==================================================
   ADMINISTRAÇÃO — FOTOGRAFIA COMPLETA
   ================================================== */

.admin-photo {
    background: #f3f3f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-photo img {
    position: relative !important;
    inset: auto !important;

    width: 100%;
    height: 100%;

    object-fit: contain !important;
    object-position: center center !important;

    transform: none !important;
}

.administracao:hover .admin-photo img {
    transform: none !important;
}



/* ==========================================================
   ADMINISTRAÇÃO V3
   Fotografia completa, sem espaços brancos e sem cortes
   ========================================================== */

.administracao {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;

    width: calc(100% - 8vw) !important;
    max-width: 1500px !important;

    margin: 110px auto 0 !important;

    min-height: 0 !important;
    height: auto !important;

    align-items: stretch !important;

    overflow: hidden !important;

    background: #111 !important;
}


/* ------------------------------------------
   FOTOGRAFIA
   ------------------------------------------ */

.admin-photo {
    position: relative !important;

    min-height: 0 !important;
    height: auto !important;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;

    overflow: hidden !important;

    background: #111 !important;
}


.admin-photo img {
    position: static !important;

    display: block !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: initial !important;
    object-position: initial !important;

    transform: none !important;
}


/* eliminar zoom anterior */

.administracao:hover .admin-photo img {
    transform: none !important;
}


/* ------------------------------------------
   MENSAGEM
   ------------------------------------------ */

.admin-message {
    position: relative !important;

    min-height: 0 !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;

    overflow: hidden !important;
}


.admin-message-content {
    position: relative !important;
    z-index: 2 !important;

    width: 100% !important;
    max-width: 660px !important;

    padding: 55px 6vw !important;
}


.admin-message-content h2 {
    margin-bottom: 26px !important;

    font-size: clamp(38px, 4vw, 62px) !important;

    line-height: .98 !important;
}


.admin-message-content p {
    margin-bottom: 15px !important;

    font-size: 16px !important;

    line-height: 1.65 !important;
}


.admin-link {
    margin-top: 13px !important;
}


/* ------------------------------------------
   TABLET
   ------------------------------------------ */

@media (max-width: 1000px) {

    .administracao {
        width: calc(100% - 44px) !important;

        grid-template-columns: 1fr !important;

        margin-top: 80px !important;
    }

    .admin-photo {
        height: auto !important;
        min-height: 0 !important;
    }

    .admin-photo img {
        width: 100% !important;
        height: auto !important;
    }

    .admin-message-content {
        max-width: 700px !important;

        padding: 65px 7vw !important;
    }
}


/* ------------------------------------------
   MOBILE
   ------------------------------------------ */

@media (max-width: 600px) {

    .administracao {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .admin-message-content {
        padding: 55px 25px !important;
    }

    .admin-message-content h2 {
        font-size: 40px !important;
    }

}


/* ==========================================================
   ÁREAS DE ATIVIDADE — FULLSCREEN SCROLL
   ========================================================== */

.areas-showcase {
    position: relative;
    width: 100%;
    background: #0d0d0d;
}


/* INTRODUÇÃO */

.areas-intro {
    min-height: 46vh;

    padding: 110px 7vw 95px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #fff;

    color: #111;
}

.areas-intro .eyebrow {
    color: #777;
    margin-bottom: 18px;
}

.areas-intro h2 {
    margin: 0;

    font-size: clamp(48px, 6.2vw, 92px);

    line-height: .95;

    letter-spacing: -.055em;
}

.areas-intro > p:not(.eyebrow) {
    max-width: 550px;

    margin: 28px 0 0;

    color: #666;

    font-size: 17px;

    line-height: 1.7;
}

.areas-scroll-hint {
    margin-top: 45px;

    display: flex;
    align-items: center;
    gap: 15px;

    color: #888;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .16em;
}

.areas-scroll-hint b {
    color: #111;

    font-size: 20px;

    font-weight: 400;
}


/* SLIDE */

.area-slide {
    position: relative;

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    color: #fff;

    isolation: isolate;

    scroll-snap-align: start;
    scroll-snap-stop: always;
}


/* BACKGROUND */

.area-slide-bg {
    position: absolute;
    inset: 0;

    z-index: -3;

    background-size: cover;
    background-position: center;

    transform: scale(1.035);

    transition: transform 1.3s cubic-bezier(.2,.7,.2,1);
}

.area-slide.is-visible .area-slide-bg {
    transform: scale(1);
}


/* OVERLAY */

.area-slide-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(4,4,4,.86) 0%,
            rgba(4,4,4,.64) 39%,
            rgba(4,4,4,.20) 75%,
            rgba(4,4,4,.14) 100%
        );
}

.area-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.42),
            transparent 45%
        );

    pointer-events: none;
}


/* NÚMERO */

.area-slide-number {
    position: absolute;

    top: 55px;
    right: 6vw;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .15em;

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


/* CONTEÚDO */

.area-slide-content {
    width: min(760px, 86%);

    margin-left: 7vw;

    padding-bottom: 11vh;

    opacity: .35;

    transform: translateY(35px);

    transition:
        opacity .7s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.area-slide.is-visible .area-slide-content {
    opacity: 1;
    transform: translateY(0);
}


/* ICON */

.area-slide-icon {
    display: block;

    margin-bottom: 30px;

    color: #fff;

    font-size: 55px;

    font-style: normal;

    line-height: 1;

    -webkit-font-smoothing: antialiased;
}


/* TEXTO */

.area-slide-kicker {
    margin: 0 0 20px;

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

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .22em;
}

.area-slide h2 {
    margin: 0;

    font-size: clamp(66px, 9vw, 145px);

    line-height: .82;

    letter-spacing: -.06em;

    text-transform: uppercase;
}

.area-slide-copy {
    max-width: 540px;

    margin: 30px 0 0;

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

    font-size: 17px;

    line-height: 1.65;
}


/* LINK */

.area-slide-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 32px;

    padding: 0 0 8px;

    border-bottom:
        1px solid rgba(255,255,255,.45);

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .12em;

    transition: border-color .25s ease;
}

.area-slide-link span {
    font-size: 20px;

    transition: transform .25s ease;
}

.area-slide-link:hover {
    border-color: #fff;
}

.area-slide-link:hover span {
    transform: translateX(6px);
}


/* PRÓXIMA ÁREA */

.area-next {
    position: absolute;

    right: 6vw;
    bottom: 7vh;

    text-align: right;

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

    font-size: 14px;

    font-weight: 600;
}

.area-next span {
    display: block;

    margin-bottom: 8px;

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

    font-size: 9px;

    letter-spacing: .18em;
}


/* IMAGENS — POSICIONAMENTO INDIVIDUAL */

.area-slide-automovel .area-slide-bg {
    background-position: center;
}

.area-slide-carpintaria .area-slide-bg {
    background-position: center;
}

.area-slide-comercio .area-slide-bg {
    background-position: center;
}

.area-slide-construcao .area-slide-bg {
    background-position: center;
}

.area-slide-estetica .area-slide-bg {
    background-position: center 35%;
}

.area-slide-imobiliario .area-slide-bg {
    background-position: center;
}

.area-slide-trading .area-slide-bg {
    background-position: center;
}


/* ativado pelo JS apenas enquanto percorremos as áreas */

html.jamo-areas-scrolling {
    scroll-snap-type: y proximity;
}


/* TABLET */

@media (max-width: 900px) {

    .areas-intro {
        min-height: auto;
        padding: 85px 7vw;
    }

    .area-slide-content {
        padding-bottom: 14vh;
    }

    .area-slide h2 {
        font-size: clamp(52px, 12vw, 95px);
    }

    .area-next {
        display: none;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .areas-intro {
        padding: 75px 25px;
    }

    .area-slide {
        min-height: 100svh;
    }

    .area-slide-number {
        top: 35px;
        right: 25px;
    }

    .area-slide-content {
        width: auto;

        margin: 0 25px;

        padding-bottom: 11vh;
    }

    .area-slide-icon {
        font-size: 44px;

        margin-bottom: 23px;
    }

    .area-slide h2 {
        font-size: clamp(48px, 16vw, 76px);
    }

    .area-slide-copy {
        font-size: 15px;
    }

    .area-slide-overlay {
        background:
            linear-gradient(
                to top,
                rgba(4,4,4,.92) 0%,
                rgba(4,4,4,.62) 58%,
                rgba(4,4,4,.15) 100%
            );
    }

}


/* respeitar utilizadores que desativam animações */

@media (prefers-reduced-motion: reduce) {

    html.jamo-areas-scrolling {
        scroll-snap-type: none;
    }

    .area-slide-bg,
    .area-slide-content {
        transition: none;
        transform: none;
    }

}


/* ==========================================================
   ÁREAS DE ATIVIDADE V4
   STICKY / SCROLLYTELLING
   ========================================================== */


/* ------------------------------------------
   INTRO
   ------------------------------------------ */

.areas-sticky-section {
    position: relative !important;

    width: 100% !important;

    background: #fff !important;
}


.areas-sticky-intro {
    max-width: 1400px;

    margin: auto;

    padding: 125px 7vw 95px;
}


.areas-sticky-intro .eyebrow {
    margin-bottom: 20px;
}


.areas-sticky-intro h2 {
    margin: 0;

    color: #111;

    font-size: clamp(50px, 6vw, 88px);

    line-height: .95;

    letter-spacing: -.055em;
}


.areas-sticky-intro > p:not(.eyebrow) {
    max-width: 560px;

    margin: 28px 0 0;

    color: #666;

    font-size: 17px;

    line-height: 1.7;
}


/* ------------------------------------------
   ZONA TOTAL DE SCROLL
   ------------------------------------------ */

.areas-scroll-zone {
    position: relative !important;

    width: 100% !important;

    height: 700vh !important;

    background: #0b0b0b !important;
}


/* ------------------------------------------
   ECRÃ FIXO
   ------------------------------------------ */

.areas-sticky-stage {
    position: sticky !important;

    position: -webkit-sticky !important;

    top: 0 !important;

    width: 100% !important;

    height: 100vh !important;
    height: 100svh !important;

    overflow: hidden !important;

    background: #111 !important;
}


/* ------------------------------------------
   TODOS OS PAINÉIS OCUPAM O MESMO LUGAR
   ------------------------------------------ */

.sticky-area-panel {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    display: flex !important;

    align-items: flex-end !important;

    overflow: hidden !important;

    color: #fff !important;

    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;

    transition:
        opacity .75s ease,
        visibility .75s ease !important;
}


.sticky-area-panel.is-active {
    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;
}


/* ------------------------------------------
   BACKGROUND
   ------------------------------------------ */

.sticky-area-bg {
    position: absolute !important;

    inset: 0 !important;

    z-index: 0 !important;

    background-size: cover !important;

    background-position: center !important;

    transform: scale(1.045);

    transition:
        transform 1.4s cubic-bezier(.2,.7,.2,1) !important;
}


.sticky-area-panel.is-active .sticky-area-bg {
    transform: scale(1);
}


/* ESTÉTICA */

.sticky-area-panel[data-area="4"] .sticky-area-bg {
    background-position: center 32% !important;
}


/* ------------------------------------------
   SOMBRA
   ------------------------------------------ */

.sticky-area-overlay {
    position: absolute !important;

    inset: 0 !important;

    z-index: 1 !important;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.88) 0%,
            rgba(5,5,5,.68) 38%,
            rgba(5,5,5,.22) 72%,
            rgba(5,5,5,.10) 100%
        ) !important;
}


.sticky-area-panel::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.42),
            transparent 45%
        );

    pointer-events: none;
}


/* ------------------------------------------
   TOPO
   ------------------------------------------ */

.sticky-area-top {
    position: absolute !important;

    z-index: 4 !important;

    top: 48px !important;

    left: 7vw !important;
    right: 7vw !important;

    display: flex !important;

    justify-content: space-between !important;

    align-items: center !important;

    color: rgba(255,255,255,.58) !important;

    font-size: 10px !important;

    font-weight: 700 !important;

    letter-spacing: .17em !important;
}


.sticky-area-top strong {
    color: rgba(255,255,255,.75);

    font-size: 11px;

    font-weight: 600;
}


/* ------------------------------------------
   CONTEÚDO
   ------------------------------------------ */

.sticky-area-content {
    position: relative !important;

    z-index: 4 !important;

    width: min(820px, 84%) !important;

    margin-left: 7vw !important;

    padding-bottom: 10vh !important;

    opacity: 0;

    transform: translateY(38px);

    transition:
        opacity .7s .12s ease,
        transform .85s .12s cubic-bezier(.2,.7,.2,1) !important;
}


.sticky-area-panel.is-active .sticky-area-content {
    opacity: 1;

    transform: translateY(0);
}


/* ------------------------------------------
   ICON
   ------------------------------------------ */

.sticky-area-icon {
    display: block !important;

    margin-bottom: 27px !important;

    color: #fff !important;

    font-size: 52px !important;

    line-height: 1 !important;

    font-style: normal !important;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ------------------------------------------
   TEXTO
   ------------------------------------------ */

.sticky-area-kicker {
    margin: 0 0 17px !important;

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

    font-size: 10px !important;

    font-weight: 700 !important;

    letter-spacing: .20em !important;
}


.sticky-area-content h2 {
    margin: 0 !important;

    color: #fff !important;

    font-size: clamp(62px, 8.4vw, 132px) !important;

    line-height: .84 !important;

    letter-spacing: -.06em !important;

    text-transform: uppercase !important;
}


.sticky-area-description {
    max-width: 530px !important;

    margin: 27px 0 0 !important;

    color: rgba(255,255,255,.73) !important;

    font-size: 17px !important;

    line-height: 1.65 !important;
}


/* ------------------------------------------
   LINK
   ------------------------------------------ */

.sticky-area-link {
    display: inline-flex !important;

    align-items: center !important;

    gap: 16px !important;

    margin-top: 30px !important;

    padding-bottom: 7px !important;

    border-bottom:
        1px solid rgba(255,255,255,.43) !important;

    color: #fff !important;

    font-size: 11px !important;

    font-weight: 700 !important;

    text-transform: uppercase !important;

    letter-spacing: .12em !important;
}


.sticky-area-link span {
    font-size: 19px !important;

    transition: transform .25s ease;
}


.sticky-area-link:hover span {
    transform: translateX(6px);
}


/* ------------------------------------------
   INDICAÇÃO SEGUINTE
   ------------------------------------------ */

.sticky-area-next {
    position: absolute !important;

    z-index: 4 !important;

    right: 7vw !important;

    bottom: 8vh !important;

    text-align: right !important;

    color: rgba(255,255,255,.88) !important;

    font-size: 14px !important;

    font-weight: 600 !important;
}


.sticky-area-next span {
    display: block !important;

    margin-bottom: 7px !important;

    color: rgba(255,255,255,.40) !important;

    font-size: 9px !important;

    letter-spacing: .17em !important;
}


/* ------------------------------------------
   PROGRESSO
   ------------------------------------------ */

.areas-progress {
    position: absolute !important;

    z-index: 10 !important;

    top: 50% !important;

    right: 2.5vw !important;

    transform: translateY(-50%) !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    gap: 14px !important;
}


.areas-progress-line {
    position: relative;

    display: block;

    width: 1px;

    height: 120px;

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


.areas-progress-line b {
    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 1px;

    height: 14.285%;

    background: #fff;

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1);
}


.areas-progress-text {
    color: rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: .12em;
}


/* ------------------------------------------
   STEPS INVISÍVEIS
   ------------------------------------------ */

.area-scroll-step {
    position: relative !important;

    z-index: 20 !important;

    width: 100% !important;

    height: 100vh !important;

    pointer-events: none !important;
}


/* ------------------------------------------
   TABLET
   ------------------------------------------ */

@media (max-width: 900px) {

    .areas-scroll-zone {
        height: 700svh !important;
    }

    .sticky-area-top {
        top: 35px !important;
    }

    .sticky-area-content {
        padding-bottom: 13vh !important;
    }

    .sticky-area-content h2 {
        font-size: clamp(50px, 12vw, 90px) !important;
    }

    .sticky-area-next,
    .areas-progress {
        display: none !important;
    }

}


/* ------------------------------------------
   MOBILE
   ------------------------------------------ */

@media (max-width: 600px) {

    .areas-sticky-intro {
        padding:
            80px
            25px
            70px !important;
    }

    .sticky-area-top {
        left: 25px !important;
        right: 25px !important;
    }

    .sticky-area-content {
        width: auto !important;

        margin-left: 25px !important;
        margin-right: 25px !important;

        padding-bottom: 10vh !important;
    }

    .sticky-area-icon {
        font-size: 43px !important;
    }

    .sticky-area-content h2 {
        font-size: clamp(45px, 15vw, 70px) !important;
    }

    .sticky-area-description {
        font-size: 15px !important;
    }

    .sticky-area-overlay {
        background:
            linear-gradient(
                to top,
                rgba(5,5,5,.94) 0%,
                rgba(5,5,5,.70) 54%,
                rgba(5,5,5,.13) 100%
            ) !important;
    }

}


/* ------------------------------------------
   REDUCED MOTION
   ------------------------------------------ */

@media (prefers-reduced-motion: reduce) {

    .sticky-area-panel,
    .sticky-area-bg,
    .sticky-area-content,
    .areas-progress-line b {
        transition: none !important;
    }

}


/* ==========================================================
   EMPRESAS DENTRO DAS ÁREAS FULLSCREEN
   ========================================================== */

.sticky-area-companies {
    display: flex;
    flex-wrap: wrap;

    max-width: 780px;

    gap: 10px;

    margin-top: 26px;
}


.sticky-area-companies a {
    display: flex;
    flex-direction: column;

    min-width: 180px;

    padding: 13px 18px 12px;

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

    background:
        rgba(0,0,0,.16);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    color: #fff;

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


.sticky-area-companies a:hover {
    background:
        rgba(255,255,255,.11);

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

    transform: translateY(-2px);
}


.sticky-area-companies strong {
    font-size: 12px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: .02em;
}


.sticky-area-companies span {
    margin-top: 4px;

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

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .10em;
}


/* o conteúdo ficou mais rico:
   subir ligeiramente para caber confortavelmente */

.sticky-area-content {
    padding-bottom: 7vh !important;
}


.sticky-area-description {
    max-width: 600px !important;
}


@media (max-height: 800px) and (min-width: 901px) {

    .sticky-area-icon {
        margin-bottom: 17px !important;

        font-size: 42px !important;
    }

    .sticky-area-kicker {
        margin-bottom: 12px !important;
    }

    .sticky-area-content h2 {
        font-size:
            clamp(50px, 7vw, 100px) !important;
    }

    .sticky-area-description {
        margin-top: 18px !important;

        font-size: 15px !important;
    }

    .sticky-area-companies {
        margin-top: 18px;
    }

    .sticky-area-link {
        margin-top: 20px !important;
    }

}


@media (max-width: 700px) {

    .sticky-area-companies {
        gap: 7px;
    }

    .sticky-area-companies a {
        min-width: 0;

        flex: 1 1 calc(50% - 7px);

        padding: 11px 12px;
    }

    .sticky-area-companies strong {
        font-size: 10px;
    }

}

/* ==================================================
   EMPRESAS NAS ÁREAS STICKY
   ================================================== */

.sticky-area-companies {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    max-width: 760px;
    margin-top: 24px;
}

.sticky-area-companies a {
    display: flex;
    flex-direction: column;

    min-width: 180px;

    padding: 12px 16px;

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

    background: rgba(0,0,0,.18);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    color: #fff;

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

.sticky-area-companies a:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.70);
    transform: translateY(-2px);
}

.sticky-area-companies strong {
    font-size: 12px;
    line-height: 1.25;
}

.sticky-area-companies span {
    margin-top: 4px;

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

    font-size: 9px;

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

.sticky-area-content {
    padding-bottom: 7vh !important;
}

@media (max-height: 820px) and (min-width: 901px) {

    .sticky-area-icon {
        font-size: 42px !important;
        margin-bottom: 16px !important;
    }

    .sticky-area-content h2 {
        font-size: clamp(50px, 7vw, 100px) !important;
    }

    .sticky-area-description {
        margin-top: 17px !important;
        font-size: 15px !important;
    }

    .sticky-area-companies {
        margin-top: 17px;
    }

    .sticky-area-link {
        margin-top: 18px !important;
    }
}

@media (max-width: 650px) {

    .sticky-area-companies a {
        flex: 1 1 calc(50% - 9px);
        min-width: 0;
    }
}

.page-progress-top {
    position: fixed;
    z-index: 50;
    right: 28px;
    bottom: 28px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(12,12,12,.88);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    cursor: pointer;
    transition: opacity .25s ease, transform .25s ease, visibility .25s, background .2s ease;
    backdrop-filter: blur(8px);
}

.page-progress-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-progress-top:hover {
    background: #008fca;
}

.page-progress-top svg {
    position: absolute;
    inset: 0;
    width: 48px;
    height: 48px;
    transform: rotate(-90deg);
}

.page-progress-top circle {
    fill: none;
    stroke-width: 2;
}

.page-progress-track { stroke: rgba(255,255,255,.22); }
.page-progress-value {
    stroke: #14a8e0;
    stroke-linecap: round;
    stroke-dasharray: 132;
    stroke-dashoffset: 132;
}

.page-progress-top span {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 650px) {
    .page-progress-top {
        right: 18px;
        bottom: 18px;
        width: 46px;
        height: 46px;
    }
}

/* CONTACTOS NA HOMEPAGE */
.home-contact {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: clamp(60px, 9vw, 160px);
    padding: clamp(100px, 11vw, 180px) 6vw;
    background: #063b55;
    color: #fff;
}

.home-contact-intro { max-width: 780px; }
.home-contact h2 {
    max-width: 760px;
    margin: 22px 0 24px;
    font-size: clamp(50px, 6.4vw, 112px);
    line-height: .94;
    letter-spacing: -.055em;
}
.home-contact-intro > p:last-child {
    max-width: 560px;
    color: rgba(255,255,255,.62);
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.6;
}
.home-contact-details {
    align-self: end;
    border-top: 1px solid rgba(255,255,255,.24);
}
.home-contact-details > div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.home-contact-details span {
    color: rgba(255,255,255,.48);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.home-contact-details address,
.home-contact-details a:not(.button) {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    line-height: 1.45;
    text-decoration: none;
}
.home-contact-details small {
    grid-column: 2;
    margin-top: -16px;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}
.home-contact-details .button { margin-top: 34px; }

@media (max-width: 900px) {
    .home-contact { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 550px) {
    .home-contact { padding-inline: 24px; }
    .home-contact-details > div { grid-template-columns: 1fr; gap: 10px; }
    .home-contact-details small { grid-column: 1; margin-top: -4px; }
}
