:root {
    --color-gold: #b89b2f;
    --color-gold-dark: #8f7621;
    --color-gold-text: #756018;
    --color-gray-dark: #4f4f4f;
    --color-text: #2f2f2f;
    --color-muted: #686868;
    --color-background: #f7f6f2;
    --color-white: #ffffff;
    --color-border: #dedbd2;
    --color-soft-gold: #f1ead1;
    --shadow-sm: 0 10px 30px rgba(55, 49, 28, 0.08);
    --shadow-lg: 0 28px 60px rgba(55, 49, 28, 0.14);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3 {
    margin-top: 0;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--color-white);
    background: var(--color-gray-dark);
    border-radius: 6px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--color-gold-dark);
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(247, 246, 242, 0.96);
    border-bottom: 1px solid rgba(143, 118, 33, 0.16);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 32px;
}

.brand {
    flex: 0 0 auto;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
    color: var(--color-gray-dark);
    font-size: 0.93rem;
    font-weight: 700;
}

.main-nav a:not(.nav-login) {
    position: relative;
    padding-block: 10px;
}

.main-nav a:not(.nav-login)::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}

.main-nav a:not(.nav-login):hover::after,
.main-nav a:not(.nav-login):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-login {
    padding: 9px 20px;
    color: var(--color-white);
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-dark);
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-login:hover,
.nav-login:focus-visible {
    color: var(--color-text);
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 126px) 0 clamp(86px, 10vw, 140px);
}

.hero::before {
    position: absolute;
    top: -260px;
    right: -180px;
    width: 620px;
    height: 620px;
    content: "";
    border: 1px solid rgba(184, 155, 47, 0.18);
    border-radius: 50%;
}

.hero::after {
    position: absolute;
    right: 7%;
    bottom: -160px;
    width: 360px;
    height: 360px;
    content: "";
    background: rgba(184, 155, 47, 0.08);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    align-items: center;
    gap: clamp(54px, 8vw, 100px);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--color-gold-text);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.security-copy h2,
.final-cta h2 {
    color: var(--color-gray-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 24px;
    font-size: clamp(2.6rem, 5.1vw, 4.85rem);
}

.hero h1 span {
    color: var(--color-gold-dark);
}

.hero-text {
    max-width: 620px;
    margin-bottom: 32px;
    color: var(--color-muted);
    font-size: clamp(1.03rem, 1.5vw, 1.17rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
}

.button-primary {
    color: #252525;
    background: var(--color-gold);
    box-shadow: 0 8px 20px rgba(143, 118, 33, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #c7a936;
    box-shadow: 0 12px 24px rgba(143, 118, 33, 0.28);
}

.button-secondary {
    color: var(--color-gray-dark);
    background: transparent;
    border-color: var(--color-gray-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--color-white);
    background: var(--color-gray-dark);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 0;
    padding: 0;
    color: var(--color-gray-dark);
    font-size: 0.85rem;
    font-weight: 700;
    list-style: none;
}

.trust-list li::before {
    margin-right: 8px;
    color: var(--color-gold-dark);
    content: "✓";
}

.hero-visual {
    position: relative;
    padding: 20px 0 40px;
}

.visual-window {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid rgba(143, 118, 33, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: rotate(1.25deg);
}

.visual-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 57px;
    padding: 10px 16px;
    color: var(--color-gray-dark);
    border-bottom: 1px solid #ece9df;
    font-size: 0.75rem;
    font-weight: 800;
}

.visual-brand-mark {
    display: grid;
    width: 30px;
    height: 30px;
    color: #292929;
    background: var(--color-gold);
    border-radius: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.7rem;
    place-items: center;
}

.visual-user {
    width: 28px;
    height: 28px;
    background: var(--color-soft-gold);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
}

.visual-body {
    display: grid;
    grid-template-columns: 66px 1fr;
    min-height: 370px;
}

.visual-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    padding-top: 38px;
    background: var(--color-gray-dark);
}

.visual-sidebar span {
    width: 21px;
    height: 4px;
    background: #aaa;
    border-radius: 5px;
}

.visual-sidebar span.active {
    width: 25px;
    height: 25px;
    background: var(--color-gold);
    border-radius: 7px;
}

.visual-content {
    padding: 34px 30px;
    background: #faf9f6;
}

.visual-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}

.line {
    display: block;
    height: 7px;
    margin-bottom: 8px;
    background: #d7d3ca;
    border-radius: 8px;
}

.line-title {
    width: 108px;
    height: 11px;
    background: var(--color-gray-dark);
}

.line-short {
    width: 72px;
}

.line-subtitle {
    width: 92px;
    margin-bottom: 18px;
    background: #8a877e;
}

.visual-add {
    display: grid;
    width: 34px;
    height: 34px;
    color: #252525;
    background: var(--color-gold);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 400;
    place-items: center;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.visual-stats div {
    padding: 15px 12px;
    background: var(--color-white);
    border: 1px solid #ebe8df;
    border-radius: 9px;
}

.visual-stats strong,
.visual-stats span {
    display: block;
}

.visual-stats strong {
    color: var(--color-gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.visual-stats span {
    color: #666;
    font-size: 0.57rem;
}

.visual-panel {
    padding: 18px;
    background: var(--color-white);
    border: 1px solid #ebe8df;
    border-radius: 10px;
}

.visual-row {
    display: grid;
    grid-template-columns: 22px 1fr 32px;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #efede7;
}

.visual-row i {
    width: 20px;
    height: 20px;
    background: var(--color-soft-gold);
    border-radius: 5px;
}

.visual-row span,
.visual-row b {
    height: 5px;
    background: #d7d3ca;
    border-radius: 5px;
}

.visual-row b {
    background: #e6dcc0;
}

.floating-note {
    position: absolute;
    right: -24px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    background: var(--color-white);
    border: 1px solid rgba(143, 118, 33, 0.2);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.note-icon {
    display: grid;
    width: 32px;
    height: 32px;
    color: var(--color-white);
    background: var(--color-gray-dark);
    border-radius: 50%;
    font-weight: 800;
    place-items: center;
}

.floating-note span:last-child,
.floating-note strong {
    display: block;
}

.floating-note span:last-child {
    color: #666;
    font-size: 0.7rem;
    line-height: 1.4;
}

.floating-note strong {
    color: var(--color-gray-dark);
    font-size: 0.78rem;
}

.section {
    padding: clamp(78px, 9vw, 118px) 0;
}

.benefits {
    background: var(--color-white);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2,
.security-copy h2,
.final-cta h2 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.section-heading > p:last-child,
.security-copy > p {
    color: var(--color-muted);
    font-size: 1.04rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    position: relative;
    min-height: 240px;
    padding: 30px;
    overflow: hidden;
    background: var(--color-background);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card::after {
    position: absolute;
    right: -32px;
    bottom: -42px;
    width: 105px;
    height: 105px;
    content: "";
    border: 1px solid rgba(184, 155, 47, 0.25);
    border-radius: 50%;
}

.benefit-card:hover {
    border-color: rgba(143, 118, 33, 0.38);
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
}

.card-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 34px;
    color: #292929;
    background: var(--color-soft-gold);
    border: 1px solid rgba(143, 118, 33, 0.28);
    border-radius: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;
    font-weight: 700;
    place-items: center;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--color-gray-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.benefit-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 0.94rem;
}

.security {
    overflow: hidden;
}

.security-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(60px, 10vw, 130px);
}

.security-visual {
    position: relative;
    display: grid;
    min-height: 440px;
    background: var(--color-gray-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
    place-items: center;
}

.shield {
    position: relative;
    z-index: 2;
    display: grid;
    width: 150px;
    height: 172px;
    color: #292929;
    background: var(--color-gold);
    border-radius: 70px 70px 85px 85px;
    clip-path: polygon(50% 0, 92% 18%, 86% 72%, 50% 100%, 14% 72%, 8% 18%);
    place-items: center;
}

.shield::before {
    position: absolute;
    z-index: -1;
    width: 118px;
    height: 138px;
    content: "";
    background: #d6bd61;
    clip-path: inherit;
}

.shield span {
    font-size: 3rem;
    font-weight: 400;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.orbit-one {
    width: 260px;
    height: 260px;
}

.orbit-two {
    width: 360px;
    height: 360px;
}

.security-label {
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 9px 14px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.check-list {
    display: grid;
    gap: 22px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
}

.check-list li > span {
    display: grid;
    width: 34px;
    height: 34px;
    color: #292929;
    background: var(--color-soft-gold);
    border-radius: 50%;
    font-weight: 800;
    place-items: center;
}

.check-list strong {
    color: var(--color-gray-dark);
    font-size: 1rem;
}

.check-list p {
    margin: 3px 0 0;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.final-cta {
    padding: clamp(66px, 8vw, 92px) 0;
    color: var(--color-white);
    background: var(--color-gray-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.final-cta .eyebrow {
    color: #ddc66e;
}

.final-cta h2 {
    max-width: 800px;
    margin-bottom: 0;
    color: var(--color-white);
}

.button-light {
    min-width: 210px;
    color: #252525;
    background: var(--color-gold);
}

.button-light:hover,
.button-light:focus-visible {
    background: var(--color-white);
}

.site-footer {
    color: #dedede;
    background: #3e3e3e;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-top: 62px;
    padding-bottom: 52px;
}

.footer-brand > strong,
.footer-brand > span {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
}

.footer-brand > strong {
    color: #d6bd61;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.footer-brand > span {
    margin-top: -3px;
    color: var(--color-white);
    font-size: 0.72rem;
    letter-spacing: 0.42em;
}

.footer-brand p {
    max-width: 360px;
    margin: 22px 0 0;
    color: #c9c9c9;
    font-size: 0.9rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.footer-nav div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
}

.footer-nav strong {
    margin-bottom: 6px;
    color: var(--color-white);
    font-size: 0.83rem;
}

.footer-nav a {
    color: #d1d1d1;
    font-size: 0.84rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: #e2cb72;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 18px;
    padding-bottom: 18px;
    color: #bcbcbc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
}

.whatsapp-button {
    position: fixed;
    z-index: 90;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 58px;
    height: 58px;
    color: #252525;
    background: var(--color-gold);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(47, 47, 47, 0.25);
    place-items: center;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
    background: #d0b442;
    box-shadow: 0 13px 32px rgba(47, 47, 47, 0.32);
    transform: translateY(-4px);
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        width: min(100%, 650px);
        margin: 0 auto;
    }

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

    .security-grid {
        grid-template-columns: minmax(280px, 0.8fr) 1fr;
        gap: 48px;
    }

    .security-visual {
        min-height: 390px;
    }

    .orbit-two {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 740px) {
    html {
        scroll-padding-top: 145px;
    }

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

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 8px;
    }

    .brand img {
        width: 108px;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        font-size: 0.76rem;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-login {
        padding: 7px 13px;
    }

    .hero {
        padding-top: 58px;
    }

    .hero h1 br {
        display: none;
    }

    .benefit-grid,
    .security-grid,
    .cta-inner,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .security-grid {
        gap: 54px;
    }

    .security-visual {
        order: 2;
        min-height: 360px;
    }

    .security-copy {
        order: 1;
    }

    .cta-inner {
        gap: 28px;
    }

    .cta-inner .button {
        justify-self: start;
    }

    .footer-main {
        gap: 38px;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.2rem);
    }

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

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

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

    .hero-visual {
        padding-bottom: 64px;
    }

    .visual-window {
        transform: none;
    }

    .visual-body {
        grid-template-columns: 45px 1fr;
        min-height: 300px;
    }

    .visual-content {
        padding: 22px 14px;
    }

    .visual-sidebar {
        gap: 20px;
    }

    .visual-stats div {
        padding: 10px 7px;
    }

    .visual-stats span {
        display: none;
    }

    .floating-note {
        right: 7px;
        bottom: 20px;
    }

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

    .benefit-card {
        min-height: 0;
    }

    .security-visual {
        min-height: 320px;
    }

    .shield {
        width: 125px;
        height: 145px;
    }

    .shield::before {
        width: 98px;
        height: 115px;
    }

    .orbit-one {
        width: 215px;
        height: 215px;
    }

    .orbit-two {
        width: 280px;
        height: 280px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding-right: 72px;
    }

    .whatsapp-button {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
