:root {
    --bg: #111216;
    --card-radius: 8px;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    --font: "Inter", "Segoe UI", Arial, sans-serif
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #0f1115 0%, #0f1115 55%, #111821 100%);
    color: #f5f7fa;
    font-family: var(--font);
    display: flex;
    justify-content: center;
    padding: 40px 18px 70px;
     -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "cv11", "salt", "ss01", "ss03", "cv01", "cv02", "cv03", "cv04", "cv05", "cv06", "cv09", "cv10";
    
}

.quick-btn {
    width: 100%;
    height: 72px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.25s ease
}

.quick-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12)
}

.quick-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.14), transparent 60%);
    opacity: 0.7;
    pointer-events: none
}

.quick-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    pointer-events: none
}

.quick-btn .label {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.quick-btn .label span:first-child {
    font-size: 13px;
    opacity: 0.75;
    font-weight: 500
}

.quick-btn .label span:last-child {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px
}

.quick-btn .action {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s ease
}

.quick-btn:hover .action {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.28)
}

.card .tag {
    display: block;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.85;
    margin-bottom: 6px
}

.card .desc {
    margin-top: 6px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.72;
    line-height: 1.3
}

.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25)
}

.lang-switcher button {
    width: 44px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease
}

.lang-switcher button img {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 50%
}

.lang-switcher button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35)
}

.lang-switcher button.active {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08)
}

.page {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px
}

@keyframes card-enter {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
        filter: blur(6px)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0)
    }
}

.page .card {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    animation: card-enter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: calc(var(--card-index, 0) * 80ms);
    will-change: transform, opacity, filter
}

.page a.card:nth-of-type(1) {
    --card-index: 1
}

.page a.card:nth-of-type(2) {
    --card-index: 2
}

.page a.card:nth-of-type(3) {
    --card-index: 3
}

.page a.card:nth-of-type(4) {
    --card-index: 4
}

.page a.card:nth-of-type(5) {
    --card-index: 5
}

.page a.card:nth-of-type(6) {
    --card-index: 6
}

.page a.card:nth-of-type(7) {
    --card-index: 7
}

.page a.card:nth-of-type(8) {
    --card-index: 8
}

.page a.card:nth-of-type(9) {
    --card-index: 9
}

.page a.card:nth-of-type(10) {
    --card-index: 10
}

.page a.card:nth-of-type(11) {
    --card-index: 11
}

.page a.card:nth-of-type(12) {
    --card-index: 12
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.page > img,
.header {
    opacity: 0;
    transform: translateY(12px);
    animation: card-enter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards
}

.page > img {
    animation-delay: 40ms
}

.header {
    animation-delay: 120ms
}

.header h1 {
    margin: 0
}

.header .subtitle {
    margin: 0
}

.flag {
    width: 38px;
    height: 26px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, #009b3a 0%, #009b3a 33%, #ffdf00 33%, #ffdf00 66%, #002776 66%, #002776 100%)
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f9c70a;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow)
}

.logo-circle img {
    width: 68px;
    height: auto
}

h1 {
    margin: 6px 0 2px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.3px
}

.lang-switch {
    display: flex;
    gap: 10px;
    margin: 10px 0 4px
}

.lang-btn {
    width: 44px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid transparent;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: transparent;
    box-shadow: var(--shadow)
}

.lang-btn.active {
    border-color: #ffffff
}

.flag-br {
    background: url("../assets/img/br-flag.svg") center/cover no-repeat
}

.flag-us {
    background: url("../assets/img/us-flag.svg") center/cover no-repeat
}

p.subtitle {
    margin: 0 0 8px;
    color: #cfd8e3
}

.card {
    width: 100%;
    border-radius: var(--card-radius);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #0d0f12;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.2px;
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    border-radius: 10px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgb(255 255 255 / 16%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    filter: brightness(1.02)
}

@media (prefers-reduced-motion: reduce) {
    .page .card {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none
    }
}

.card .cta {
    position: relative;
    z-index: 3;
    padding: 10px 18px;
    border-radius: 10px;
    color: #eeeeee;
    font-size: 14px;
    letter-spacing: 0.2px;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(8px)
}

.card>div {
    width: 70%;
    min-width: 0
}

.card.hero>div {
    width: 100%
}

.whatsapp-card>div {
    width: 60% !important;
    min-width: 0
}

:root[lang="pt-BR"] .whatsapp-card>div {
    width: 50% !important;
    min-width: 0
}

.community-card>div {
    width: 100%;
    width: 53% !important;
    min-width: 0;
    align-self: flex-start
}

.community-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.community-card>div {
    width: 100%;
    width: 66% !important;
    min-width: 0;
    align-self: flex-start
}

.community-card .cta {
    margin-top: 8px;
    align-self: flex-start
}

.card.linkedin,
.card.youtube,
.card.pinterest,
.card.whatsapp,
.card.instagram-ead,
.card.imessage {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.card.linkedin>div,
.card.youtube>div,
.card.pinterest>div,
.card.whatsapp>div,
.card.instagram-ead>div,
.card.imessage>div {
    min-width: 0;
    align-self: flex-start
}

.card.whatsapp>div,
.card.instagram-ead>div {
    width: 65% !important
}

.card.imessage>div {
    width: 100% !important
}

.card.linkedin .cta,
.card.youtube .cta,
.card.pinterest .cta,
.card.whatsapp .cta,
.card.instagram-ead .cta,
.card.imessage .cta {
    margin-top: 8px;
    align-self: flex-start
}

.card .cta-light {
    background: #fcfcfcdb;
    color: #020202
}

.card .cta-light i {
    margin-left: 8px
}

.card .label {
    font-size: 16px;
    color: inherit
}

.card .title {
    display: block;
    font-size: 20px;
    line-height: 1.2
}

.card {
    min-height: 120px;
    display: flex;
    align-items: center
}

.card>div {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.card.hero {
    min-height: 220px;
    align-items: flex-start
}

.whatsapp-text {
    color: #ffffff !important
}

.wood-gold {
    color: #C16808
}

.card.white.instagram-metowood [data-i18n="ig2_title"] {
    color: #262626
}

.card.whatsapp {
    position: relative;
    overflow: hidden;
    background: linear-gradient(172deg, rgba(25, 195, 87, 0.12), rgba(12, 163, 68, 0.12));
    color: #ffffff
}

.card.whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/whatsapp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position-x: -420px;
    z-index: 0;
    pointer-events: none
}

html[lang^="pt"] .card.whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/whatsapp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position-x: -470px;
    z-index: 0;
    pointer-events: none
}

.card.whatsapp>div {
    position: relative;
    z-index: 2
}

.card.imessage {
    display: flex !important;
    background: linear-gradient(172deg, rgb(25 195 87 / 0%), rgb(12 163 68 / 0%)), url(../img/imessege.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    border: 1px solid rgb(254 194 0 / 38%);
    background-position-x: -320px
}

.card.imessage>div {
    width: 70% !important;
    min-width: 0
}

.card.hora {
    background: linear-gradient(172deg, rgb(25 195 87 / 0%), rgb(12 163 68 / 0%)), url(../img/hora.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff
}

.card.instagram-ead {
    position: relative;
    overflow: hidden;
    background: linear-gradient(172deg, rgba(236, 179, 124, 0.28), rgba(236, 179, 124, 0.28));
    color: #ffffff
}

.card.instagram-ead::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/nayra-instagram.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position-x: -360px;
    z-index: 0;
    pointer-events: none
}

.card.instagram-ead::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.12) 90%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none
}

.card.instagram-ead>div {
    position: relative;
    z-index: 2
}

.card:not(.white)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.12) 90%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none
}

.card.white.linkedin::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.12) 90%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none
}

.card.white.linkedin>div {
    position: relative;
    z-index: 2
}

.card.white.linkedin .cta {
    position: relative;
    z-index: 3
}

.card>div {
    position: relative;
    z-index: 2
}

.card.linkedin {
    background: linear-gradient(172deg, rgb(0 0 0 / 15%), rgb(0 0 0 / 15%)), url(../img/linkedin-fundo.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    border: 1px solid #1f5c7f;
    background-position-x: -400px
}

html[lang^="pt"] .card.linkedin {
    background-position-x: -460px
}

@media (min-width:561px) {
    .card.linkedin {
        background-position-x: 0px
    }

    html[lang^="pt"] .card.linkedin {
        background-position-x: 0px
    }

    .card.pinterest-ead,
    .card.youtube {
        background-position-x: 0px !important
    }

    html[lang^="pt"] .card.pinterest-ead,
    html[lang^="pt"] .card.youtube {
        background-position-x: 0px !important
    }

    .card.whatsapp,
    .card.instagram-ead {
        background-position-x: 0px !important
    }

    html[lang^="pt"] .card.whatsapp,
    html[lang^="pt"] .card.instagram-ead {
        background-position-x: 0px !important
    }

    .card.whatsapp::before {
        background-position-x: -100px !important
    }

    html[lang^="pt"] .card.whatsapp::before {
        background-position-x: -200px !important
    }

    .card.instagram-ead::before {
        background-position-x: -100px !important
    }

    html[lang^="pt"] .card.instagram-ead::before {
        background-position-x: -100px !important
    }

    .card.imessage {
        background-position-x: -120px !important
    }

    html[lang^="pt"] .card.imessage {
        background-position-x: -120px !important
    }
}

.card.instagram-metowood {
    background: linear-gradient(172deg, rgb(0 0 0 / 12%), rgb(0 0 0 / 12%)), url(../img/instagram-metowood-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff
}

.card.pinterest-ead {
    background: linear-gradient(172deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14)), url(../img/pinterest-ead.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    background-position-x: -400px
}

html[lang^="pt"] .card.pinterest-ead {
    background-position-x: -470px
}

.green {
    background: linear-gradient(135deg, #19c357, #0ca344);
    color: #0b1a12
}

.yellow {
    background: linear-gradient(135deg, #ffbb00, #e18e00);
    color: #1a1200
}

.white {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    color: #201b14;
    border: 1px solid #ececec
}

.youtube {
    background: linear-gradient(172deg, rgb(25 195 87 / 0%), rgb(12 163 68 / 0%)), url(../img/youtube-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    background-position-x: -400px
}

.card.imessage {
    display: flex !important;
    background: linear-gradient(172deg, rgb(25 195 87 / 0%), rgb(12 163 68 / 0%)), url(../img/imessege.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    border: 1px solid rgb(254 194 0 / 38%);
    background-position-x: -320px
}

html[lang^="pt"] .card.imessage {
    background-position-x: -400px
}

.pinterest {
    background: linear-gradient(135deg, #e60023, #ad001b);
    color: #ffffff
}

.dark {
    background: linear-gradient(172deg, rgb(25 195 87 / 0%), rgb(12 163 68 / 0%)), url(../img/hora.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f7f8fa;
    border: 1px solid #1f232c;
    background-position-x: -60px
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 26px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(172deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06)), url(../img/site.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0
}

.hero>div {
    position: relative;
    z-index: 4
}

.hero .cta {
    position: relative;
    z-index: 5;
    background: #ffffff !important;
    color: #000000
}

.hero-cta {
    display: inline-block;
    margin-top: 50px !important;
    align-self: flex-start
}

.hero img {
    width: 100%;
    border-radius: 12px;
    margin-top: 12px
}

.hero-logo {
    width: 250px !important;
    height: auto;
    margin-top: 0;
    margin-bottom: 8px;
    display: block;
    position: relative;
    z-index: 5
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.14);
    color: inherit;
    font-size: 20px
}

.action-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10000;
    padding: 20px
}

.action-modal.show {
    display: flex
}

.action-modal .sheet {
    width: 100%;
    max-width: 420px;
    background: #0f1115;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
    color: #fff
}

.action-modal .sheet h3 {
    margin: 0 0 10px;
    font-size: 18px
}

.action-modal .actions {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.action-modal .actions button {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 700
}

.action-modal .actions .call {
    background: #0a66c2;
    color: #fff
}

.action-modal .actions .sms {
    background: #222;
    color: #fff;
    border: 1px solid #444
}

.action-modal .actions .cancel {
    background: transparent;
    color: #cfd8e3;
    border: 1px solid #444
}

footer {
    margin-top: 10px;
    color: #6f7c8e;
    font-size: 13px;
    text-align: center
}

@media (max-width:560px) {
    h1 {
        font-size: 24px
    }

    .card {
        padding: 18px 16px
    }

    .card .title {
        font-size: 18px
    }

    .card>div {
        width: 65%
    }
}

@media (max-width:560px) {
    :root[lang="pt-BR"] .card.youtube>div {
        width: 60% !important
    }
}

@media (max-width:560px) {
    .dark {
        background-position-x: -380px
    }
}

@media (min-width:1024px) {
    .dark {
        background: linear-gradient(172deg, rgba(25, 195, 87, 0), rgba(12, 163, 68, 0)), url("../img/hora.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #f7f8fa;
        border: 1px solid #1f232c;
        background-position-x: -80px
    }
}

@media (max-width:560px) {
    .card.imessage {
        display: flex
    }

    .card.imessage>div {
        width: 60% !important;
        min-width: 0
    }
}