:root {
    --brand: #607d8b;
    --brand-dark: #607d8b;
    --brand-deep: #607d8b;
    --brand-soft: #eaf0f2;
    --accent: #ff9800;
    --accent-dark: #df7f00;
    --accent-soft: #fff3df;
    --whatsapp: #20bd5a;
    --text: #263840;
    --muted: #61747d;
    --surface: #ffffff;
    --surface-soft: #f5f8f9;
    --border: rgba(49, 72, 83, 0.13);
    --shadow-sm: 0 10px 30px rgba(29, 48, 57, 0.08);
    --shadow-md: 0 20px 60px rgba(29, 48, 57, 0.14);
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-pill: 999px;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--text);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 5% 10%, rgba(255, 152, 0, 0.06), transparent 26rem),
        radial-gradient(circle at 95% 55%, rgba(81, 108, 121, 0.07), transparent 30rem);
}

section,
header,
footer {
    position: relative;
}

section[id],
form[id] {
    scroll-margin-top: 96px;
}

img,
video {
    max-width: 100%;
}

a {
    text-underline-offset: 0.18em;
}

::selection {
    color: #fff;
    background: var(--brand);
}

.text-brand {
    color: var(--brand-dark) !important;
}

.bg-brand {
    background: #607d8b !important;
}

.bg-light2 {
    background: var(--surface-soft) !important;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.navbar {
    min-height: 82px;
    background: rgba(255, 255, 255, 0.91) !important;
    border-color: rgba(49, 72, 83, 0.08) !important;
    box-shadow: 0 8px 30px rgba(29, 48, 57, 0.06) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar .container {
    min-height: 70px;
}

.navbar-brand img {
    width: 186px;
    height: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.65rem 0.15rem !important;
    color: var(--text);
    font-size: 0.93rem;
    font-weight: 650;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0.35rem;
    left: 50%;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transition: left 0.2s ease, right 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
    color: var(--brand-dark);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after {
    right: 0;
    left: 0;
}

.navbar-toggler {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: none !important;
}

.btn {
    min-height: 46px;
    padding: 0.72rem 1.25rem;
    border-radius: 14px;
    font-weight: 750;
    letter-spacing: -0.01em;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-sm {
    min-height: 40px;
    padding: 0.55rem 1rem;
    border-radius: 12px;
}

.btn-lg {
    min-height: 54px;
    padding: 0.9rem 1.45rem;
    border-radius: 16px;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.18) !important;
}

.btn-accent {
    color: #fff !important;
    border: 1px solid transparent !important;
    background: linear-gradient(135deg, #ffad2e, var(--accent)) !important;
    box-shadow: 0 12px 28px rgba(255, 152, 0, 0.24);
}

.btn-accent:hover,
.btn-accent:focus-visible {
    color: #fff !important;
    background: linear-gradient(135deg, #ff9e0b, var(--accent-dark)) !important;
    box-shadow: 0 16px 34px rgba(255, 152, 0, 0.31);
}

.btn-whatsapp {
    color: #fff !important;
    border: 1px solid transparent !important;
    background: linear-gradient(135deg, #2bd66a, var(--whatsapp)) !important;
    box-shadow: 0 12px 28px rgba(32, 189, 90, 0.2);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    color: #fff !important;
    background: linear-gradient(135deg, #20ca5d, #13984a) !important;
    box-shadow: 0 16px 34px rgba(32, 189, 90, 0.28);
}

.btn-outline-secondary {
    color: var(--brand-dark);
    border-color: rgba(49, 72, 83, 0.22);
    background: rgba(255, 255, 255, 0.74);
}

.btn-outline-secondary:hover {
    color: #fff;
    border-color: var(--brand-dark);
    background: var(--brand-dark);
}

header.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: clamp(4rem, 8vw, 7rem) 0 !important;
    color: #fff;
    isolation: isolate;
    background:
        linear-gradient(112deg, rgba(25, 44, 53, 0.96) 0%, rgba(47, 72, 83, 0.91) 49%, rgba(81, 108, 121, 0.70) 100%),
        url('../img/imagem2.png') center 56% / cover no-repeat !important;
}

header.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, #000, transparent 75%);
}

header.hero::after {
    content: "";
    position: absolute;
    right: -12rem;
    bottom: -15rem;
    width: 34rem;
    height: 34rem;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.018);
}

.hero .badge {
    padding: 0.55rem 0.85rem;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero h1 {
    max-width: 780px;
    margin-top: 0.9rem !important;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero .lead {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.83);
    font-size: clamp(1.02rem, 1.6vw, 1.22rem);
    line-height: 1.7;
}

.hero .card {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: var(--radius-lg) !important;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 90px rgba(8, 25, 32, 0.32) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero .card-body {
    padding: clamp(1rem, 2vw, 1.45rem);
}

.hero .card h2 {
    color: var(--brand-deep) !important;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.35;
}

.form-label {
    margin-bottom: 0.42rem;
    color: var(--brand-deep);
    font-size: 0.82rem;
    font-weight: 750;
}

.form-control,
.form-select {
    min-height: 50px;
    padding: 0.72rem 0.9rem;
    color: var(--text);
    border: 1px solid rgba(49, 72, 83, 0.17);
    border-radius: 13px;
    background-color: #fbfcfc;
    font-size: 0.96rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

textarea.form-control {
    min-height: 94px;
    resize: vertical;
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(49, 72, 83, 0.34);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    background-color: #fff;
}

.form-control::placeholder {
    color: #9aa8ae;
}

.form-check-input {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.15rem;
    border-color: rgba(49, 72, 83, 0.35);
}

.form-check-input:checked {
    border-color: var(--accent);
    background-color: var(--accent);
}

.privacy-check {
    padding: 0.9rem 0.9rem 0.9rem 2.45rem;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface-soft);
}

.privacy-check a {
    color: var(--brand-dark);
    font-weight: 750;
}

.hp-field {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.alert {
    border: 0;
    border-radius: 13px;
    font-size: 0.9rem;
}

.rounded-3xl {
    border-radius: var(--radius-lg) !important;
}

.shadow-soft {
    box-shadow: var(--shadow-md) !important;
}

section.py-5 {
    padding-top: clamp(4.25rem, 8vw, 7rem) !important;
    padding-bottom: clamp(4.25rem, 8vw, 7rem) !important;
}

section h2.h1,
section .h1 {
    color: var(--brand-deep);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

section h2.h2,
section .h2 {
    color: var(--brand-deep);
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

section p.text-muted,
section .text-muted {
    color: var(--muted) !important;
    line-height: 1.75;
}

#beneficios .container > .text-center,
#parceiras .container > p,
#faq .container > h2 {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
}

#beneficios .row > div > div,
#coberturas .row.g-3 > div > div {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#beneficios .row > div > div::after,
#coberturas .row.g-3 > div > div::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 74px;
    height: 74px;
    border-radius: 0 0 0 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.13), transparent);
}

#beneficios .row > div > div:hover,
#coberturas .row.g-3 > div > div:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 152, 0, 0.32);
    box-shadow: var(--shadow-md) !important;
}

.icon-circle {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    border: 1px solid rgba(255, 152, 0, 0.18);
    border-radius: 17px;
    background: var(--accent-soft);
    font-size: 1.35rem;
}

.list-check li {
    margin-bottom: 0.55rem;
}

.list-check li::marker {
    color: var(--accent);
}

#coberturas img,
#solucoes img,
#quem-somos img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(49, 72, 83, 0.08);
}

#como-funciona .col-md-4 {
    position: relative;
    padding: 2rem 1.4rem;
}

#como-funciona .col-md-4:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    right: -18%;
    width: 36%;
    border-top: 1px dashed rgba(81, 108, 121, 0.28);
}

#como-funciona .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 1.55rem;
    box-shadow: 0 12px 28px rgba(255, 152, 0, 0.12);
}

#cotacao .row {
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 152, 0, 0.24), transparent 18rem),
        linear-gradient(135deg, var(--brand-deep), var(--brand));
    box-shadow: var(--shadow-md);
}

#cotacao h2,
#cotacao p,
#cotacao .text-muted {
    color: #fff !important;
}

#cotacao p {
    opacity: 0.78;
}

#cotacao .col-lg-5 > div {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    background: rgba(255, 255, 255, 0.94) !important;
}

.qis-video-thumb {
    border-radius: 18px !important;
    box-shadow: var(--shadow-sm) !important;
}

.qis-video-thumb:hover {
    transform: translateY(-4px) scale(1.01) !important;
    box-shadow: var(--shadow-md) !important;
}

#parceiras {
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

#parceiras img {
    width: auto;
    max-width: min(220px, 70vw);
    object-fit: contain;
    filter: grayscale(0.12);
    transition: transform 0.25s ease, filter 0.25s ease;
}

#parceiras img:hover {
    transform: scale(1.06);
    filter: none;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    overflow: hidden;
    margin-bottom: 0.85rem;
    border: 1px solid var(--border) !important;
    border-radius: 16px !important;
    background: #fff;
    box-shadow: 0 8px 24px rgba(29, 48, 57, 0.05);
}

.accordion-button {
    padding: 1.15rem 1.25rem;
    color: var(--brand-deep);
    background: #fff;
    font-weight: 750;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-deep);
    background: var(--brand-soft);
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: sepia(1) saturate(5) hue-rotate(350deg);
}

.accordion-body {
    color: var(--muted);
    line-height: 1.7;
}

footer {
    overflow: hidden;
    background:
        radial-gradient(circle at 0 0, rgba(255, 152, 0, 0.13), transparent 25rem),
        var(--brand-deep) !important;
}

footer::after {
    content: "";
    position: absolute;
    right: -12rem;
    bottom: -18rem;
    width: 36rem;
    height: 36rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer a:hover {
    color: #fff !important;
}

footer img[alt*="Logo"] {
    width: 220px;
    height: auto;
    object-fit: contain;
}

footer .rounded-circle {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

footer a:hover .rounded-circle {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.cookie-bar {
    z-index: 1095 !important;
}

.privacy-banner {
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 70px rgba(29, 48, 57, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.privacy-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    border-radius: 13px;
    background: var(--brand-soft);
    font-size: 1.15rem;
}

.privacy-banner a,
.modal-body a {
    color: var(--brand-dark);
    font-weight: 750;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.privacy-grid > div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-soft);
}

.privacy-grid strong {
    color: var(--brand-deep);
    font-size: 0.88rem;
}

.privacy-grid span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.privacy-contact {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid rgba(255, 152, 0, 0.18);
    border-radius: 14px;
    background: var(--accent-soft);
    font-size: 0.88rem;
}

.privacy-contact i {
    color: var(--accent-dark);
    font-size: 1.25rem;
}

.modal-content {
    color: var(--text);
}

.floating-logo-btn {
    right: 24px !important;
    bottom: 24px !important;
    width: 68px !important;
    height: 68px !important;
    border: 1px solid rgba(49, 72, 83, 0.10);
    box-shadow: 0 18px 42px rgba(29, 48, 57, 0.22) !important;
}

.floating-logo-btn img {
    width: 40px !important;
    height: 40px !important;
}

.mobile-action-bar {
    display: none;
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 72px;
    }

    .navbar .container {
        min-height: 62px;
    }

    .navbar-brand img {
        width: 164px;
    }

    .navbar-collapse {
        margin: 0.7rem 0 0.85rem;
        padding: 0.9rem;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow-sm);
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 0.2rem !important;
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 0.8rem !important;
        border-radius: 10px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover {
        background: var(--surface-soft);
    }

    header.hero {
        min-height: auto;
        background-position: 63% center !important;
    }

    .hero .card {
        max-width: 680px;
        margin: 1rem auto 0;
    }

    #como-funciona .col-md-4:not(:last-child)::after {
        display: none;
    }

    #solucoes .row,
    #quem-somos .row {
        row-gap: 2.2rem !important;
    }

    footer .row > div {
        text-align: center;
    }

    footer .d-flex.gap-3 {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    body:not(.thank-you-page) {
        padding-bottom: 76px;
    }

    section.py-5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    header.hero {
        padding-top: 3.4rem !important;
        padding-bottom: 4rem !important;
        background:
            linear-gradient(180deg, rgba(25, 44, 53, 0.94), rgba(43, 68, 79, 0.91)),
            url('../img/imagem2.png') center / cover no-repeat !important;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.3rem);
    }

    .hero .lead {
        font-size: 1rem;
    }

    .hero .card {
        padding: 0.65rem !important;
        border-radius: 22px !important;
    }

    .hero .card-body {
        padding: 0.9rem;
    }

    .hero .col-lg-7 .d-flex .btn {
        width: 100%;
        justify-content: center;
    }

    .form-control,
    .form-select {
        min-height: 52px;
        font-size: 16px;
    }

    #cotacao .row {
        margin-right: 0;
        margin-left: 0;
        padding: 1.4rem;
        text-align: center;
    }

    #cotacao .btn {
        width: 100%;
        justify-content: center;
        margin: 0 0 0.7rem !important;
    }

    .qis-video-cta {
        gap: 0.9rem !important;
    }

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

    .privacy-banner {
        padding: 0.9rem;
    }

    .privacy-banner .btn {
        width: 100%;
    }

    .floating-logo-btn {
        display: none !important;
    }

    .mobile-action-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1088;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        padding: 0.65rem max(0.75rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
        border-top: 1px solid rgba(49, 72, 83, 0.1);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -12px 35px rgba(29, 48, 57, 0.13);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mobile-action-bar .btn {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 0.68rem 0.75rem;
    }

    #lgpd-cookie-bar {
        bottom: 72px !important;
        padding: 0.75rem !important;
    }

    footer .d-flex.justify-content-between {
        justify-content: center !important;
        gap: 0.7rem;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .navbar-brand img {
        width: 146px !important;
    }

    .navbar-toggler {
        width: 42px;
        height: 42px;
    }

    .hero .badge {
        margin-right: 0 !important;
    }

    section h2.h1,
    section .h1 {
        font-size: 2.05rem;
    }

    #beneficios .p-4 {
        padding: 1.35rem !important;
    }

    #parceiras .d-flex {
        gap: 2rem !important;
    }

    #parceiras img {
        height: auto !important;
        max-height: 54px;
        max-width: 185px;
    }

    .qis-video-thumb {
        width: 100% !important;
        flex-basis: 100% !important;
    }

    .modal-dialog {
        margin: 0.75rem;
    }
}

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

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

/* Página de confirmação */
.thank-you-page {
    min-height: 100vh;
    padding: 0;
    color: #fff;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 152, 0, 0.24), transparent 28rem),
        radial-gradient(circle at 95% 95%, rgba(255, 255, 255, 0.09), transparent 30rem),
        linear-gradient(135deg, var(--brand-deep), var(--brand));
}

.thank-you-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.thank-you-card {
    width: min(620px, 100%);
    padding: clamp(1.6rem, 5vw, 3.2rem);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 35px 100px rgba(8, 25, 32, 0.38);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.thank-you-logo {
    display: inline-block;
    margin-bottom: 1.4rem;
}

.thank-you-logo img {
    width: 190px;
    height: auto;
}

.success-icon {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: #fff;
    border-radius: 28px;
    background: linear-gradient(135deg, #2bd66a, #15994a);
    box-shadow: 0 18px 45px rgba(32, 189, 90, 0.26);
    font-size: 2.5rem;
}

.thank-you-card h1 {
    margin: 0.7rem 0 1rem;
    color: var(--brand-deep);
    font-size: clamp(2rem, 6vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.thank-you-card p {
    max-width: 520px;
    margin: 0 auto 1.6rem;
    color: var(--muted);
    line-height: 1.75;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.redirect-note {
    margin-top: 1.4rem;
    color: var(--muted);
    font-size: 0.83rem;
}

@media (max-width: 575.98px) {
    .thank-you-page {
        padding-bottom: 0;
    }

    .thank-you-card {
        padding: 1.5rem 1rem;
        border-radius: 24px;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}

/* Ajustes solicitados — 02/08/2026 */
#como-funciona h3,
#como-funciona p {
    font-weight: 400 !important;
}

#como-funciona .step-number {
    color: #111;
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
}

#cotacao .row {
    background: #607d8b !important;
}

#cotacao .col-lg-5 .text-dark {
    color: #000 !important;
    font-weight: 400;
}

footer {
    background: #607d8b !important;
}

footer::after {
    content: none;
}


/* Tipo de cotação e upload opcional de apólice */
.quote-type-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
.quote-type-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}
.quote-type-option {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: .8rem 1rem;
    border: 1px solid rgba(49,72,83,.18);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.quote-type-option:hover {
    border-color: #607d8b;
    box-shadow: 0 8px 24px rgba(49,72,83,.10);
    transform: translateY(-1px);
}
.quote-type-option:has(input:checked) {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255,152,0,.14);
}
.quote-type-option input {
    margin: 0 .65rem 0 0;
    flex: 0 0 auto;
}
.quote-type-option span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 600;
}
.modern-upload-card {
    border: 1px dashed rgba(96,125,139,.55);
    border-radius: 18px;
    background: rgba(96,125,139,.06);
    overflow: hidden;
}
.modern-upload-label {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem;
    cursor: pointer;
}
.modern-upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    color: #fff;
    background: #607d8b;
    font-size: 1.35rem;
}
.modern-upload-copy {
    min-width: 0;
    display: grid;
    gap: .18rem;
}
.modern-upload-copy small,
.modern-upload-file {
    color: #61747d;
    font-size: .82rem;
}
.modern-upload-file {
    overflow-wrap: anywhere;
}
.modern-upload-card:has(input.is-invalid) {
    border-color: #dc3545;
}
.modern-upload-card .invalid-feedback {
    padding: 0 1rem 1rem;
}
.modern-upload-card:has(input.is-invalid) .invalid-feedback {
    display: block;
}
@media (max-width: 575.98px) {
    .quote-type-options { grid-template-columns: 1fr; }
    .modern-upload-label { align-items: flex-start; }
}

/* Ajuste solicitado: eleva apenas o conteúdo textual do hero no desktop. */
@media (min-width: 992px) {
    header.hero .col-lg-7 {
        transform: translateY(-52px);
    }
}

/* Ajuste solicitado: enquadramento completo da imagem de coberturas */
#coberturas img {
    object-fit: contain;
    object-position: center;
    background: #fff;
}
