:root {
    --brand: #607d8b;
    --brand-dark: #4f6975;
    --brand-deep: #314852;
    --brand-soft: #eaf0f2;
    --accent: #ff9800;
    --accent-dark: #e38500;
    --accent-soft: #fff3df;
    --whatsapp: #20bd5a;
    --whatsapp-dark: #149847;
    --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);
    --shadow-lg: 0 32px 90px rgba(19, 38, 47, 0.22);
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
}

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

body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    margin: 0;
    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 {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        radial-gradient(circle at 4% 12%, rgba(255, 152, 0, 0.055), transparent 24rem),
        radial-gradient(circle at 96% 62%, rgba(96, 125, 139, 0.07), transparent 30rem);
}

img {
    max-width: 100%;
}

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

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

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.7rem 1rem;
    color: #fff;
    background: var(--brand-deep);
    border-radius: 10px;
    transform: translateY(-180%);
    transition: transform 0.2s ease;
}

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

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 3.2rem;
}

.section-heading h2 {
    margin: 0.75rem 0 1rem;
    color: var(--brand-deep);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.section-heading p {
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    line-height: 1.7;
}

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

.eyebrow-light {
    color: #ffd08a;
}

.btn {
    border-radius: 12px;
    font-weight: 750;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-accent {
    color: #fff !important;
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 10px 24px rgba(255, 152, 0, 0.22);
}

.btn-accent:hover,
.btn-accent:focus-visible {
    color: #fff !important;
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 14px 28px rgba(227, 133, 0, 0.28);
}

.btn-whatsapp {
    color: #fff !important;
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    box-shadow: 0 10px 24px rgba(32, 189, 90, 0.2);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    color: #fff !important;
    background: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
}

.btn-outline-brand {
    color: var(--brand-dark);
    background: #fff;
    border-color: rgba(96, 125, 139, 0.36);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus-visible {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.navbar {
    min-height: 82px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(49, 72, 83, 0.08);
    box-shadow: 0 8px 30px rgba(29, 48, 57, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

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

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    text-decoration: none;
}

.brand-lockup img {
    flex: 0 0 auto;
    object-fit: contain;
}

.brand-logo-main {
    display: block;
    width: auto;
    height: 58px;
    max-width: 210px;
    object-fit: contain;
    object-position: left center;
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    color: var(--brand-dark);
    font-size: 1.25rem;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.brand-copy small {
    margin-top: 0.3rem;
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.7rem 0.4rem !important;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 50%;
    bottom: 0.3rem;
    left: 50%;
    height: 2px;
    content: "";
    background: var(--accent);
    border-radius: 2px;
    transition: right 0.2s ease, left 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.4rem;
    left: 0.4rem;
}

.navbar-toggler {
    border-color: rgba(49, 72, 83, 0.16);
    box-shadow: none !important;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    padding: clamp(4.5rem, 9vw, 7.5rem) 0;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(48, 71, 82, 0.98), rgba(96, 125, 139, 0.92)),
        linear-gradient(45deg, #314852, #607d8b);
}

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

.hero::after {
    position: absolute;
    right: -14%;
    bottom: -36%;
    z-index: -1;
    width: 760px;
    height: 760px;
    content: "";
    border: 120px solid rgba(255, 152, 0, 0.1);
    border-radius: 50%;
}

.hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(1px);
}

.hero-orb-one {
    top: -110px;
    left: -110px;
    width: 330px;
    height: 330px;
    background: rgba(255, 152, 0, 0.14);
}

.hero-orb-two {
    top: 18%;
    right: 39%;
    width: 110px;
    height: 110px;
    border: 20px solid rgba(255, 255, 255, 0.08);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.9rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero h1 {
    max-width: 760px;
    margin: 1.25rem 0 0;
    font-size: clamp(2.8rem, 6.4vw, 5.6rem);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 690px;
    margin: 1.25rem 0 1.5rem;
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.18rem, 2.1vw, 1.55rem);
    font-weight: 500;
    line-height: 1.5;
}

.hero-points {
    display: grid;
    gap: 0.7rem;
    max-width: 620px;
    padding: 0;
    margin: 0 0 2rem;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255,255,255,0.89);
    font-size: 1rem;
    font-weight: 650;
}

.hero-points i {
    color: #ffb54a;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.hero-trust div {
    display: grid;
    gap: 0.25rem;
}

.hero-trust strong {
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
}

.hero-trust span {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-mobile-lead-card {
    display: none;
}

.lead-card {
    position: relative;
    color: var(--text);
    padding: clamp(1.2rem, 3vw, 2rem);
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(255,255,255,0.76);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.lead-card-heading {
    margin-bottom: 1rem;
    text-align: center;
}

.lead-card-heading h2 {
    margin: 0.55rem 0 0.55rem;
    color: var(--brand-deep);
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.lead-card-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;
    top: 50%;
    left: 0.9rem;
    z-index: 2;
    color: var(--brand);
    transform: translateY(-50%);
}

.input-icon .form-control {
    padding-left: 2.65rem;
}

.form-control,
.form-select {
    min-height: 50px;
    color: var(--text);
    background-color: #fff;
    border: 1px solid rgba(49, 72, 83, 0.16);
    border-radius: 12px;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(255, 152, 0, 0.72);
    box-shadow: 0 0 0 0.22rem rgba(255, 152, 0, 0.14);
}

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


/* Upload de editais */
.file-upload {
    position: relative;
}

.file-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-upload-dropzone {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    min-height: 86px;
    padding: 0.9rem 1rem;
    margin: 0;
    color: var(--brand-deep);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(242,247,249,0.96));
    border: 1.5px dashed rgba(79, 111, 126, 0.38);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.file-upload-dropzone:hover,
.file-upload-dropzone.is-dragging,
.file-upload-input:focus-visible + .file-upload-dropzone {
    border-color: var(--accent);
    background: rgba(255, 152, 0, 0.055);
    box-shadow: 0 0 0 0.22rem rgba(255, 152, 0, 0.11);
    transform: translateY(-1px);
}

.file-upload-input.is-invalid + .file-upload-dropzone {
    border-color: var(--bs-form-invalid-border-color, #dc3545);
    background: rgba(220, 53, 69, 0.045);
}

.file-upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #ffad33);
    border-radius: 13px;
    box-shadow: 0 10px 22px rgba(255, 152, 0, 0.22);
    font-size: 1.35rem;
}

.file-upload-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.15rem;
}

.file-upload-copy strong {
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.3;
}

.file-upload-copy small {
    color: var(--muted);
    font-size: 0.72rem;
}

.file-upload-limit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.55rem;
    color: var(--brand-dark);
    background: rgba(79, 111, 126, 0.09);
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 800;
    white-space: nowrap;
}

.file-upload-list {
    display: grid;
    gap: 0.48rem;
    margin-top: 0.65rem;
}

.file-upload-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.62rem 0.72rem;
    background: var(--surface-soft);
    border: 1px solid rgba(49, 72, 83, 0.09);
    border-radius: 11px;
}

.file-upload-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--brand-dark);
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(29, 48, 57, 0.08);
}

.file-upload-item-copy {
    min-width: 0;
}

.file-upload-item-name {
    display: block;
    overflow: hidden;
    color: var(--brand-deep);
    font-size: 0.76rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-upload-item-size {
    display: block;
    margin-top: 0.08rem;
    color: var(--muted);
    font-size: 0.67rem;
}

.file-upload-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #7b8b92;
    background: transparent;
    border: 0;
    border-radius: 9px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.file-upload-remove:hover,
.file-upload-remove:focus-visible {
    color: #b42318;
    background: rgba(180, 35, 24, 0.08);
}

.file-upload-help {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.69rem;
}

@media (max-width: 575.98px) {
    .file-upload-dropzone {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .file-upload-limit {
        grid-column: 2;
        justify-self: start;
    }
}

.privacy-check {
    padding: 0.75rem 0.8rem 0.75rem 2.25rem;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
    background: var(--surface-soft);
    border-radius: 12px;
}

.privacy-check .form-check-input {
    margin-left: -1.45rem;
}

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

.form-login-link {
    color: var(--muted);
    font-size: 0.88rem;
}

.form-login-link a {
    color: var(--brand-dark);
    font-weight: 800;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.76rem;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.process-grid {
    position: relative;
}

.process-card {
    position: relative;
    min-height: 240px;
    padding: 1.6rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 152, 0, 0.35);
    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;
    top: 1.2rem;
    right: 1.25rem;
    color: rgba(96, 125, 139, 0.13);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 2.2rem;
    color: #fff;
    font-size: 1.4rem;
    background: var(--brand);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(96, 125, 139, 0.22);
}

.process-card h3 {
    margin: 0;
    color: var(--brand-deep);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.35;
}

.social-proof-section {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
    background: var(--surface-soft);
}

.social-proof-card {
    position: relative;
    padding: clamp(2rem, 5vw, 4.2rem);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 152, 0, 0.24), transparent 16rem),
        linear-gradient(135deg, var(--brand-deep), var(--brand));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.social-proof-card::after {
    position: absolute;
    right: -70px;
    bottom: -180px;
    width: 360px;
    height: 360px;
    content: "";
    border: 70px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

.social-proof-card h2 {
    position: relative;
    z-index: 1;
    margin: 0.6rem 0 0.9rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.social-proof-card p {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.72;
}

.social-proof-card .btn {
    position: relative;
    z-index: 1;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3rem;
    min-height: 230px;
    padding: 1.8rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-card img {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(255, 152, 0, 0.17);
}

.advantage-card h3 {
    margin: 0;
    color: var(--brand-deep);
    font-size: 1.06rem;
    font-weight: 780;
    line-height: 1.52;
}

.horizontal-card {
    flex-direction: row;
    align-items: center;
    min-height: 150px;
}

.institutions-section {
    border-top: 1px solid rgba(49, 72, 83, 0.06);
    border-bottom: 1px solid rgba(49, 72, 83, 0.06);
}

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

.institution-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(29, 48, 57, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.institution-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.institution-logo img {
    width: auto;
    max-width: 100%;
    max-height: 68px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.institution-logo:hover img {
    filter: grayscale(0.25);
    opacity: 0.95;
}

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

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

.faq-accordion .accordion-button {
    gap: 0.9rem;
    padding: 1.25rem 1.3rem;
    color: var(--brand-deep);
    background: #fff;
    font-size: 1rem;
    font-weight: 780;
    line-height: 1.4;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-deep);
    background: var(--surface-soft);
}

.faq-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.12);
}

.faq-number {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--brand);
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 850;
}

.faq-accordion .accordion-body {
    padding: 0.2rem 1.5rem 1.5rem 5.55rem;
    color: var(--muted);
    line-height: 1.72;
}

.faq-accordion .accordion-body p:last-child,
.faq-accordion .accordion-body ul:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-body a {
    color: var(--brand-dark);
    font-weight: 700;
}

.contact-cta {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.contact-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-cta-card h2 {
    margin: 0.6rem 0 0.5rem;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 830;
    letter-spacing: -0.035em;
}

.contact-cta-card p {
    margin: 0;
    color: rgba(255,255,255,0.75);
}

.contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.contact-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-footer {
    color: #fff;
    background: #425d69;
}

.footer-main {
    padding: 4.5rem 0 3rem;
}

.brand-lockup-footer {
    margin-bottom: 1.3rem;
}

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 1.3rem;
}

.footer-brand-logo img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.brand-lockup-footer .brand-copy strong {
    color: #fff;
}

.brand-lockup-footer .brand-copy small {
    color: #ffb34a;
}

.site-footer p {
    max-width: 430px;
    color: rgba(255,255,255,0.66);
    line-height: 1.72;
}

.footer-title {
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-contact-list,
.footer-links {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.65rem;
    align-items: start;
}

.footer-contact-list i {
    color: #ffb34a;
}

.site-footer a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.footer-links a {
    display: block;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-social-block {
    margin-top: 1.55rem;
}

.footer-social-title {
    margin-bottom: 0.85rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 750;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.1);
}

.award-image {
    width: 130px;
    height: auto;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    color: rgba(255,255,255,0.56);
    font-size: 0.82rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.cookie-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1080;
    padding: 1rem;
}

.privacy-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    color: var(--muted);
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(19, 38, 47, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

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

.privacy-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--brand);
    border-radius: 12px;
}

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

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

.privacy-grid strong {
    color: var(--brand-deep);
}

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

.privacy-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--accent-soft);
    border-radius: 14px;
}

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

.floating-logo-btn {
    position: fixed;
    right: 24px !important;
    bottom: 24px !important;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px !important;
    height: 68px !important;
    border: 1px solid rgba(49, 72, 83, 0.10);
    background: rgba(255,255,255,0.98);
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(29, 48, 57, 0.22) !important;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.floating-logo-btn:hover,
.floating-logo-btn:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 48px rgba(29, 48, 57, 0.26) !important;
}

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

.thank-you-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,152,0,0.12), transparent 26rem),
        linear-gradient(135deg, #eef3f5, #fff);
}

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

.thank-you-card {
    width: min(680px, 100%);
    padding: clamp(2rem, 6vw, 4rem);
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.thank-you-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
    color: var(--text);
    text-decoration: none;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.25rem;
    color: #fff;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(32,189,90,0.26);
}

.success-icon i {
    font-size: 2.3rem;
}

.thank-you-card h1 {
    margin: 0.6rem 0 1rem;
    color: var(--brand-deep);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 850;
    letter-spacing: -0.045em;
}

.thank-you-card p {
    color: var(--muted);
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

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

@media (max-width: 1199.98px) {
    .institution-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0 1.25rem;
    }

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

    .navbar-nav .nav-link {
        padding: 0.7rem 0 !important;
    }

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

    .navbar-nav .btn {
        width: 100%;
        margin-top: 0.35rem;
    }

    .hero {
        text-align: center;
    }

    .hero h1,
    .hero-subtitle,
    .hero-points {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-points {
        width: fit-content;
        text-align: left;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .lead-card {
        max-width: 650px;
        margin: 1rem auto 0;
    }

    .contact-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-cta-actions {
        justify-content: flex-start;
    }

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

    .mobile-action-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1035;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        padding: 0.65rem;
        background: rgba(255,255,255,0.97);
        border-top: 1px solid var(--border);
        box-shadow: 0 -12px 32px rgba(19,38,47,0.11);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .mobile-action-bar .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

    .site-footer {
        padding-bottom: 74px;
    }

    .cookie-bar {
        bottom: 74px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 4rem 0;
    }

    .hero {
        min-height: 0;
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 14vw, 4.2rem);
    }

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

    .hero-trust {
        gap: 1rem;
    }

    .hero-trust div {
        flex: 1 1 30%;
    }

    .lead-card {
        padding: 1.1rem;
        border-radius: 22px;
    }

    .hero-mobile-lead-card {
        display: block;
        margin: 0 auto 1.5rem;
    }

    .hero-desktop-lead-card {
        display: none;
    }

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

    .institution-logo {
        min-height: 96px;
    }

    .institution-logo img {
        max-height: 54px;
    }

    .faq-accordion .accordion-button {
        align-items: flex-start;
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-number {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .faq-accordion .accordion-body {
        padding: 0.25rem 1rem 1.25rem;
    }

    .horizontal-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-cta-actions,
    .contact-cta-actions .btn {
        width: 100%;
    }

    .contact-cta-actions .btn {
        justify-content: center;
    }

    .privacy-banner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

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

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

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

    .brand-logo-main {
        width: auto;
        height: 50px;
        max-width: 185px;
    }

    .brand-copy strong {
        font-size: 1.08rem;
    }

    .brand-copy small {
        font-size: 0.72rem;
    }

    .hero-kicker {
        font-size: 0.72rem;
    }

    .hero-points li {
        align-items: flex-start;
        font-size: 0.94rem;
    }

    .hero-trust strong {
        font-size: 1.15rem;
    }

    .hero-trust span {
        font-size: 0.66rem;
    }

    .section-heading {
        margin-bottom: 2.35rem;
    }

    .process-card,
    .advantage-card {
        min-height: auto;
    }

    .social-proof-card,
    .contact-cta-card {
        border-radius: 22px;
    }

    .institution-grid {
        gap: 0.7rem;
    }

    .institution-logo {
        min-height: 84px;
        padding: 0.7rem;
    }

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

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

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