:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #edf4fb;
    --ink: #0a3b78;
    --muted: #49627d;
    --line: rgba(10, 59, 120, 0.14);
    --primary: #0a3b78;
    --primary-dark: #072c59;
    --accent: #3d9a34;
    --accent-soft: #dff0db;
    --highlight: #f07c12;
    --navy: #082b57;
    --shadow: 0 24px 70px rgba(8, 43, 87, 0.14);
}

* {
    box-sizing: border-box !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
    overflow-x: hidden;
}

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

p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--ink);
    line-height: 1.15;
    font-weight: 800;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.site_header {
    position: relative;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #d9e6f5 58%, #7fa4cf 70%, #0a3b78 84%, #0d4c96 100%);
    color: #ffffff;
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar_inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar_inner p,
.topbar_meta span {
    color: #000000;
    font-size: 14px;
}

.topbar_meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar_meta i {
    margin-right: 8px;
    color: var(--highlight);
}

.navbar {
    padding: 26px 0;
}

.brand_mark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.brand_mark img {
    width: 275px;
    max-width: 100%;
    height: auto;
    display: block;
}

.brand_mark span {
    color: var(--highlight);
}

.main_nav {
    gap: 8px;
    align-items: center;
}

.navbar-light .navbar-nav .nav-link {
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #000000;
    background: rgba(10, 59, 120, 0.16);
}

.navbar-light .navbar-toggler {
    border-color: rgba(10, 59, 120, 0.18);
    background: #ffffff;
    border-radius: 14px;
    padding: 6px 8px;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 59, 120, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 100% 100%;
    width: 1.05em;
    height: 1.05em;
}

.header_cta,
.btn_primary,
.btn_secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
}

.header_cta,
.btn_primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #0d4c96 100%);
    box-shadow: 0 14px 30px rgba(10, 59, 120, 0.28);
}

.btn_secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.header_cta:hover,
.btn_primary:hover,
.btn_secondary:hover {
    transform: translateY(-2px);
}

.hero_section {
    position: relative;
    padding: 70px 0 120px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.7) 18%, rgba(255, 255, 255, 0.35) 42%, rgba(255, 255, 255, 0.35) 54%, rgba(255, 255, 255, 0.72) 82%, rgba(255, 255, 255, 0.96) 131%),
        linear-gradient(193deg, rgba(255, 255, 255, 5.88) 0%, rgba(255, 255, 255, 0.2) 24%, rgba(255, 255, 255, 0.2) 76%, rgba(255, 255, 255, 0.9) 100%),
        url('../images/banner-bg_novo.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero_copy {
    padding-right: 24px;
}

.eyebrow,
.section_label,
.panel_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow,
.panel_badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(240, 124, 18, 0.35);
}

.hero_copy h1 {
    margin-top: 20px;
    font-size: 64px;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.hero_copy p {
    margin-top: 24px;
    font-size: 18px;
    color: var(--muted);
    max-width: 650px;
}

.hero_actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero_highlights {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero_highlights li {
    padding: 18px 18px 18px 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.hero_highlights li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--highlight);
    box-shadow: 0 0 0 6px rgba(240, 124, 18, 0.18);
}

.hero_panel {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.hero_panel h2 {
    margin-top: 18px;
    font-size: 30px;
    letter-spacing: -0.03em;
}

.metric_grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.metric_card {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f5f9fe 0%, #edf4fb 100%);
    border: 1px solid rgba(10, 59, 120, 0.08);
}

.metric_card strong {
    display: block;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 10px;
}

.metric_card span {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.company_section,
.services_section,
.process_section,
.contact_section {
    padding: 110px 0;
}

.company_section,
.process_section {
    background: #ffffff;
}

.services_section {
    background: linear-gradient(180deg, #f6faf8 0%, #edf4f1 100%);
}

.section_heading {
    margin-bottom: 40px;
}

.center_heading {
    text-align: center;
}

.section_label {
    color: var(--primary);
    background: rgba(10, 59, 120, 0.08);
}

.light_label {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.section_heading h2 {
    margin-top: 16px;
    font-size: 46px;
    letter-spacing: -0.04em;
    max-width: 800px;
}

.center_heading h2 {
    margin-left: auto;
    margin-right: auto;
}

.section_text {
    margin-top: 18px;
    max-width: 560px;
}

.content_card {
    height: 100%;
    padding: 36px;
    border-radius: 28px;
}

.soft_card {
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
    border: 1px solid rgba(10, 59, 120, 0.08);
}

.soft_card p + p {
    margin-top: 18px;
}

.dark_card {
    background: linear-gradient(135deg, var(--navy) 0%, #0d4c96 100%);
    box-shadow: var(--shadow);
}

.dark_card h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 24px;
}

.check_list {
    display: grid;
    gap: 18px;
}

.check_list li {
    position: relative;
    padding-left: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.7;
}

.check_list li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--highlight);
}

.service_card {
    height: 100%;
    padding: 34px 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(10, 59, 120, 0.08);
    box-shadow: 0 20px 40px rgba(8, 43, 87, 0.08);
}

.service_card:hover {
    transform: translateY(-6px);
}

.service_icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 59, 120, 0.12) 0%, rgba(61, 154, 52, 0.2) 100%);
    color: var(--primary);
    font-size: 24px;
}

.service_card h3 {
    margin-top: 24px;
    font-size: 24px;
}

.service_card p {
    margin-top: 16px;
}

.timeline_grid {
    display: grid;
    gap: 18px;
}

.timeline_item {
    display: flex;
    gap: 20px;
    padding: 26px;
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
    border: 1px solid rgba(10, 59, 120, 0.08);
    border-radius: 24px;
}

.timeline_item span {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #69b442 100%);
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.timeline_item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.cta_section {
    padding-bottom: 110px;
    background: #ffffff;
}

.cta_box {
    padding: 42px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #082b57 0%, #0a3b78 62%, #3d9a34 100%);
    box-shadow: var(--shadow);
}

.cta_box h2 {
    margin-top: 14px;
    color: #ffffff;
    font-size: 38px;
    max-width: 760px;
}

.light_button {
    background: #ffffff;
    color: var(--primary);
    box-shadow: none;
}

.contact_info {
    display: grid;
    gap: 18px;
}

.info_card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
    border: 1px solid rgba(10, 59, 120, 0.08);
}

.info_card i {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--highlight);
    font-size: 20px;
}

.info_card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.info_card > div {
    flex: 1 1 auto;
    min-width: 0;
}

.info_card p {
    margin: 0;
}

.contact_form {
    padding: 34px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(10, 59, 120, 0.08);
    box-shadow: var(--shadow);
}

.form_status {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 700;
}

.form_status.is-success {
    background: #e6f7eb;
    color: #116637;
    border: 1px solid rgba(17, 102, 55, 0.14);
}

.form_status.is-error {
    background: #fff1f0;
    color: #9f2d20;
    border: 1px solid rgba(159, 45, 32, 0.14);
}

.form_field {
    width: 100%;
    min-height: 56px;
    margin-bottom: 18px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(10, 59, 120, 0.12);
    background: #f9fbfe;
    color: var(--ink);
    font-size: 15px;
}

.textarea_field {
    min-height: 160px;
    padding-top: 16px;
    resize: vertical;
}

.form_field:focus {
    outline: none;
    border-color: rgba(10, 59, 120, 0.4);
    box-shadow: 0 0 0 4px rgba(10, 59, 120, 0.08);
}

.recaptcha_wrap {
    margin-bottom: 18px;
    overflow-x: auto;
}

.submit_button {
    border: 0;
    cursor: pointer;
}

.form_hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.whatsapp_float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #1faa52 100%);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
}

.whatsapp_float i {
    font-size: 32px;
}

.whatsapp_float:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.site_footer {
    padding: 36px 0;
    background: #08203f;
}

.footer_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_brand {
    color: #ffffff;
}

.footer_inner p,
.footer_bottom span {
    color: rgba(255, 255, 255, 0.68);
}

.footer_bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .hero_copy h1 {
        font-size: 54px;
    }

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

    .section_heading h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .topbar_inner,
    .footer_inner,
    .footer_bottom,
    .cta_box {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-collapse {
        margin-top: 18px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.08);
    }

    .header_cta {
        margin-top: 14px;
    }

    .hero_section,
    .company_section,
    .services_section,
    .process_section,
    .contact_section {
        padding: 80px 0;
    }

    .hero_copy {
        padding-right: 0;
        margin-bottom: 36px;
    }

    .hero_copy h1 {
        font-size: 46px;
    }

    .section_heading h2,
    .cta_box h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .topbar {
        display: none;
    }

    .brand_mark {
        font-size: 28px;
    }

    .brand_mark img {
        width: 260px;
    }

    .hero_copy h1 {
        font-size: 38px;
    }

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

    .btn_primary,
    .btn_secondary,
    .header_cta {
        width: 100%;
    }

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

    .content_card,
    .service_card,
    .timeline_item,
    .contact_form,
    .cta_box,
    .hero_panel {
        padding: 24px;
    }

    .section_heading h2,
    .cta_box h2 {
        font-size: 28px;
    }

    .recaptcha_wrap {
        transform-origin: left top;
    }

    .whatsapp_float {
        right: calc(16px + env(safe-area-inset-right, 0px));
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        width: 58px;
        height: 58px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
