:root {
    --dcd-navy: #24316f;
    --dcd-gold: #c9a647;
    --dcd-bg: #f5f5f3;
    --dcd-white: #ffffff;
    --dcd-text: #202533;
    --dcd-muted: #5d667d;
    --dcd-border: rgba(36, 49, 111, 0.12);
    --dcd-shadow: 0 20px 50px rgba(18, 25, 59, 0.10);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--dcd-bg);
    color: var(--dcd-text);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.15; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section--alt { background: #eef1f8; }
.section--dark { background: var(--dcd-navy); color: var(--dcd-white); }
.section--cta { padding-top: 0; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(201, 166, 71, 0.15);
    color: var(--dcd-navy);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-tag--light { color: var(--dcd-white); background: rgba(255,255,255,0.12); }
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(245, 245, 243, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--dcd-border);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 88px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}
.brand__mark img,
.custom-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.brand__text { display: flex; flex-direction: column; gap: .2rem; }
.brand__text strong { font-size: 1rem; color: var(--dcd-navy); }
.brand__text small { color: var(--dcd-muted); max-width: 460px; }
.main-nav { display: flex; align-items: center; gap: 1rem; }
.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}
.main-nav li { margin: 0; }
.main-nav a { color: var(--dcd-navy); font-weight: 600; }
.menu-toggle {
    display: none;
    border: 1px solid var(--dcd-border);
    background: var(--dcd-white);
    color: var(--dcd-navy);
    padding: .8rem 1rem;
    border-radius: 999px;
    font-weight: 700;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 1.35rem;
    background: linear-gradient(135deg, var(--dcd-gold), #dab964);
    color: #1d2140;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: var(--dcd-shadow);
    transition: transform .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { padding: .8rem 1rem; font-size: .95rem; }
.button--ghost {
    background: transparent;
    color: var(--dcd-navy);
    border: 1px solid var(--dcd-border);
    box-shadow: none;
}
.hero {
    padding: 6rem 0 5rem;
    background:
        radial-gradient(circle at top left, rgba(201,166,71,0.25), transparent 30%),
        radial-gradient(circle at top right, rgba(36,49,111,0.15), transparent 35%),
        var(--dcd-bg);
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--dcd-navy);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .85rem;
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); max-width: 12ch; color: var(--dcd-navy); }
.hero__lead { font-size: 1.12rem; max-width: 62ch; color: var(--dcd-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 1rem; }
.hero__meta { color: var(--dcd-muted); max-width: 52ch; }
.shield-card {
    background: var(--dcd-white);
    border: 1px solid rgba(201,166,71,0.24);
    border-radius: 30px;
    box-shadow: var(--dcd-shadow);
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}
.shield-card img { width: min(100%, 340px); }
.shield-card__text {
    text-align: center;
    display: grid;
    gap: .5rem;
    color: var(--dcd-navy);
}
.shield-card__text strong { font-size: 1.3rem; }
.about-grid,
.two-column-highlight,
.footer-grid,
.cta-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.service-card {
    background: var(--dcd-white);
    border: 1px solid var(--dcd-border);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--dcd-shadow);
}
.service-card h3 { color: var(--dcd-navy); font-size: 1.2rem; }
.service-card p { color: var(--dcd-muted); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.process-grid article {
    background: var(--dcd-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--dcd-border);
}
.process-grid span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--dcd-navy);
    color: var(--dcd-white);
    font-weight: 800;
    margin-bottom: 1rem;
}
.process-grid h3 { color: var(--dcd-navy); font-size: 1.05rem; }
.faq-list {
    display: grid;
    gap: 1rem;
}
.faq-list details {
    background: var(--dcd-white);
    border: 1px solid var(--dcd-border);
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
}
.faq-list summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--dcd-navy);
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin-top: .9rem; color: var(--dcd-muted); }
.cta-box {
    background: linear-gradient(135deg, var(--dcd-navy), #1a2458);
    color: var(--dcd-white);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--dcd-shadow);
}
.cta-box__actions { display: grid; gap: 1rem; align-content: center; justify-items: start; }
.site-footer {
    background: #161d45;
    color: rgba(255,255,255,0.92);
    padding: 4rem 0 1rem;
}
.site-footer h3 { color: #fff; margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-note { color: rgba(255,255,255,0.72); }
.footer-bottom {
    padding-top: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}
.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    background: #25D366;
    color: #fff;
    padding: .95rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: var(--dcd-shadow);
}
.content-default {
    background: var(--dcd-white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--dcd-shadow);
    border: 1px solid var(--dcd-border);
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
    .hero__grid,
    .about-grid,
    .two-column-highlight,
    .footer-grid,
    .cta-box,
    .cards-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 1rem;
        left: 1rem;
        background: var(--dcd-white);
        border: 1px solid var(--dcd-border);
        border-radius: 24px;
        box-shadow: var(--dcd-shadow);
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav.is-open { display: flex; }
    .main-nav ul { flex-direction: column; }
    .hero__grid,
    .about-grid,
    .two-column-highlight,
    .footer-grid,
    .cta-box,
    .cards-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    .hero { padding-top: 4rem; }
    .brand__text small { display: none; }
}

@media (max-width: 560px) {
    .section { padding: 4rem 0; }
    .site-header__inner { min-height: 76px; }
    .brand__mark img,
    .custom-logo { width: 56px; height: 56px; }
    .hero h1 { max-width: none; }
    .button, .button--small { width: 100%; }
    .hero__actions { align-items: stretch; }
}
