/* =========================================================
   4CORNERS PUBLIC CSS
========================================================= */

:root {
    --blue: #0057bf;
    --blue-dark: #003a7a;
    --blue-deep: #002e63;
    --green: #13a85b;
    --yellow: #ffc31a;
    --orange: #ff7a00;
    --red: #e63946;
    --text: #102344;
    --muted: #62708a;
    --soft: #f5f8fc;
    --border: #dce5f2;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(11, 63, 120, 0.12);
    --radius: 18px;
    --container: 1280px;
}

/* =========================================================
   RESET / BASE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #f5f8fc;
    overflow-x: hidden;
}

main {
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 64px));
    margin: 0 auto;
}

/* =========================================================
   ACESSIBILIDADE
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(245, 196, 0, 0.9);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   SVG GLOBAL
========================================================= */

svg {
    display: block;
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.mini-lock-icon {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: -2px;
    margin-right: 5px;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 78px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 46, 99, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.brand img {
    width: 178px;
    height: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    font-weight: 800;
    color: #0f2850;
}

.main-nav a {
    position: relative;
    padding: 29px 0 26px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 17px;
    width: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 20px;
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 100%;
}

.header-cta {
    min-height: 46px;
    background: linear-gradient(135deg, #0057bf, #004193);
    color: var(--white);
    padding: 0 22px;
    border-radius: 11px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 10px 25px rgba(0, 87, 191, 0.25);
    transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 30px rgba(0, 87, 191, 0.28);
}

.header-cta svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-btn {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--blue-deep);
    margin: 6px auto;
    border-radius: 20px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-btn.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 470px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 52, 112, 0.98) 0%,
            rgba(0, 76, 166, 0.92) 34%,
            rgba(0, 76, 166, 0.32) 57%,
            rgba(0, 76, 166, 0.02) 100%
        ),
        url("../images/home-hero.png") center right / cover no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 46, 99, 0.06);
}

.hero::after,
.hero-overlay {
    display: none;
}

.hero-inner {
    min-height: 470px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
    padding: 58px 0 44px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 4.6vw, 66px);
    line-height: 1.02;
    letter-spacing: -1.8px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    margin: 0;
    font-size: 20px;
    line-height: 1.42;
    max-width: 575px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin: 30px 0 26px;
    flex-wrap: wrap;
}

.btn {
    border: 0;
    border-radius: 12px;
    min-height: 52px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.btn-yellow {
    background: linear-gradient(135deg, #ffc31a, #ffb000);
    color: #172033;
}

.btn-green {
    background: linear-gradient(135deg, #18b965, #0c964d);
    color: var(--white);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
}

.btn.small {
    min-height: 44px;
    font-size: 14px;
    padding: 0 18px;
}

.hero-actions .btn {
    min-height: 54px;
    min-width: 190px;
    padding: 0 24px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.hero-actions .btn svg {
    width: 20px;
    height: 20px;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 16px;
    max-width: 560px;
    margin-top: 22px;
}

.hero-badges div {
    min-height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    line-height: 1.2;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.badge-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    color: #ffffff;
}

.badge-icon svg {
    width: 28px;
    height: 28px;
}

.hero-badges strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 28px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 26px;
}

.section-title h2 {
    margin: 0;
    font-size: 29px;
    line-height: 1.2;
    color: var(--blue-deep);
    font-weight: 900;
    letter-spacing: -0.3px;
}

.section-title span {
    display: block;
    width: 118px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 150px;
    background: var(--white);
    border: 1px solid #dfe8f5;
    border-radius: 15px;
    padding: 24px 18px 20px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(11, 63, 120, 0.09);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(11, 63, 120, 0.14);
}

.service-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    line-height: 1;
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-icon.blue,
.why-icon.blue {
    color: var(--blue);
}

.service-icon.green,
.why-icon.green {
    color: var(--green);
}

.service-icon.orange,
.why-icon.orange {
    color: var(--orange);
}

.service-card h3 {
    margin: 0 0 7px;
    color: var(--blue-deep);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.42;
}

/* =========================================================
   WHY
========================================================= */

.why-section {
    padding: 26px 0 30px;
    background: #ffffff;
    border-top: 1px solid #edf2f8;
    border-bottom: 1px solid #edf2f8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.22s ease;
}

.why-item:hover {
    transform: translateY(-3px);
}

.why-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 50%;
    background: #f1f6fd;
    display: grid;
    place-items: center;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.why-icon svg {
    width: 34px;
    height: 34px;
}

.why-item h3 {
    margin: 0 0 6px;
    color: var(--blue-deep);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.why-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.45;
}

/* =========================================================
   PACKAGES
========================================================= */

.packages-section {
    padding-top: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.package-slider-wrap {
    position: relative;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    min-height: 325px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 16px 34px rgba(11, 63, 120, 0.10);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(0, 55, 120, 0.12);
}

.package-img {
    display: block;
    height: 172px;
    background-size: cover;
    background-position: center;
}

.package-local {
    background-image: url("../images/package-local.png");
}

.package-regional {
    background-image: url("../images/package-regional.png");
}

.package-international {
    background-image: url("../images/package-international.png");
}

.package-body {
    padding: 18px 20px 20px;
}

.package-body h3 {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.package-body p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.green-text {
    color: var(--green) !important;
}

.orange-text {
    color: var(--orange) !important;
}

.outline-link {
    display: inline-flex;
    min-width: 98px;
    min-height: 36px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.outline-link:hover {
    transform: translateY(-2px);
}

.outline-link.blue {
    border: 1px solid var(--blue);
    color: var(--blue);
}

.outline-link.blue:hover {
    background: var(--blue);
    color: #ffffff;
}

.outline-link.green {
    border: 1px solid var(--green);
    color: var(--green);
}

.outline-link.green:hover {
    background: var(--green);
    color: #ffffff;
}

.outline-link.orange {
    border: 1px solid var(--orange);
    color: var(--orange);
}

.outline-link.orange:hover {
    background: var(--orange);
    color: #ffffff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(15, 45, 82, 0.18);
    z-index: 3;
    font-size: 34px;
    color: var(--blue-deep);
    cursor: pointer;
}

.slider-btn.left {
    left: -22px;
}

.slider-btn.right {
    right: -22px;
}

/* =========================================================
   CORPORATE BANNER
========================================================= */

.corporate-banner {
    min-height: 180px;
    border-radius: 16px;
    margin-top: 0;
    margin-bottom: 34px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 47, 100, 0.86) 42%,
            rgba(0, 47, 100, 0.16) 72%
        ),
        url("../images/corporate-banner.png") center right / cover no-repeat;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
    box-shadow: 0 16px 36px rgba(11, 63, 120, 0.12);
}

.corporate-banner::after {
    display: none;
}

.corporate-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 30px 36px;
}

.corporate-content h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.1;
}

.corporate-content p {
    margin: 0 0 18px;
    line-height: 1.5;
    font-size: 16px;
    max-width: 580px;
}

.corporate-content .btn svg {
    width: 18px;
    height: 18px;
}

/* =========================================================
   STEPS
========================================================= */

.how-section {
    padding-top: 0;
    padding-bottom: 26px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    align-items: start;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: "";
    position: absolute;
    top: 48px;
    left: calc(50% + 48px);
    width: calc(100% - 96px);
    border-top: 2px dashed #b8cbe4;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 900;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}

.step-number.blue {
    background: var(--blue);
}

.step-number.green {
    background: var(--green);
}

.step-number.orange {
    background: var(--orange);
}

.step-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    display: grid;
    place-items: center;
    color: var(--blue);
    margin: 0 auto 12px;
    box-shadow: 0 10px 25px rgba(15, 45, 82, 0.08);
    position: relative;
    z-index: 2;
}

.step-icon svg {
    width: 34px;
    height: 34px;
}

.step h3 {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.step p {
    margin: 0 auto;
    max-width: 220px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

/* =========================================================
   QUOTE
========================================================= */

.quote-preview-section {
    padding: 12px 0 38px;
    background: #ffffff;
}

.quote-preview-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}

.quote-card,
.whatsapp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: var(--shadow);
}

.quote-card {
    padding: 28px;
}

.quote-card h2 {
    margin: 0 0 5px;
    color: var(--blue-deep);
    font-size: 24px;
    font-weight: 900;
}

.quote-card p {
    margin: 0 0 18px;
    color: var(--muted);
}

.quote-mini-form label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #18345f;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 9px;
    min-height: 40px;
    padding: 0 12px;
    margin-top: 6px;
    font-family: inherit;
    outline: none;
    background: #ffffff;
    color: var(--text);
}

textarea {
    min-height: 62px;
    padding-top: 12px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 87, 191, 0.10);
}

.quote-form-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 14px;
}

.quote-form-footer .btn {
    min-height: 42px;
    min-width: 210px;
    font-size: 14px;
    border-radius: 9px;
}

.quote-form-footer small {
    color: var(--muted);
    display: inline-flex;
    align-items: center;
}

.whatsapp-card {
    background: linear-gradient(160deg, #0aa657, #087b41);
    color: var(--white);
    text-align: center;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(8, 123, 65, 0.18);
}

.whatsapp-big {
    width: 82px;
    height: 82px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    line-height: 1;
}

.whatsapp-big svg {
    width: 76px;
    height: 76px;
    color: #ffffff;
}

.whatsapp-card h3 {
    margin: 8px 0;
    font-size: 24px;
}

.whatsapp-card p {
    margin: 0 0 18px;
    line-height: 1.45;
}

.whatsapp-number {
    background: var(--white);
    color: var(--green);
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-number svg {
    width: 22px;
    height: 22px;
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #12b35f;
    color: #ffffff;
    display: grid;
    place-items: center;
    z-index: 300;
    box-shadow: 0 16px 35px rgba(18, 179, 95, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(18, 179, 95, 0.45);
}

.floating-whatsapp svg {
    width: 30px !important;
    height: 30px !important;
    fill: currentColor;
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1180px) {
    .main-nav {
        gap: 16px;
        font-size: 12px;
    }

    .header-cta {
        padding: 0 16px;
    }
}

@media (max-width: 1024px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .service-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .quote-preview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step::after {
        display: none;
    }

    .main-nav.is-open {
        display: flex;
        position: absolute;
        top: calc(100% + 12px);
        left: 12px;
        right: 12px;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(0, 46, 99, 0.16);
        z-index: 500;
    }

    .main-nav.is-open a {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .main-nav.is-open a.is-active,
    .main-nav.is-open a:hover {
        background: #edf5ff;
        color: var(--blue);
    }

    .main-nav a::after {
        display: none;
    }
}

/* =========================================================
   MOBILE APP LOOK
========================================================= */

@media (max-width: 820px) {
    body,
    main {
        background: #edf4fb;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-header {
        height: 70px;
        position: sticky;
        top: 0;
        border-bottom: 0;
        box-shadow: 0 10px 26px rgba(0, 46, 99, 0.08);
    }

    .header-inner {
        width: min(100% - 24px, var(--container));
    }

    .brand img {
        width: 162px;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: #f1f6fd;
    }

    .mobile-menu-btn span {
        margin: 3px auto;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .main-nav.is-open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 12px;
        right: 12px;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(0, 46, 99, 0.16);
    }

    .main-nav.is-open a {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .hero {
        width: calc(100% - 24px);
        margin: 12px auto 0;
        min-height: auto;
        border-radius: 24px;
        overflow: hidden;
        background:
            linear-gradient(
                90deg,
                rgba(0, 55, 120, 0.98) 0%,
                rgba(0, 73, 159, 0.88) 48%,
                rgba(0, 73, 159, 0.35) 100%
            ),
            url("../images/home-hero.png") center right / cover no-repeat;
        box-shadow: 0 18px 42px rgba(0, 46, 99, 0.18);
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-content {
        padding: 34px 18px 24px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.05;
        letter-spacing: -1px;
        max-width: 420px;
    }

    .hero p {
        font-size: 15px;
        max-width: 360px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 22px 0;
        max-width: 320px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
    }

    .hero-badges {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 10px;
    }

    .hero-badges div {
        min-height: 60px;
        border-radius: 15px;
        background: rgba(255,255,255,0.14);
    }

    .badge-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .badge-icon svg {
        width: 24px;
        height: 24px;
    }

    .services-section,
    .packages-section,
    .quote-preview-section,
    .why-section {
        background: #edf4fb;
    }

    .section {
        padding: 24px 0;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .service-grid,
    .why-grid,
    .package-grid,
    .steps,
    .quote-preview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .package-card,
    .quote-card,
    .whatsapp-card {
        border-radius: 22px;
        box-shadow: 0 14px 34px rgba(0, 46, 99, 0.10);
    }

    .service-card {
        min-height: 142px;
        padding: 24px 18px;
    }

    .why-grid {
        gap: 14px;
    }

    .why-item {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 16px;
        box-shadow: 0 12px 28px rgba(0, 46, 99, 0.08);
    }

    .package-img {
        height: 190px;
    }

    .slider-btn {
        display: none;
    }

    .corporate-banner {
        width: calc(100% - 24px);
        min-height: 260px;
        border-radius: 24px;
        background:
            linear-gradient(
                180deg,
                rgba(0, 47, 100, 0.98) 0%,
                rgba(0, 47, 100, 0.78) 58%,
                rgba(0, 47, 100, 0.22) 100%
            ),
            url("../images/corporate-banner.png") center right / cover no-repeat;
        box-shadow: 0 18px 42px rgba(0, 46, 99, 0.18);
    }

    .corporate-content {
        padding: 26px 20px;
        max-width: 100%;
    }

    .corporate-content h2 {
        font-size: 25px;
    }

    .corporate-content p {
        font-size: 14px;
    }

    .steps {
        gap: 16px;
    }

    .step {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 20px 16px;
        box-shadow: 0 12px 28px rgba(0, 46, 99, 0.08);
    }

    .step::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .quote-form-footer .btn {
        width: 100%;
    }

    .whatsapp-card {
        min-height: 310px;
    }

    .site-footer {
        width: calc(100% - 24px);
        margin: 0 auto 12px;
        border-radius: 24px;
        overflow: hidden;
    }

    .footer-grid {
        gap: 24px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero {
        background:
            linear-gradient(
                90deg,
                rgba(0, 55, 120, 0.98) 0%,
                rgba(0, 73, 159, 0.90) 62%,
                rgba(0, 73, 159, 0.38) 100%
            ),
            url("../images/home-hero.png") 58% center / cover no-repeat;
    }

    .hero-content {
        padding: 30px 16px 22px;
    }

    .hero p {
        font-size: 14px;
        max-width: 300px;
    }

    .hero-actions,
    .hero-badges {
        max-width: 100%;
    }

    .service-grid {
        gap: 14px;
    }

    .package-img {
        height: 170px;
    }

    .quote-card {
        padding: 22px 16px;
    }

    .whatsapp-number {
        font-size: 17px;
    }
}

.alert-success,
.alert-error {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    background: rgba(19, 168, 91, 0.10);
    border: 1px solid rgba(19, 168, 91, 0.25);
    color: #087b41;
}

.alert-error {
    background: rgba(230, 57, 70, 0.10);
    border: 1px solid rgba(230, 57, 70, 0.25);
    color: #9f1d2a;
}

.alert-error ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.simple-page-hero {
    padding: 72px 0;
    background:
        linear-gradient(90deg, rgba(0, 52, 112, 0.96), rgba(0, 76, 166, 0.82)),
        url("../images/home-hero.png") center right / cover no-repeat;
    color: #ffffff;
}

.simple-page-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.simple-page-hero p {
    margin: 0;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.5;
}

.quote-page-section {
    background: #ffffff;
}

@media (max-width: 820px) {
    .simple-page-hero {
        width: calc(100% - 24px);
        margin: 12px auto 0;
        border-radius: 24px;
        padding: 48px 0;
        overflow: hidden;
    }

    .quote-page-section {
        background: #edf4fb;
    }
}

/* =========================================================
   COTACAO - MOCKUP REFINADO
========================================================= */

.quote-hero {
    min-height: 430px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 52, 112, 0.98) 0%,
            rgba(0, 76, 166, 0.92) 38%,
            rgba(0, 76, 166, 0.25) 62%,
            rgba(0, 76, 166, 0.02) 100%
        ),
        url("../images/home-hero.png") center right / cover no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.quote-hero-inner {
    min-height: 430px;
    display: flex;
    align-items: center;
}

.quote-hero-content {
    max-width: 620px;
    padding: 50px 0;
}

.quote-hero-content h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.quote-hero-content p {
    margin: 0 0 28px;
    font-size: 21px;
    line-height: 1.45;
    max-width: 560px;
}

.quote-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.quote-hero-points span {
    position: relative;
    padding-left: 22px;
    font-weight: 800;
    font-size: 15px;
}

.quote-hero-points span::before {
    content: "◉";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--yellow);
    font-size: 13px;
}

.quote-steps-strip {
    padding: 26px 0 18px;
    background: #f6f9fe;
}

.quote-steps-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.quote-step-strip-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(11, 63, 120, 0.08);
    padding: 24px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.quote-step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 900;
    flex: 0 0 34px;
    font-size: 15px;
}

.quote-step-number.blue { background: var(--blue); }
.quote-step-number.green { background: var(--green); }
.quote-step-number.orange { background: var(--orange); }

.quote-step-strip-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(0, 87, 191, 0.08);
    color: var(--blue);
    display: grid;
    place-items: center;
    flex: 0 0 62px;
}

.quote-step-strip-icon.green {
    background: rgba(19, 168, 91, 0.10);
    color: var(--green);
}

.quote-step-strip-icon.orange {
    background: rgba(255, 122, 0, 0.10);
    color: var(--orange);
}

.quote-step-strip-icon svg {
    width: 28px;
    height: 28px;
}

.quote-step-strip-card h3 {
    margin: 0 0 6px;
    font-size: 24px;
    color: var(--blue-deep);
    font-weight: 900;
    line-height: 1.1;
}

.quote-step-strip-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.quote-page-layout {
    padding: 10px 0 36px;
    background: #f6f9fe;
}

.quote-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
}

.quote-form-panel {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 40px rgba(11, 63, 120, 0.08);
}

.quote-form-panel h2 {
    margin: 0 0 6px;
    color: var(--blue-deep);
    font-size: 26px;
    font-weight: 900;
}

.quote-form-panel > p {
    margin: 0 0 22px;
    color: var(--muted);
}

.quote-full-form label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #15325f;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}

.quote-full-form input,
.quote-full-form select,
.quote-full-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    min-height: 48px;
    padding: 0 14px;
    color: var(--text);
    outline: none;
}

.quote-full-form textarea {
    min-height: 138px;
    padding: 14px;
    resize: vertical;
}

.quote-full-form input:focus,
.quote-full-form select:focus,
.quote-full-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 87, 191, 0.10);
}

.quote-message-field {
    margin-top: 18px;
}

.quote-character-note {
    display: block;
    text-align: right;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.quote-consent {
    margin-top: 16px;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--muted) !important;
}

.quote-consent input {
    width: 18px !important;
    min-height: auto !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    flex: 0 0 18px;
}

.quote-submit-btn {
    width: 100%;
    margin-top: 18px;
    min-height: 54px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 87, 191, 0.20);
}

.quote-security-note {
    margin-top: 14px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
}

.quote-sidebar {
    display: grid;
    gap: 18px;
}

.quote-side-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(11, 63, 120, 0.07);
}

.quote-side-card.whatsapp {
    padding: 24px;
    text-align: center;
}

.quote-side-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    background: rgba(0, 87, 191, 0.08);
    color: var(--blue);
}

.quote-side-icon.green {
    background: rgba(19, 168, 91, 0.10);
    color: var(--green);
}

.quote-side-icon.orange {
    background: rgba(255, 122, 0, 0.10);
    color: var(--orange);
}

.quote-side-icon svg {
    width: 34px;
    height: 34px;
}

.quote-side-card.whatsapp h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #108446;
    line-height: 1.2;
}

.quote-side-card.whatsapp p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.quote-side-number {
    min-height: 48px;
    border: 2px solid #21a955;
    border-radius: 12px;
    color: #21a955;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
}

.quote-side-number svg {
    width: 20px;
    height: 20px;
}

.quote-side-card.whatsapp span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.quote-side-card.mini-info {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.quote-side-card.mini-info .quote-side-icon {
    margin: 0;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
}

.quote-side-card.mini-info .quote-side-icon svg {
    width: 28px;
    height: 28px;
}

.quote-side-card.mini-info h4 {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--blue-deep);
}

.quote-side-card.mini-info p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.quote-faq-section {
    padding: 18px 0 32px;
    background: #f6f9fe;
}

.quote-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.quote-faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 14px 32px rgba(11, 63, 120, 0.06);
}

.quote-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    font-size: 18px;
    font-weight: 800;
    color: var(--blue-deep);
    position: relative;
}

.quote-faq-item summary::-webkit-details-marker {
    display: none;
}

.quote-faq-item summary::after {
    content: "⌄";
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 24px;
    color: var(--blue);
}

.quote-faq-item[open] summary::after {
    transform: rotate(180deg);
}

.quote-faq-item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.quote-bottom-cta {
    padding: 0 0 44px;
    background: #f6f9fe;
}

.quote-bottom-cta-box {
    background:
        linear-gradient(90deg, rgba(0, 48, 101, 0.98), rgba(0, 74, 160, 0.88)),
        url("../images/corporate-banner.png") center / cover no-repeat;
    border-radius: 20px;
    min-height: 180px;
    color: #ffffff;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-shadow: 0 18px 36px rgba(11, 63, 120, 0.12);
}

.quote-bottom-cta-box h2 {
    margin: 0 0 8px;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
}

.quote-bottom-cta-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    max-width: 560px;
}

.quote-bottom-cta-actions {
    text-align: center;
    min-width: 280px;
}

.quote-bottom-cta-actions .btn {
    min-width: 280px;
    margin-bottom: 12px;
}

.quote-bottom-cta-actions strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .quote-page-grid {
        grid-template-columns: 1fr;
    }

    .quote-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-side-card.whatsapp {
        grid-column: 1 / -1;
    }

    .quote-bottom-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .quote-hero {
        width: calc(100% - 24px);
        margin: 12px auto 0;
        border-radius: 24px;
        overflow: hidden;
        min-height: auto;
    }

    .quote-hero-inner {
        min-height: auto;
    }

    .quote-hero-content {
        padding: 34px 0 30px;
    }

    .quote-hero-content h1 {
        font-size: 40px;
    }

    .quote-hero-content p {
        font-size: 17px;
    }

    .quote-hero-points {
        flex-direction: column;
        gap: 12px;
    }

    .quote-steps-strip-grid,
    .quote-form-grid,
    .quote-faq-grid,
    .quote-sidebar {
        grid-template-columns: 1fr;
    }

    .quote-step-strip-card {
        align-items: flex-start;
    }

    .quote-form-panel {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .quote-form-panel h2 {
        font-size: 24px;
    }

    .quote-submit-btn {
        font-size: 16px;
    }

    .quote-side-card.mini-info h4 {
        font-size: 18px;
    }

    .quote-bottom-cta-box {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .quote-bottom-cta-box h2 {
        font-size: 30px;
    }

    .quote-bottom-cta-box p {
        font-size: 16px;
    }

    .quote-bottom-cta-actions,
    .quote-bottom-cta-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .quote-bottom-cta-actions strong {
        font-size: 24px;
    }
}

/* =========================================================
   COTACAO - ICONS + FAQ + SUCCESS MODAL
========================================================= */

.quote-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
}

.quote-hero-points span::before {
    display: none;
}

.quote-hero-points svg {
    width: 22px;
    height: 22px;
    color: var(--yellow);
    flex: 0 0 22px;
}

.quote-whatsapp-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* FAQ mais profissional */
.quote-faq-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 54px;
}

.faq-summary-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 87, 191, 0.08);
    color: var(--blue);
    display: grid;
    place-items: center;
    flex: 0 0 34px;
}

.faq-summary-icon svg {
    width: 18px;
    height: 18px;
}

.quote-faq-item:nth-child(2) .faq-summary-icon {
    background: rgba(19, 168, 91, 0.10);
    color: var(--green);
}

.quote-faq-item:nth-child(3) .faq-summary-icon {
    background: rgba(255, 122, 0, 0.10);
    color: var(--orange);
}

.quote-faq-item:nth-child(4) .faq-summary-icon {
    background: rgba(0, 87, 191, 0.08);
    color: var(--blue);
}

/* Modal de sucesso */
.quote-success-modal {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.quote-success-modal.is-visible {
    display: flex;
}

.quote-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 24, 52, 0.62);
    backdrop-filter: blur(8px);
}

.quote-success-dialog {
    position: relative;
    width: min(100%, 520px);
    background: #ffffff;
    border-radius: 26px;
    padding: 34px 30px 28px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 24, 52, 0.32);
    animation: quoteSuccessPop 0.25s ease;
}

@keyframes quoteSuccessPop {
    from {
        transform: translateY(16px) scale(0.96);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.quote-success-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #eef4fb;
    color: var(--blue-deep);
    font-size: 26px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.quote-success-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(19, 168, 91, 0.12);
    color: var(--green);
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
}

.quote-success-icon svg {
    width: 44px;
    height: 44px;
}

.quote-success-dialog h2 {
    margin: 0 0 10px;
    color: var(--blue-deep);
    font-size: 28px;
    font-weight: 900;
}

.quote-success-dialog p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.quote-success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.quote-success-actions .btn {
    min-height: 48px;
    min-width: 150px;
}

@media (max-width: 520px) {
    .quote-hero-points {
        gap: 10px;
    }

    .quote-hero-points span {
        width: 100%;
    }

    .quote-success-dialog {
        padding: 30px 20px 24px;
        border-radius: 22px;
    }

    .quote-success-dialog h2 {
        font-size: 24px;
    }

    .quote-success-actions {
        flex-direction: column;
    }

    .quote-success-actions .btn {
        width: 100%;
    }
}

/* =========================================================
   COTACAO - FAQ OPEN/CLOSE ICON PROFISSIONAL
========================================================= */

.quote-faq-item summary {
    position: relative;
    padding-right: 64px;
}

/* Remove marcador nativo */
.quote-faq-item summary::-webkit-details-marker {
    display: none;
}

.quote-faq-item summary::marker {
    content: "";
}

/* Botão circular do abrir/fechar */
.quote-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(0, 87, 191, 0.08);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease;
}

/* Estado aberto */
.quote-faq-item[open] summary::after {
    content: "−";
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 87, 191, 0.25);
}

/* Hover elegante */
.quote-faq-item summary:hover::after {
    background: var(--blue);
    color: #ffffff;
}

/* Pequena animação no item aberto */
.quote-faq-item[open] {
    border-color: rgba(0, 87, 191, 0.22);
    box-shadow: 0 18px 38px rgba(11, 63, 120, 0.10);
}

/* Melhora leitura da resposta */
.quote-faq-item[open] p {
    animation: faqAnswerFade 0.22s ease;
}

@keyframes faqAnswerFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajuste mobile */
@media (max-width: 520px) {
    .quote-faq-item summary {
        padding-right: 56px;
    }

    .quote-faq-item summary::after {
        right: 16px;
        width: 30px;
        height: 30px;
        font-size: 22px;
    }
}

/* =========================================================
   COTACAO - SCROLL + CAMPOS PENDENTES
========================================================= */

.quote-form-panel.highlight-missing-fields {
    border-color: rgba(0, 87, 191, 0.22);
    box-shadow: 0 22px 52px rgba(0, 87, 191, 0.12);
}

.quote-complete-notice {
    margin: 18px 0 22px;
    padding: 15px 16px;
    border-radius: 16px;
    background: rgba(0, 87, 191, 0.08);
    border: 1px solid rgba(0, 87, 191, 0.16);
    color: var(--blue-deep);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.quote-complete-notice svg {
    width: 24px;
    height: 24px;
    color: var(--blue);
    flex: 0 0 24px;
    margin-top: 1px;
}

.quote-complete-notice strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 2px;
}

.quote-complete-notice span {
    display: block;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.45;
}

.field-needs-attention {
    position: relative;
}

.field-needs-attention input,
.field-needs-attention select,
.field-needs-attention textarea {
    border-color: rgba(255, 122, 0, 0.65) !important;
    background: rgba(255, 122, 0, 0.035) !important;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.10) !important;
}

.field-needs-attention::after {
    content: "Completar";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.12);
    color: #b45309;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.quote-consent.field-needs-attention {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 122, 0, 0.06);
    border: 1px solid rgba(255, 122, 0, 0.22);
}

.quote-consent.field-needs-attention::after {
    margin-left: auto;
    margin-top: 0;
    flex: 0 0 auto;
}

@media (max-width: 520px) {
    .quote-complete-notice {
        padding: 14px;
        border-radius: 14px;
    }

    .quote-consent.field-needs-attention {
        flex-wrap: wrap;
    }

    .quote-consent.field-needs-attention::after {
        margin-left: 28px;
    }
}

/* =========================================================
   COTACAO - UX FINAL + ANTI-SPAM
========================================================= */

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.quote-submit-btn:disabled,
.quote-submit-btn.is-loading {
    cursor: not-allowed;
    opacity: 0.86;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: quoteBtnSpin 0.75s linear infinite;
}

@keyframes quoteBtnSpin {
    to {
        transform: rotate(360deg);
    }
}

.quote-character-note {
    transition: color 0.2s ease;
}

.quote-character-note.is-near-limit {
    color: #b45309;
    font-weight: 800;
}

/* =========================================================
   COTACAO - AJUSTE FINAL PARA TODOS OS CAMPOS PENDENTES
   Mantém compatibilidade com o JS que adiciona/remove
   .field-needs-attention em qualquer label do formulário.
========================================================= */

.quote-full-form label.field-needs-attention {
    position: relative;
}

.quote-full-form label.field-needs-attention input,
.quote-full-form label.field-needs-attention select,
.quote-full-form label.field-needs-attention textarea {
    border-color: rgba(255, 122, 0, 0.72) !important;
    background: rgba(255, 122, 0, 0.035) !important;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.10) !important;
}

.quote-full-form label.field-needs-attention::after {
    content: "Completar";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.12);
    color: #b45309;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

/* Campo de mensagem: mantém contador e etiqueta organizados */
.quote-message-field.field-needs-attention .quote-character-note {
    color: #b45309;
    font-weight: 800;
}

/* Consentimento: destaque próprio por ser checkbox */
.quote-consent.field-needs-attention {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 122, 0, 0.06);
    border: 1px solid rgba(255, 122, 0, 0.22);
}

.quote-consent.field-needs-attention input {
    box-shadow: none !important;
}

.quote-consent.field-needs-attention::after {
    margin-left: auto;
    margin-top: 0;
    flex: 0 0 auto;
}

/* Transição suave quando o JS remove/adiciona o destaque */
.quote-full-form input,
.quote-full-form select,
.quote-full-form textarea,
.quote-consent {
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        color 0.18s ease;
}

@media (max-width: 520px) {
    .quote-full-form label.field-needs-attention::after {
        margin-top: 8px;
    }

    .quote-consent.field-needs-attention {
        flex-wrap: wrap;
    }

    .quote-consent.field-needs-attention::after {
        margin-left: 28px;
    }
}

/* =========================================================
   HOME - REFINO PREMIUM + HERO SLIDER
   Seguro: apenas CSS, sem alterar lógica/validação.
========================================================= */

.hero {
    min-height: 505px;
    background:
        radial-gradient(circle at 66% 26%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(
            90deg,
            rgba(0, 47, 102, 0.98) 0%,
            rgba(0, 72, 158, 0.92) 36%,
            rgba(0, 77, 166, 0.28) 61%,
            rgba(0, 77, 166, 0.03) 100%
        ),
        url("../images/home-hero.png") center right / cover no-repeat;
}

.hero-inner {
    min-height: 505px;
}

.hero-content {
    width: min(100%, 690px);
}

.hero-slider-track {
    position: relative;
    min-height: 300px;
}

.hero-slide {
    display: none;
    animation: heroSlideFade 0.45s ease;
}

.hero-slide.is-active {
    display: block;
}

@keyframes heroSlideFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.2px;
    backdrop-filter: blur(8px);
}

.hero-eyebrow svg {
    width: 17px;
    height: 17px;
    color: var(--yellow);
}

.hero h1 {
    max-width: 680px;
}

.hero p {
    min-height: 58px;
}

.hero-slider-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0 16px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.hero-slider-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-deep);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-btn:hover {
    transform: translateY(-1px);
    background: #ffffff;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-slider-dots button {
    width: 9px;
    height: 9px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    transition: width 0.22s ease, background 0.22s ease;
}

.hero-slider-dots button.is-active {
    width: 28px;
    background: var(--yellow);
}

/* Hero badges: evita corte de palavras e mantém layout premium */
.hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    gap: 14px;
}

.hero-badges div {
    min-width: 0;
    min-height: 78px;
    padding: 13px 14px;
    align-items: center;
    overflow: hidden;
}

.hero-badges strong {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    font-size: clamp(11px, 0.95vw, 13px);
    line-height: 1.22;
}

/* Porquê escolher: mais premium */
.why-item {
    min-width: 0;
}

.why-icon {
    background:
        linear-gradient(180deg, #ffffff, #eef6ff);
    border: 1px solid rgba(0, 87, 191, 0.08);
    box-shadow: 0 12px 26px rgba(11, 63, 120, 0.08);
}

.why-item h3 {
    font-size: 15px;
}

.why-item p {
    max-width: 260px;
}

/* Pacotes: cards e botões mais profissionais */
.package-card {
    display: flex;
    flex-direction: column;
}

.package-img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.package-card:hover .package-img {
    transform: scale(1.035);
    filter: saturate(1.06);
}

.package-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.package-body p {
    flex: 1;
}

.outline-link {
    min-width: 122px;
    min-height: 42px;
    padding: 0 14px;
    gap: 8px;
    border-radius: 11px;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(11, 63, 120, 0.04);
    position: relative;
    overflow: hidden;
}

.outline-link .outline-arrow {
    transition: transform 0.22s ease;
    font-weight: 900;
}

.outline-link:hover {
    box-shadow: 0 12px 26px rgba(11, 63, 120, 0.12);
}

.outline-link:hover .outline-arrow {
    transform: translateX(3px);
}

.outline-link.blue {
    border: 1px solid rgba(0, 87, 191, 0.45);
    color: var(--blue);
    background: rgba(0, 87, 191, 0.03);
}

.outline-link.green {
    border: 1px solid rgba(19, 168, 91, 0.45);
    color: var(--green);
    background: rgba(19, 168, 91, 0.04);
}

.outline-link.orange {
    border: 1px solid rgba(255, 122, 0, 0.50);
    color: var(--orange);
    background: rgba(255, 122, 0, 0.04);
}

/* Como funciona: refino visual leve */
.step-icon {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step:hover .step-icon {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 45, 82, 0.13);
}

.step h3 {
    color: var(--blue-deep);
}

/* Formulário da Home: refinamento visual */
.quote-card,
.whatsapp-card {
    box-shadow: 0 20px 48px rgba(11, 63, 120, 0.10);
}

.quote-form-footer .btn {
    box-shadow: 0 12px 24px rgba(0, 87, 191, 0.18);
}

/* Footer: consistência visual */
.site-footer a {
    transition: color 0.18s ease, opacity 0.18s ease;
}

.site-footer a:hover {
    color: #ffffff;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero-badges {
        max-width: 520px;
    }

    .hero-badges div {
        min-height: 76px;
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: auto;
        background:
            linear-gradient(
                90deg,
                rgba(0, 55, 120, 0.98) 0%,
                rgba(0, 73, 159, 0.90) 55%,
                rgba(0, 73, 159, 0.34) 100%
            ),
            url("../images/home-hero.png") center right / cover no-repeat;
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-slider-track {
        min-height: 330px;
    }

    .hero-eyebrow {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .hero p {
        min-height: 0;
    }

    .hero-slider-controls {
        margin-bottom: 14px;
    }

    .hero-badges {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .hero-badges div {
        min-height: 62px;
        padding: 12px 14px;
    }

    .hero-badges strong {
        font-size: 13px;
        overflow-wrap: normal;
    }

    .package-body {
        min-height: 178px;
    }
}

@media (max-width: 480px) {
    .hero-slider-track {
        min-height: 355px;
    }

    .hero-slider-controls {
        width: 100%;
        justify-content: center;
    }

    .hero-badges strong {
        font-size: 12.5px;
    }
}

/* =========================================================
   HOME - IMAGENS DIFERENTES POR SLIDE DO HERO
========================================================= */

/* Fallback: imagem do primeiro slide */
.hero {
    background:
        radial-gradient(circle at 66% 26%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(
            90deg,
            rgba(0, 47, 102, 0.98) 0%,
            rgba(0, 72, 158, 0.92) 36%,
            rgba(0, 77, 166, 0.28) 61%,
            rgba(0, 77, 166, 0.03) 100%
        ),
        url("../images/home-hero.png") center right / cover no-repeat;
}

/* Slide 1: viagens completas / passagens */
.hero:has(.hero-slider-track .hero-slide:nth-child(1).is-active),
.hero:has(.hero-slide-passagens.is-active) {
    background:
        radial-gradient(circle at 66% 26%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(
            90deg,
            rgba(0, 47, 102, 0.98) 0%,
            rgba(0, 72, 158, 0.92) 36%,
            rgba(0, 77, 166, 0.28) 61%,
            rgba(0, 77, 166, 0.03) 100%
        ),
        url("../images/home-hero.png") center right / cover no-repeat;
}

/* Slide 2: assistência aeroportuária */
.hero:has(.hero-slider-track .hero-slide:nth-child(2).is-active),
.hero:has(.hero-slide-turismo-lazer.is-active) {
    background:
        radial-gradient(circle at 66% 26%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(
            90deg,
            rgba(0, 47, 102, 0.98) 0%,
            rgba(0, 72, 158, 0.92) 36%,
            rgba(0, 77, 166, 0.25) 61%,
            rgba(0, 77, 166, 0.03) 100%
        ),
        url("../images/home-hero-turismo-lazer.png") center right / cover no-repeat;
}

/* Slide 3: turismo e lazer */
.hero:has(.hero-slider-track .hero-slide:nth-child(3).is-active),
.hero:has(.hero-slide-viagens-corporativas.is-active) {
    background:
        radial-gradient(circle at 66% 26%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(
            90deg,
            rgba(0, 47, 102, 0.98) 0%,
            rgba(0, 72, 158, 0.90) 36%,
            rgba(0, 77, 166, 0.22) 61%,
            rgba(0, 77, 166, 0.02) 100%
        ),
        url("../images/home-hero-viagens-corporativas.png") center right / cover no-repeat;
}

/* Slide 4: viagens corporativas */
.hero:has(.hero-slider-track .hero-slide:nth-child(4).is-active),
.hero:has(.hero-slide-assistencia-aeroportuaria.is-active) {
    background:
        radial-gradient(circle at 66% 26%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(
            90deg,
            rgba(0, 47, 102, 0.98) 0%,
            rgba(0, 72, 158, 0.90) 36%,
            rgba(0, 77, 166, 0.23) 61%,
            rgba(0, 77, 166, 0.02) 100%
        ),
        url("../images/home-hero-assistencia-aeroportuaria.png") center right / cover no-repeat;
}

/* Transição mais suave entre imagens */
.hero {
    transition: background-image 0.55s ease, background 0.55s ease;
}

/* Ajuste mobile: manter leitura do texto e foco na imagem */
@media (max-width: 820px) {
    .hero,
    .hero:has(.hero-slider-track .hero-slide:nth-child(1).is-active),
    .hero:has(.hero-slide-passagens.is-active) {
        background:
            linear-gradient(
                90deg,
                rgba(0, 55, 120, 0.98) 0%,
                rgba(0, 73, 159, 0.90) 55%,
                rgba(0, 73, 159, 0.36) 100%
            ),
            url("../images/home-hero-passagens.png") center right / cover no-repeat;
    }

    .hero:has(.hero-slider-track .hero-slide:nth-child(2).is-active),
    .hero:has(.hero-slide-assistencia-aeroportuaria.is-active) {
        background:
            linear-gradient(
                90deg,
                rgba(0, 55, 120, 0.98) 0%,
                rgba(0, 73, 159, 0.90) 55%,
                rgba(0, 73, 159, 0.36) 100%
            ),
            url("../images/home-hero-assistencia-aeroportuaria.png") center right / cover no-repeat;
    }

    .hero:has(.hero-slider-track .hero-slide:nth-child(3).is-active),
    .hero:has(.hero-slide-turismo-lazer.is-active) {
        background:
            linear-gradient(
                90deg,
                rgba(0, 55, 120, 0.98) 0%,
                rgba(0, 73, 159, 0.90) 55%,
                rgba(0, 73, 159, 0.36) 100%
            ),
            url("../images/home-hero-turismo-lazer.png") center right / cover no-repeat;
    }

    .hero:has(.hero-slider-track .hero-slide:nth-child(4).is-active),
    .hero:has(.hero-slide-viagens-corporativas.is-active) {
        background:
            linear-gradient(
                90deg,
                rgba(0, 55, 120, 0.98) 0%,
                rgba(0, 73, 159, 0.90) 55%,
                rgba(0, 73, 159, 0.36) 100%
            ),
            url("../images/home-hero-viagens-corporativas.png") center right / cover no-repeat;
    }
}

@media (max-width: 480px) {
    .hero,
    .hero:has(.hero-slider-track .hero-slide:nth-child(1).is-active),
    .hero:has(.hero-slide-passagens.is-active),
    .hero:has(.hero-slider-track .hero-slide:nth-child(2).is-active),
    .hero:has(.hero-slide-assistencia-aeroportuaria.is-active),
    .hero:has(.hero-slider-track .hero-slide:nth-child(3).is-active),
    .hero:has(.hero-slide-turismo-lazer.is-active),
    .hero:has(.hero-slider-track .hero-slide:nth-child(4).is-active),
    .hero:has(.hero-slide-viagens-corporativas.is-active) {
        background-position: 62% center;
    }
}

/* =========================================================
   HOME - CONVERSÃO PREMIUM
========================================================= */

.hero-trust-line {
    margin-top: -10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.section-subtitle {
    max-width: 640px;
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.package-meta {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    padding: 12px 13px;
    border-radius: 14px;
    background: #f6f9fe;
    border: 1px solid rgba(0, 87, 191, 0.08);
}

.package-meta span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.package-meta strong {
    color: var(--blue-deep);
    font-weight: 900;
}

.package-request-form,
.destination-request-form {
    margin: 0;
}

.package-request-form button,
.destination-request-form button {
    font: inherit;
    cursor: pointer;
}

.package-request-form .outline-link {
    border-style: solid;
}

.destinations-section {
    background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
    padding-top: 34px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.destination-card {
    min-height: 220px;
    border-radius: 20px;
    padding: 22px;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.32), transparent 24%),
        linear-gradient(135deg, #ffffff, #f6f9fe);
    border: 1px solid var(--border);
    box-shadow: 0 16px 34px rgba(11, 63, 120, 0.08);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(11, 63, 120, 0.13);
}

.destination-card.blue {
    border-top: 5px solid var(--blue);
}

.destination-card.green {
    border-top: 5px solid var(--green);
}

.destination-card.orange {
    border-top: 5px solid var(--orange);
}

.destination-card-top {
    margin-bottom: 18px;
}

.destination-card-top span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(0, 87, 191, 0.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.destination-card.green .destination-card-top span {
    background: rgba(19, 168, 91, 0.10);
    color: var(--green);
}

.destination-card.orange .destination-card-top span {
    background: rgba(255, 122, 0, 0.11);
    color: var(--orange);
}

.destination-card h3 {
    margin: 0 0 8px;
    color: var(--blue-deep);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
}

.destination-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    flex: 1;
}

.destination-link {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(0, 87, 191, 0.22);
    border-radius: 12px;
    background: #ffffff;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease;
}

.destination-card.green .destination-link {
    color: var(--green);
    border-color: rgba(19, 168, 91, 0.26);
}

.destination-card.orange .destination-link {
    color: var(--orange);
    border-color: rgba(255, 122, 0, 0.28);
}

.destination-link:hover {
    transform: translateY(-2px);
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 87, 191, 0.18);
}

.destination-card.green .destination-link:hover {
    background: var(--green);
}

.destination-card.orange .destination-link:hover {
    background: var(--orange);
}

.destination-link span {
    transition: transform 0.22s ease;
}

.destination-link:hover span {
    transform: translateX(3px);
}

.quote-mini-form .btn:disabled,
.quote-mini-form .btn.is-loading,
.package-request-form button:disabled,
.package-request-form button.is-loading,
.destination-request-form button:disabled,
.destination-request-form button.is-loading {
    cursor: not-allowed;
    opacity: 0.86;
}

@media (max-width: 1024px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .destinations-section {
        background: #edf4fb;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        border-radius: 22px;
    }

    .hero-trust-line {
        font-size: 12px;
        max-width: 320px;
    }
}

/* =========================================================
   HOME - CORREÇÃO HOVER BOTÕES DESTINOS POPULARES
========================================================= */

.destination-card .destination-link:hover,
.destination-card .destination-link:hover span,
.destination-card.green .destination-link:hover,
.destination-card.green .destination-link:hover span,
.destination-card.orange .destination-link:hover,
.destination-card.orange .destination-link:hover span {
    color: #ffffff !important;
}

.destination-card.blue .destination-link:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.destination-card.green .destination-link:hover {
    background: var(--green);
    border-color: var(--green);
}

.destination-card.orange .destination-link:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.destination-card .destination-link:focus-visible,
.destination-card.green .destination-link:focus-visible,
.destination-card.orange .destination-link:focus-visible {
    color: #ffffff !important;
}

/* =========================================================
   PACOTES TURÍSTICOS - PÁGINA COMPLETA
========================================================= */

.packages-hero {
    min-height: 360px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 64, 138, 0.88) 43%,
            rgba(0, 87, 191, 0.30) 70%,
            rgba(0, 87, 191, 0.06) 100%
        ),
        url("../images/home-hero-turismo-lazer.png") center right / cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.packages-hero-inner {
    min-height: 360px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.packages-hero-content {
    max-width: 760px;
    padding: 56px 0 86px;
}

.packages-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -1.6px;
    font-weight: 900;
}

.packages-hero p {
    margin: 0;
    max-width: 700px;
    font-size: 23px;
    line-height: 1.38;
}

.packages-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
}

.packages-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.38);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.packages-hero-points span:last-child {
    border-right: 0;
    padding-right: 0;
}

.packages-hero-points svg {
    width: 34px;
    height: 34px;
    color: var(--yellow);
    flex: 0 0 34px;
}

.packages-search-section {
    margin-top: -42px;
    position: relative;
    z-index: 5;
}

.packages-search-card {
    background: #ffffff;
    border: 1px solid rgba(0, 46, 99, 0.10);
    border-radius: 20px;
    box-shadow: 0 22px 52px rgba(11, 63, 120, 0.18);
    padding: 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.packages-search-card label {
    display: block;
    color: #18345f;
    font-size: 13px;
    font-weight: 900;
}

.packages-search-card input,
.packages-search-card select {
    min-height: 52px;
    border-radius: 12px;
    margin-top: 8px;
}

.packages-search-btn {
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), #003f8e);
    color: #ffffff;
    font-weight: 900;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 28px rgba(0, 87, 191, 0.24);
    transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.packages-search-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 18px 36px rgba(0, 87, 191, 0.28);
}

.packages-search-btn svg {
    width: 18px;
    height: 18px;
}

.packages-page-content {
    background: linear-gradient(180deg, #f6faff 0%, #ffffff 24%, #f6faff 100%);
    padding-top: 22px;
}

.packages-list-section {
    padding: 22px 0 10px;
}

.packages-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 18px;
}

.packages-section-heading h2 {
    margin: 0 0 5px;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 900;
}

.packages-section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.tour-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tour-package-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(11, 63, 120, 0.09);
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tour-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(11, 63, 120, 0.14);
}

.tour-package-card.blue:hover { border-color: rgba(0, 87, 191, 0.34); }
.tour-package-card.green:hover { border-color: rgba(19, 168, 91, 0.34); }
.tour-package-card.orange:hover { border-color: rgba(255, 122, 0, 0.38); }

.tour-package-image {
    height: 170px;
    background-size: cover;
    background-position: center;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.tour-package-card:hover .tour-package-image {
    transform: scale(1.035);
    filter: saturate(1.08);
}

.tour-package-body {
    padding: 18px 18px 20px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.tour-package-body h3 {
    margin: 0 0 7px;
    color: var(--blue);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.18;
}

.tour-package-card.green .tour-package-body h3 { color: var(--green); }
.tour-package-card.orange .tour-package-body h3 { color: var(--orange); }

.tour-package-body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    flex: 1;
}

.tour-package-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-bottom: 12px;
}

.tour-package-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 700;
}

.tour-package-meta svg {
    width: 15px;
    height: 15px;
    color: var(--blue);
}

.tour-package-card.green .tour-package-meta svg { color: var(--green); }
.tour-package-card.orange .tour-package-meta svg { color: var(--orange); }

.tour-package-includes {
    margin-bottom: 15px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.45;
}

.tour-package-includes strong {
    color: var(--blue-deep);
    font-weight: 900;
}

.tour-package-request-form {
    margin: 0;
}

.tour-package-btn {
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    font-size: 13px;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.tour-package-btn.blue {
    border: 1px solid rgba(0, 87, 191, 0.40);
    color: var(--blue);
}

.tour-package-btn.green {
    border: 1px solid rgba(19, 168, 91, 0.40);
    color: var(--green);
}

.tour-package-btn.orange {
    border: 1px solid rgba(255, 122, 0, 0.45);
    color: var(--orange);
}

.tour-package-btn:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(11, 63, 120, 0.12);
}

.tour-package-btn.blue:hover { background: var(--blue); }
.tour-package-btn.green:hover { background: var(--green); }
.tour-package-btn.orange:hover { background: var(--orange); }

.tour-package-btn span {
    transition: transform 0.2s ease;
}

.tour-package-btn:hover span {
    transform: translateX(3px);
}

.packages-feature-strip {
    padding: 26px 0 22px;
}

.packages-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(11, 63, 120, 0.08);
    overflow: hidden;
}

.packages-feature-item {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #edf2f8;
}

.packages-feature-item:last-child {
    border-right: 0;
}

.packages-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 60px;
    background: rgba(0, 87, 191, 0.08);
    color: var(--blue);
}

.packages-feature-icon.green {
    background: rgba(19, 168, 91, 0.10);
    color: var(--green);
}

.packages-feature-icon.orange {
    background: rgba(255, 122, 0, 0.10);
    color: var(--orange);
}

.packages-feature-icon svg {
    width: 28px;
    height: 28px;
}

.packages-feature-item h3 {
    margin: 0 0 5px;
    color: var(--blue-deep);
    font-size: 16px;
    font-weight: 900;
}

.packages-feature-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.packages-testimonials-section {
    padding: 22px 0 28px;
}

.packages-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.packages-testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(11, 63, 120, 0.08);
    padding: 22px;
}

.packages-testimonial-card > p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
}

.packages-testimonial-footer {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
}

.packages-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.packages-testimonial-footer strong {
    display: block;
    color: var(--blue-deep);
    font-weight: 900;
}

.packages-testimonial-footer span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

.packages-stars {
    color: #ffc31a;
    letter-spacing: 1px;
    font-size: 14px;
}

.packages-final-cta {
    padding: 14px 0 0;
    background: #f6faff;
}

.packages-final-cta-box {
    min-height: 170px;
    border-radius: 22px 22px 0 0;
    background:
        linear-gradient(90deg, rgba(0, 47, 100, 0.98), rgba(0, 72, 158, 0.86)),
        url("../images/corporate-banner.png") center right / cover no-repeat;
    color: #ffffff;
    display: grid;
    grid-template-columns: 86px 1fr 320px;
    align-items: center;
    gap: 24px;
    padding: 30px;
    overflow: hidden;
}

.packages-final-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.78);
    display: grid;
    place-items: center;
}

.packages-final-icon svg {
    width: 42px;
    height: 42px;
}

.packages-final-copy h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    font-weight: 900;
}

.packages-final-copy p {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.packages-final-copy strong {
    color: var(--yellow);
}

.packages-final-whatsapp {
    background: rgba(8, 145, 76, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.packages-final-whatsapp span {
    display: block;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 12px;
}

.packages-final-whatsapp a {
    min-height: 48px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    font-size: 18px;
    font-weight: 900;
}

.packages-final-whatsapp svg {
    width: 22px;
    height: 22px;
}

.tour-package-request-form button:disabled,
.tour-package-request-form button.is-loading,
.packages-search-btn:disabled,
.packages-search-btn.is-loading {
    cursor: not-allowed;
    opacity: 0.86;
}

@media (max-width: 1100px) {
    .packages-search-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-search-btn {
        grid-column: 1 / -1;
    }

    .tour-package-grid,
    .packages-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-feature-item:nth-child(2) {
        border-right: 0;
    }

    .packages-feature-item:nth-child(1),
    .packages-feature-item:nth-child(2) {
        border-bottom: 1px solid #edf2f8;
    }

    .packages-final-cta-box {
        grid-template-columns: 76px 1fr;
    }

    .packages-final-whatsapp {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .packages-hero {
        width: calc(100% - 24px);
        margin: 12px auto 0;
        border-radius: 24px;
        min-height: auto;
        box-shadow: 0 18px 42px rgba(0, 46, 99, 0.18);
    }

    .packages-hero-inner {
        min-height: auto;
    }

    .packages-hero-content {
        padding: 42px 0 86px;
    }

    .packages-hero h1 {
        font-size: 40px;
    }

    .packages-hero p {
        font-size: 17px;
        max-width: 410px;
    }

    .packages-hero-points {
        flex-direction: column;
        gap: 12px;
    }

    .packages-hero-points span {
        border-right: 0;
        padding-right: 0;
    }

    .packages-search-section {
        margin-top: -52px;
    }

    .packages-search-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
        padding: 18px;
    }

    .packages-page-content {
        background: #edf4fb;
    }

    .packages-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .tour-package-grid,
    .packages-testimonial-grid,
    .packages-feature-grid {
        grid-template-columns: 1fr;
    }

    .tour-package-card,
    .packages-testimonial-card,
    .packages-feature-grid {
        border-radius: 22px;
    }

    .packages-feature-item,
    .packages-feature-item:nth-child(1),
    .packages-feature-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #edf2f8;
    }

    .packages-feature-item:last-child {
        border-bottom: 0;
    }

    .packages-final-cta {
        padding: 12px 0;
        background: #edf4fb;
    }

    .packages-final-cta-box {
        width: min(100%, calc(100% - 24px));
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 26px 20px;
        text-align: left;
    }

    .packages-final-copy p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .packages-hero h1 {
        font-size: 34px;
    }

    .packages-search-card input,
    .packages-search-card select,
    .packages-search-btn {
        min-height: 48px;
    }

    .tour-package-meta {
        grid-template-columns: 1fr;
    }

    .packages-testimonial-footer {
        grid-template-columns: 44px 1fr;
    }

    .packages-stars {
        grid-column: 2;
    }
}

/* =========================================================
   PACOTES - AJUSTES FINAIS CONSOLIDADOS
========================================================= */

.packages-page-content {
    background: linear-gradient(180deg, #f6faff 0%, #f6faff 42%, #ffffff 100%);
    padding-top: 28px;
}

.packages-hero {
    min-height: 370px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 64, 138, 0.91) 42%,
            rgba(0, 87, 191, 0.42) 70%,
            rgba(0, 87, 191, 0.10) 100%
        ),
        url("../images/home-hero-turismo-lazer.png") center right / cover no-repeat;
}

.packages-hero-content {
    max-width: 820px;
    padding-bottom: 98px;
}

.packages-hero-points {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
}

.packages-hero-points span {
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.34);
    padding-right: 22px;
    font-size: 14px;
}

.packages-hero-points span:last-child {
    border-right: 0;
    padding-right: 0;
}

.packages-hero-points svg {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
}

.packages-hero-trust {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    backdrop-filter: blur(8px);
}

.packages-search-section {
    background: #f6faff;
    margin-top: -24px;
    padding-top: 0;
    padding-bottom: 24px;
    position: relative;
    z-index: 5;
}

.packages-search-card {
    position: relative;
    z-index: 6;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(11, 63, 120, 0.11);
    grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
}

.packages-search-actions {
    display: flex;
    align-items: end;
}

.packages-search-btn {
    min-width: 150px;
    width: 100%;
}

.packages-global-empty-message {
    display: none;
    width: min(100%, 980px);
    max-width: 980px;
    margin: 18px auto 0;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fff8ed;
    border: 1px solid rgba(255, 122, 0, 0.22);
    color: #9a4a00;
    box-shadow: 0 12px 26px rgba(255, 122, 0, 0.06);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.packages-global-empty-message.is-visible {
    display: block;
}

.packages-list-section {
    padding: 24px 0 18px;
}

.packages-list-section.has-no-visible-packages {
    display: none;
}

.packages-section-heading {
    margin-bottom: 20px;
}

.tour-package-card {
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(11, 63, 120, 0.08);
}

.tour-package-image {
    height: 176px;
}

.tour-package-body {
    padding: 18px 18px 21px;
}

.tour-package-btn,
.tour-package-request-form button:disabled,
.tour-package-request-form button.is-loading,
.packages-search-btn:disabled,
.packages-search-btn.is-loading {
    cursor: pointer;
}

.tour-package-btn:disabled,
.tour-package-btn.is-loading,
.tour-package-request-form button:disabled,
.tour-package-request-form button.is-loading,
.packages-search-btn:disabled,
.packages-search-btn.is-loading {
    cursor: not-allowed;
    opacity: 0.86;
}

.tour-package-btn:hover,
.tour-package-btn:hover span {
    color: #ffffff !important;
}

.tour-package-btn .btn-spinner {
    width: 16px;
    height: 16px;
}

.packages-search-btn.is-loading,
.tour-package-btn.is-loading {
    gap: 9px;
}

.packages-stars {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    color: #ffc31a;
}

.packages-stars svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: currentColor;
    filter: drop-shadow(0 1px 2px rgba(255, 195, 26, 0.25));
}

.packages-final-cta {
    padding: 30px 0 34px;
    background: #f6faff;
    border-bottom: 1px solid rgba(0, 46, 99, 0.10);
}

.packages-final-cta-box {
    border-radius: 24px;
    box-shadow: 0 22px 52px rgba(0, 47, 100, 0.18);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

@media (max-width: 1180px) {
    .packages-hero-points {
        gap: 16px;
    }

    .packages-hero-points span {
        font-size: 13px;
        padding-right: 16px;
    }
}

@media (max-width: 1100px) {
    .packages-search-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-search-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .packages-hero-points {
        flex-wrap: wrap;
    }

    .packages-global-empty-message {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

@media (max-width: 820px) {
    .packages-hero {
        min-height: auto;
        background:
            linear-gradient(
                90deg,
                rgba(0, 47, 100, 0.98) 0%,
                rgba(0, 64, 138, 0.90) 58%,
                rgba(0, 87, 191, 0.34) 100%
            ),
            url("../images/home-hero-turismo-lazer.png") center right / cover no-repeat;
    }

    .packages-hero-content {
        padding: 40px 0 88px;
    }

    .packages-hero-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .packages-hero-points span {
        white-space: normal;
        border-right: 0;
        padding-right: 0;
    }

    .packages-hero-trust {
        border-radius: 16px;
        font-size: 12.5px;
        max-width: 360px;
    }

    .packages-search-section {
        margin-top: -34px;
        background: #edf4fb;
        padding-bottom: 22px;
    }

    .packages-search-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .packages-page-content,
    .packages-final-cta {
        background: #edf4fb;
    }

    .tour-package-image {
        height: 190px;
    }

    .packages-global-empty-message {
        white-space: normal;
        text-align: left;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .packages-hero h1 {
        font-size: 33px;
    }

    .packages-hero-content {
        padding-bottom: 84px;
    }

    .packages-hero-trust {
        width: 100%;
    }

    .packages-search-card {
        padding: 16px;
    }

    .packages-final-cta {
        padding-bottom: 24px;
    }

    .packages-stars {
        justify-content: flex-start;
    }

    .packages-stars svg {
        width: 14px;
        height: 14px;
        flex-basis: 14px;
    }
}

/* =========================================================
   PACOTES - FILTRO ESTILO MOCKUP
========================================================= */

.packages-search-section {
    position: relative;
    z-index: 8;
    margin-top: -58px;
    padding: 0 0 34px;
    background: transparent;
}

.packages-search-section .container {
    position: relative;
    z-index: 2;
}

.packages-search-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 46, 99, 0.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 26px 70px rgba(11, 63, 120, 0.20);
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr 170px;
    gap: 16px;
    align-items: end;
}

.packages-search-card label {
    display: block;
    margin: 0;
    color: #18345f;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.packages-search-card input,
.packages-search-card select {
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    padding: 0 14px;
    border: 1px solid #dce5f2;
    border-radius: 13px;
    background: #ffffff;
    color: var(--text);
    box-shadow: none;
}

.packages-search-card input:focus,
.packages-search-card select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 87, 191, 0.10);
}

.packages-search-actions {
    display: flex;
    align-items: end;
    width: 100%;
}

.packages-search-btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--blue), #003f8e);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 16px 32px rgba(0, 87, 191, 0.26);
}

.packages-search-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 20px 40px rgba(0, 87, 191, 0.30);
}

.packages-search-btn svg {
    width: 18px;
    height: 18px;
}

/* Mensagem de filtro vazio alinhada com o card */
.packages-global-empty-message {
    width: min(100%, 980px);
    max-width: 980px;
    margin: 16px auto 0;
    padding: 13px 18px;
    border-radius: 14px;
    background: #fff8ed;
    border: 1px solid rgba(255, 122, 0, 0.22);
    color: #9a4a00;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 12px 26px rgba(255, 122, 0, 0.06);
}

/* Fundo da área abaixo do filtro continua suave */
.packages-page-content {
    margin-top: -10px;
    padding-top: 42px;
    background:
        linear-gradient(180deg, #f6faff 0%, #f6faff 46%, #ffffff 100%);
}

/* Responsivo */
@media (max-width: 1180px) {
    .packages-search-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-search-actions {
        grid-column: 1 / -1;
    }

    .packages-search-btn {
        width: 100%;
    }

    .packages-global-empty-message {
        white-space: normal;
    }
}

@media (max-width: 820px) {
    .packages-search-section {
        margin-top: -48px;
        padding-bottom: 26px;
    }

    .packages-search-card {
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 18px;
        box-shadow: 0 20px 48px rgba(11, 63, 120, 0.16);
    }

    .packages-search-card input,
    .packages-search-card select,
    .packages-search-btn {
        min-height: 50px;
    }

    .packages-global-empty-message {
        text-align: left;
        font-size: 13px;
        white-space: normal;
    }

    .packages-page-content {
        margin-top: 0;
        padding-top: 26px;
        background: #edf4fb;
    }
}

@media (max-width: 480px) {
    .packages-search-section {
        margin-top: -42px;
    }

    .packages-search-card {
        padding: 16px;
    }
}

/* =========================================================
   SERVIÇOS - PÁGINA COMPLETA
========================================================= */

.services-page-hero {
    min-height: 420px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 69, 150, 0.92) 42%,
            rgba(0, 87, 191, 0.34) 70%,
            rgba(0, 87, 191, 0.08) 100%
        ),
        url("../images/home-hero-passagens.png") center right / cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-page-hero-inner {
    min-height: 420px;
    display: flex;
    align-items: center;
}

.services-page-hero-content {
    width: min(100%, 650px);
    padding: 58px 0;
}

.services-page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.04;
    letter-spacing: -1.6px;
    font-weight: 900;
}

.services-page-hero p {
    margin: 0;
    max-width: 620px;
    font-size: 21px;
    line-height: 1.5;
}

.services-page-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.services-page {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6faff 48%, #ffffff 100%);
}

.services-categories-section {
    padding: 42px 0 16px;
}

.service-category-row {
    display: grid;
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-bottom: 34px;
}

.service-category-image {
    border-radius: 18px;
    overflow: hidden;
    min-height: 230px;
    box-shadow: 0 18px 38px rgba(11, 63, 120, 0.12);
}

.service-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-category-content {
    min-width: 0;
}

.service-category-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.service-category-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    color: #ffffff;
    background: var(--blue);
    box-shadow: 0 14px 28px rgba(0, 87, 191, 0.22);
}

.service-category-green .service-category-icon {
    background: var(--green);
    box-shadow: 0 14px 28px rgba(19, 168, 91, 0.20);
}

.service-category-orange .service-category-icon {
    background: var(--orange);
    box-shadow: 0 14px 28px rgba(255, 122, 0, 0.20);
}

.service-category-icon svg {
    width: 30px;
    height: 30px;
}

.service-category-heading h2 {
    margin: 0 0 4px;
    color: var(--blue-deep);
    font-size: 30px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.service-category-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.service-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-mini-card {
    min-height: 178px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 16px 18px;
    text-align: center;
    box-shadow: 0 14px 32px rgba(11, 63, 120, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(11, 63, 120, 0.13);
}

.service-mini-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    color: var(--blue);
}

.service-category-green .service-mini-icon,
.service-category-green .service-mini-card h3 {
    color: var(--green);
}

.service-category-orange .service-mini-icon,
.service-category-orange .service-mini-card h3 {
    color: var(--orange);
}

.service-mini-icon svg {
    width: 42px;
    height: 42px;
}

.service-mini-card h3 {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}

.service-mini-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    flex: 1;
}

.service-request-form {
    margin: 14px 0 0;
}

.service-request-form button {
    border: 0;
    background: transparent;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    padding: 0;
    cursor: pointer;
}

.service-category-green .service-request-form button {
    color: var(--green);
}

.service-category-orange .service-request-form button {
    color: var(--orange);
}

.services-workflow-section {
    padding: 20px 0 34px;
    background: #ffffff;
}

.services-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}

.services-workflow-grid::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 10%;
    right: 10%;
    border-top: 2px dashed rgba(0, 87, 191, 0.20);
}

.services-workflow-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.services-workflow-number {
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #ffffff;
    font-weight: 900;
}

.services-workflow-green .services-workflow-number {
    background: var(--green);
}

.services-workflow-orange .services-workflow-number {
    background: var(--orange);
}

.services-workflow-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid rgba(0, 87, 191, 0.18);
    color: var(--blue);
    display: grid;
    place-items: center;
    box-shadow: 0 14px 28px rgba(11, 63, 120, 0.08);
}

.services-workflow-green .services-workflow-icon {
    border-color: rgba(19, 168, 91, 0.22);
    color: var(--green);
}

.services-workflow-orange .services-workflow-icon {
    border-color: rgba(255, 122, 0, 0.22);
    color: var(--orange);
}

.services-workflow-icon svg {
    width: 34px;
    height: 34px;
}

.services-workflow-item h3 {
    margin: 0 0 8px;
    color: var(--blue-deep);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.services-workflow-item p {
    margin: 0 auto;
    max-width: 230px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.services-final-cta {
    padding: 12px 0 42px;
    background: #ffffff;
}

.services-final-cta-box {
    min-height: 220px;
    border-radius: 24px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 72, 158, 0.86) 48%,
            rgba(0, 87, 191, 0.22) 100%
        ),
        url("../images/home-hero-turismo-lazer.png") center right / cover no-repeat;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 34px 40px;
    box-shadow: 0 22px 52px rgba(0, 47, 100, 0.18);
    overflow: hidden;
}

.services-final-copy {
    max-width: 620px;
}

.services-final-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.08;
    font-weight: 900;
}

.services-final-copy p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.services-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 1180px) {
    .service-category-row {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .service-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-category-image {
        min-height: 320px;
    }
}

@media (max-width: 820px) {
    .services-page-hero {
        width: calc(100% - 24px);
        min-height: auto;
        margin: 12px auto 0;
        border-radius: 24px;
        background:
            linear-gradient(
                90deg,
                rgba(0, 47, 100, 0.98) 0%,
                rgba(0, 69, 150, 0.90) 58%,
                rgba(0, 87, 191, 0.34) 100%
            ),
            url("../images/home-hero-passagens.png") center right / cover no-repeat;
        box-shadow: 0 18px 42px rgba(0, 46, 99, 0.18);
    }

    .services-page-hero-inner {
        min-height: auto;
    }

    .services-page-hero-content {
        padding: 40px 0;
    }

    .services-page-hero h1 {
        font-size: 40px;
    }

    .services-page-hero p {
        font-size: 16px;
        max-width: 380px;
    }

    .services-page-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 12px;
    }

    .services-categories-section {
        padding-top: 28px;
    }

    .service-category-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 28px;
    }

    .service-category-image {
        min-height: 220px;
        border-radius: 22px;
    }

    .service-category-heading {
        align-items: flex-start;
    }

    .service-category-heading h2 {
        font-size: 25px;
    }

    .service-mini-grid,
    .services-workflow-grid {
        grid-template-columns: 1fr;
    }

    .services-workflow-grid::before {
        display: none;
    }

    .service-mini-card,
    .services-final-cta-box {
        border-radius: 22px;
    }

    .services-final-cta {
        padding-bottom: 24px;
        background: #edf4fb;
    }

    .services-final-cta-box {
        width: min(100%, calc(100% - 24px));
        padding: 28px 20px;
        min-height: 260px;
    }

    .services-final-actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .services-page-hero h1 {
        font-size: 34px;
    }

    .services-page-hero-content {
        padding: 34px 0;
    }

    .service-category-image {
        min-height: 190px;
    }

    .service-category-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .service-category-icon svg {
        width: 27px;
        height: 27px;
    }
}

/* =========================================================
   SERVIÇOS - BOTÕES PREMIUM DOS CARDS
========================================================= */

.service-request-form {
    margin: 16px 0 0;
}

.service-request-form button {
    width: 100%;
    min-height: 38px;
    border: 1px solid rgba(0, 87, 191, 0.26);
    border-radius: 999px;
    background: rgba(0, 87, 191, 0.04);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.service-request-form button span {
    transition: transform 0.22s ease;
}

.service-request-form button:hover {
    transform: translateY(-2px);
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 87, 191, 0.18);
}

.service-request-form button:hover span {
    transform: translateX(3px);
}

.service-category-green .service-request-form button {
    border-color: rgba(19, 168, 91, 0.28);
    background: rgba(19, 168, 91, 0.05);
    color: var(--green);
}

.service-category-green .service-request-form button:hover {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(19, 168, 91, 0.18);
}

.service-category-orange .service-request-form button {
    border-color: rgba(255, 122, 0, 0.32);
    background: rgba(255, 122, 0, 0.05);
    color: var(--orange);
}

.service-category-orange .service-request-form button:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(255, 122, 0, 0.18);
}

.service-request-form button:disabled,
.service-request-form button.is-loading {
    cursor: not-allowed;
    opacity: 0.86;
}

/* =========================================================
   SERVIÇOS - IMAGENS PRÓPRIAS DA PÁGINA
========================================================= */

.services-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 69, 150, 0.92) 42%,
            rgba(0, 87, 191, 0.34) 70%,
            rgba(0, 87, 191, 0.08) 100%
        ),
        url("../images/servicos-hero.png") center right / cover no-repeat;
}

.services-final-cta-box {
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 72, 158, 0.86) 48%,
            rgba(0, 87, 191, 0.22) 100%
        ),
        url("../images/servicos-cta.png") center right / cover no-repeat;
}

@media (max-width: 820px) {
    .services-page-hero {
        background:
            linear-gradient(
                90deg,
                rgba(0, 47, 100, 0.98) 0%,
                rgba(0, 69, 150, 0.90) 58%,
                rgba(0, 87, 191, 0.34) 100%
            ),
            url("../images/servicos-hero.png") center right / cover no-repeat;
    }
}

/* =========================================================
   FOOTER - VERSÃO PREMIUM
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 195, 26, 0.14), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(19, 168, 91, 0.14), transparent 28%),
        linear-gradient(180deg, #003b7c 0%, #002b5b 100%);
    color: #ffffff;
    padding-top: 46px;
}

.footer-top-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 195, 26, 0.75), rgba(19, 168, 91, 0.65), transparent);
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.15fr;
    gap: 42px;
    padding-bottom: 34px;
    align-items: flex-start;
}

.footer-brand img {
    width: 176px !important;
    max-width: 176px !important;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    margin: 0 0 18px;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.58;
    font-size: 14px;
}

.footer-trust-badges {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.footer-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 900;
}

.footer-trust-badges svg {
    width: 16px;
    height: 16px;
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: grid;
    place-items: center;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--blue);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.social-links a:last-child:hover {
    background: var(--green);
}

.social-links a svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor;
}

.site-footer h4 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
}

.site-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--yellow), var(--green));
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list {
    display: grid;
    gap: 9px;
}

.footer-link-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    transition: color 0.18s ease, transform 0.18s ease;
}

.footer-link-list a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 195, 26, 0.78);
    flex: 0 0 7px;
}

.footer-link-list a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-service-list {
    display: grid;
    gap: 10px;
}

.footer-service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.35;
}

.footer-service-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--yellow);
}

.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.45;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--yellow);
}

.footer-contact-icon svg {
    width: 19px;
    height: 19px;
}

.footer-contact small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.90);
    font-weight: 800;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-whatsapp-card {
    margin-top: 16px;
    min-height: 72px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(19, 168, 91, 0.18);
    border: 1px solid rgba(19, 168, 91, 0.28);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 13px;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.footer-whatsapp-card:hover {
    transform: translateY(-3px);
    background: rgba(19, 168, 91, 0.28);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.footer-whatsapp-card svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: #ffffff;
}

.footer-whatsapp-card strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 900;
}

.footer-whatsapp-card span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.35;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding: 18px 0;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    text-align: left;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 820px) {
    .site-footer {
        width: calc(100% - 24px);
        margin: 0 auto 12px;
        border-radius: 24px;
        padding-top: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 26px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
        text-align: center;
    }

    .footer-trust-badges span {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-contact li {
        grid-template-columns: 36px 1fr;
    }

    .footer-contact-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .footer-whatsapp-card {
        align-items: flex-start;
    }
}

/* =========================================================
   SOBRE NÓS - PÁGINA COMPLETA
========================================================= */

.about-page-hero {
    min-height: 420px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 69, 150, 0.91) 39%,
            rgba(0, 87, 191, 0.28) 68%,
            rgba(0, 87, 191, 0.04) 100%
        ),
        url("../images/sobre-hero.png") center right / cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-page-hero-inner {
    min-height: 420px;
    display: flex;
    align-items: center;
}

.about-page-hero-content {
    width: min(100%, 620px);
    padding: 58px 0;
}

.about-page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(46px, 5vw, 74px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.about-hero-highlight {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
    font-weight: 850;
}

.about-hero-highlight strong {
    color: var(--yellow);
}

.about-hero-text {
    margin: 0;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.52;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 650;
}

.about-page {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6faff 52%, #ffffff 100%);
}

.about-intro-section {
    padding: 44px 0 24px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 54px;
    align-items: center;
}

.about-section-heading {
    margin-bottom: 22px;
}

.about-section-heading h2 {
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.about-section-heading span {
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--green));
}

.about-section-heading-center {
    text-align: center;
}

.about-section-heading-center span {
    margin-left: auto;
    margin-right: auto;
}

.about-section-heading-center p {
    margin: 10px auto 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.about-intro-copy p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.62;
    margin: 0 0 18px;
}

.about-intro-note {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 15px;
    align-items: center;
    margin-top: 22px;
    color: var(--blue);
}

.about-intro-note svg {
    width: 48px;
    height: 48px;
}

.about-intro-note strong {
    color: var(--blue-deep);
    font-size: 17px;
    line-height: 1.42;
}

.about-intro-image {
    border-radius: 28px;
    overflow: hidden;
    min-height: 310px;
    box-shadow: 0 24px 56px rgba(11, 63, 120, 0.14);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-identity-section {
    padding: 8px 0 26px;
}

.about-identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.about-identity-card,
.about-reason-card,
.about-team-card {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(11, 63, 120, 0.08);
}

.about-identity-card {
    min-height: 250px;
    border-radius: 22px;
    padding: 30px 28px;
    text-align: center;
}

.about-identity-icon,
.about-reason-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eef5ff;
    color: var(--blue);
}

.about-card-green .about-identity-icon,
.about-card-green .about-reason-icon {
    background: rgba(19, 168, 91, 0.10);
    color: var(--green);
}

.about-card-orange .about-identity-icon,
.about-card-orange .about-reason-icon {
    background: rgba(255, 122, 0, 0.10);
    color: var(--orange);
}

.about-identity-icon svg,
.about-reason-icon svg {
    width: 34px;
    height: 34px;
}

.about-identity-card h3,
.about-reason-card h3 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.about-card-green h3 {
    color: var(--green);
}

.about-card-orange h3 {
    color: var(--orange);
}

.about-identity-card p,
.about-reason-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.about-identity-card ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    gap: 8px;
    width: fit-content;
    text-align: left;
}

.about-identity-card li {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
}

.about-identity-card li svg {
    width: 16px;
    height: 16px;
    color: var(--green);
}

.about-reasons-section {
    padding: 18px 0 16px;
}

.about-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-reason-card {
    border-radius: 19px;
    padding: 26px 20px;
    text-align: center;
}

.about-reason-card h3 {
    font-size: 17px;
}

.about-stats-section {
    padding: 0 0 28px;
}

.about-stats-box {
    min-height: 112px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 195, 26, 0.15), transparent 30%),
        linear-gradient(135deg, var(--blue-deep), var(--blue));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0, 47, 100, 0.18);
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    color: #ffffff;
    position: relative;
}

.about-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: rgba(255, 255, 255, 0.30);
}

.about-stat-item svg {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    color: #ffffff;
}

.about-stat-item strong {
    display: block;
    color: var(--yellow);
    font-size: clamp(28px, 3vw, 43px);
    line-height: 1;
    font-weight: 950;
}

.about-stat-item span {
    display: block;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 850;
}

.about-team-section {
    padding: 8px 0 36px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
    margin-top: 26px;
    align-items: stretch;
}

.about-team-card {
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(11, 63, 120, 0.09);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.about-team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 87, 191, 0.18);
    box-shadow: 0 26px 58px rgba(11, 63, 120, 0.14);
}

.about-team-photo {
    height: 250px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #eaf2fb 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14px 14px 0;
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    filter: saturate(1.03) contrast(1.02);
}

.about-team-body {
    position: relative;
    padding: 18px 22px 24px;
    background: #ffffff;
}

.about-team-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 87, 191, 0.16), transparent);
}

.about-team-body h3 {
    margin: 0;
    color: var(--blue);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
}

.about-team-body strong {
    display: block;
    margin-top: 5px;
    color: var(--green);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}

.about-team-body p {
    margin: 12px auto 17px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.48;
    max-width: 270px;
}

.about-team-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.about-team-actions a {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    transition:
        transform 0.22s ease,
        filter 0.22s ease,
        box-shadow 0.22s ease;
}

.about-team-actions a:nth-child(1) {
    background: var(--yellow);
    box-shadow: 0 10px 20px rgba(255, 195, 26, 0.22);
}

.about-team-actions a:nth-child(2) {
    background: var(--green);
    box-shadow: 0 10px 20px rgba(19, 168, 91, 0.22);
}

.about-team-actions a:nth-child(3) {
    background: var(--blue);
    box-shadow: 0 10px 20px rgba(0, 87, 191, 0.22);
}

.about-team-actions a:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.about-team-actions svg {
    width: 18px;
    height: 18px;
}

.about-final-cta {
    padding: 0 0 42px;
    background: #ffffff;
}

.about-final-cta-box {
    min-height: 210px;
    border-radius: 24px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 72, 158, 0.86) 48%,
            rgba(0, 87, 191, 0.16) 100%
        ),
        url("../images/sobre-cta.png") center right / cover no-repeat;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 34px 46px;
    box-shadow: 0 22px 52px rgba(0, 47, 100, 0.18);
    overflow: hidden;
}

.about-final-cta-box h2 {
    margin: 0 0 8px;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.08;
    font-weight: 900;
}

.about-final-cta-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.about-final-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

@media (max-width: 1120px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-reasons-grid,
    .about-stats-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team-grid {
        gap: 28px;
    }

    .about-stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 820px) {
    .about-page-hero {
        width: calc(100% - 24px);
        min-height: auto;
        margin: 12px auto 0;
        border-radius: 24px;
        background:
            linear-gradient(
                90deg,
                rgba(0, 47, 100, 0.98) 0%,
                rgba(0, 69, 150, 0.88) 62%,
                rgba(0, 87, 191, 0.26) 100%
            ),
            url("../images/sobre-hero.png") center right / cover no-repeat;
        box-shadow: 0 18px 42px rgba(0, 46, 99, 0.18);
    }

    .about-page-hero-inner {
        min-height: auto;
    }

    .about-page-hero-content {
        padding: 38px 0;
        max-width: 390px;
    }

    .about-page-hero h1 {
        font-size: 42px;
    }

    .about-hero-highlight {
        font-size: 24px;
    }

    .about-hero-text {
        font-size: 15px;
    }

    .about-intro-section {
        padding-top: 30px;
    }

    .about-intro-image {
        min-height: 230px;
        border-radius: 22px;
    }

    .about-identity-grid,
    .about-reasons-grid,
    .about-team-grid,
    .about-stats-box {
        grid-template-columns: 1fr;
    }

    .about-stat-item:not(:last-child)::after {
        top: auto;
        right: 22px;
        left: 22px;
        bottom: 0;
        width: auto;
        height: 1px;
    }

    .about-team-grid {
        gap: 22px;
    }

    .about-final-cta {
        background: #edf4fb;
        padding-bottom: 24px;
    }

    .about-final-cta-box {
        width: min(100%, calc(100% - 24px));
        min-height: 260px;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .about-final-actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .about-page-hero h1 {
        font-size: 36px;
    }

    .about-hero-highlight {
        font-size: 21px;
    }

    .about-intro-note {
        grid-template-columns: 42px 1fr;
    }

    .about-intro-note svg {
        width: 40px;
        height: 40px;
    }

    .about-identity-card {
        padding: 26px 20px;
    }

    .about-stat-item {
        padding: 20px;
    }

    .about-team-photo {
        height: 190px;
    }
}

/* =========================================================
   SOBRE NÓS - EQUIPA COM FOTO CHEIA E ROSTO VISÍVEL
========================================================= */

.about-team-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(11, 63, 120, 0.09);
}

.about-team-photo {
    height: 300px;
    padding: 0;
    overflow: hidden;
    background: #eef5ff;
    display: block;
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 1%;
    display: block;
}

.about-team-body {
    padding: 20px 22px 24px;
    background: #ffffff;
}

@media (max-width: 1120px) {
    .about-team-photo {
        height: 290px;
    }
}

@media (max-width: 900px) {
    .about-team-grid {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-team-photo {
        height: 340px;
    }
}

@media (max-width: 480px) {
    .about-team-photo {
        height: 320px;
    }
}

/* =========================================================
   CONTACTOS - PÁGINA COMPLETA
========================================================= */

.contact-page-hero {
    min-height: 420px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 47, 100, 0.98) 0%,
            rgba(0, 69, 150, 0.92) 42%,
            rgba(0, 87, 191, 0.26) 72%,
            rgba(0, 87, 191, 0.04) 100%
        ),
        url("../images/contactos-hero.png") center right / cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-page-hero-inner {
    min-height: 420px;
    display: flex;
    align-items: center;
}

.contact-page-hero-content {
    width: min(100%, 720px);
    padding: 58px 0;
}

.contact-page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.contact-page-hero p {
    margin: 0;
    max-width: 640px;
    font-size: clamp(24px, 3vw, 35px);
    line-height: 1.28;
    font-weight: 750;
}

.contact-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 40px;
}

.contact-hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 210px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 850;
}

.contact-hero-features svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: #ffffff;
}

.contact-page {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6faff 48%, #ffffff 100%);
}

.contact-cards-section {
    padding: 42px 0 24px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.contact-card {
    min-height: 178px;
    padding: 26px 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(11, 63, 120, 0.08);
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 87, 191, 0.18);
    box-shadow: 0 26px 58px rgba(11, 63, 120, 0.13);
}

.contact-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--blue);
}

.contact-card-green .contact-card-icon {
    background: var(--green);
}

.contact-card-orange .contact-card-icon {
    background: var(--orange);
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
}

.contact-card-content {
    display: block;
}

.contact-card-content strong {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.contact-card-green strong {
    color: var(--green);
}

.contact-card-orange strong {
    color: var(--orange);
}

.contact-card-content small {
    display: block;
    min-height: 42px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.contact-card-content b {
    display: block;
    margin-top: 12px;
    color: var(--blue);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.contact-card-green b {
    color: var(--green);
}

.contact-card-orange b {
    color: var(--orange);
}

.contact-location-section {
    padding: 0 0 30px;
}

.contact-location-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.7fr;
    gap: 30px;
}

.contact-map-card,
.contact-hours-card,
.contact-form-card,
.contact-whatsapp-panel,
.contact-faq-box {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(11, 63, 120, 0.08);
    border-radius: 18px;
}

.contact-map-card,
.contact-hours-card {
    padding: 26px;
}

.contact-block-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-block-heading > span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--blue);
    flex: 0 0 48px;
}

.contact-block-heading svg {
    width: 25px;
    height: 25px;
}

.contact-block-heading h2 {
    margin: 0 0 4px;
    color: var(--blue-deep);
    font-size: 25px;
    line-height: 1.14;
    font-weight: 900;
}

.contact-block-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 650;
}

.contact-map-frame {
    height: 365px;
    border-radius: 14px;
    overflow: hidden;
    background: #eef5ff;
    border: 1px solid rgba(0, 87, 191, 0.10);
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-address-note,
.contact-timezone-note,
.contact-form-safe {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    color: var(--blue-deep);
    font-size: 14px;
    line-height: 1.45;
}

.contact-address-note svg,
.contact-timezone-note svg,
.contact-form-safe svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: var(--blue);
}

.contact-address-note span,
.contact-timezone-note span {
    display: block;
}

.contact-address-note strong,
.contact-timezone-note strong {
    display: block;
    margin-bottom: 2px;
    font-weight: 900;
}

.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
}

.contact-hours-list li strong {
    color: var(--blue);
    font-weight: 850;
}

.contact-hours-list li.is-closed span,
.contact-hours-list li.is-closed strong {
    color: #d93025;
}

.contact-timezone-note {
    margin-top: 20px;
    padding: 16px;
    border-radius: 14px;
    background: #eef5ff;
}

.contact-form-section {
    padding: 0 0 34px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.68fr;
    gap: 30px;
}

.contact-form-card {
    padding: 28px;
}

.contact-message-form .form-group {
    margin-bottom: 16px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-message-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 900;
}

.contact-message-form input,
.contact-message-form select,
.contact-message-form textarea {
    width: 100%;
    border: 1px solid #dce5f2;
    border-radius: 10px;
    background: #ffffff;
    color: var(--text);
    padding: 0 14px;
    min-height: 48px;
    outline: none;
}

.contact-message-form textarea {
    padding-top: 13px;
    resize: vertical;
    min-height: 150px;
}

.contact-message-form input:focus,
.contact-message-form select:focus,
.contact-message-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 87, 191, 0.10);
}

.contact-submit-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), #00439a);
    color: #ffffff;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 87, 191, 0.20);
}

.contact-submit-btn svg {
    width: 20px;
    height: 20px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 87, 191, 0.26);
}

.contact-whatsapp-panel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 14%, rgba(255, 255, 255, 0.16), transparent 26%),
        linear-gradient(135deg, #009245, #007c3a);
    color: #ffffff;
    padding: 38px 32px;
}

.contact-whatsapp-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle, #ffffff 1px, transparent 1px);
    background-size: 24px 24px;
}

.contact-whatsapp-panel-content {
    position: relative;
    z-index: 2;
}

.contact-whatsapp-large {
    width: 84px;
    height: 84px;
    margin-bottom: 18px;
}

.contact-whatsapp-panel h2 {
    margin: 0 0 10px;
    font-size: 31px;
    line-height: 1.1;
    font-weight: 900;
}

.contact-whatsapp-panel p {
    margin: 0;
    max-width: 300px;
    font-size: 16px;
    line-height: 1.45;
}

.contact-whatsapp-panel ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    gap: 12px;
}

.contact-whatsapp-panel li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 750;
}

.contact-whatsapp-panel li svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.contact-whatsapp-button {
    width: 100%;
    min-height: 58px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.14);
}

.contact-whatsapp-button svg {
    width: 24px;
    height: 24px;
}

.contact-whatsapp-panel-content > strong {
    display: block;
    margin-top: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
}

.contact-faq-section {
    padding: 0 0 44px;
}

.contact-faq-box {
    padding: 30px 28px;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 22px;
}

.contact-faq-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
}

.contact-faq-card > span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #ffffff;
}

.contact-faq-card svg {
    width: 18px;
    height: 18px;
}

.contact-faq-card h3 {
    margin: 0 0 8px;
    color: var(--blue-deep);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 900;
}

.contact-faq-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.contact-faq-action {
    margin-top: 26px;
    text-align: center;
}

.contact-faq-action a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 8px;
    border: 1px solid rgba(0, 87, 191, 0.35);
    color: var(--blue);
    font-weight: 900;
}

@media (max-width: 1120px) {
    .contact-cards-grid,
    .contact-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-location-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-whatsapp-panel {
        min-height: 420px;
    }
}

@media (max-width: 820px) {
    .contact-page-hero {
        width: calc(100% - 24px);
        min-height: auto;
        margin: 12px auto 0;
        border-radius: 24px;
        background:
            linear-gradient(
                90deg,
                rgba(0, 47, 100, 0.98) 0%,
                rgba(0, 69, 150, 0.90) 58%,
                rgba(0, 87, 191, 0.30) 100%
            ),
            url("../images/contactos-hero.png") center right / cover no-repeat;
        box-shadow: 0 18px 42px rgba(0, 46, 99, 0.18);
    }

    .contact-page-hero-inner {
        min-height: auto;
    }

    .contact-page-hero-content {
        padding: 40px 0;
    }

    .contact-page-hero h1 {
        font-size: 42px;
    }

    .contact-page-hero p {
        font-size: 20px;
        max-width: 360px;
    }

    .contact-hero-features {
        display: grid;
        gap: 14px;
        margin-top: 28px;
    }

    .contact-hero-features span {
        max-width: 290px;
    }

    .contact-cards-section {
        padding-top: 28px;
    }

    .contact-cards-grid,
    .contact-faq-grid,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: auto;
    }

    .contact-map-card,
    .contact-hours-card,
    .contact-form-card,
    .contact-whatsapp-panel,
    .contact-faq-box {
        border-radius: 22px;
    }

    .contact-map-frame {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-page-hero h1 {
        font-size: 36px;
    }

    .contact-card {
        grid-template-columns: 52px 1fr;
        padding: 22px 18px;
    }

    .contact-card-icon {
        width: 52px;
        height: 52px;
    }

    .contact-form-card,
    .contact-map-card,
    .contact-hours-card,
    .contact-whatsapp-panel,
    .contact-faq-box {
        padding: 22px 18px;
    }

    .contact-whatsapp-panel h2 {
        font-size: 27px;
    }
}

/* =========================================================
   CONTACTOS - AJUSTES FINOS
========================================================= */

.contact-hero-features span:nth-child(3) {
    max-width: 175px;
}

.contact-card {
    grid-template-columns: 58px minmax(0, 1fr);
}

.contact-card-content b {
    white-space: nowrap;
    font-size: clamp(14px, 1.05vw, 17px);
}

.contact-card:nth-child(3) .contact-card-content b {
    font-size: clamp(13px, 0.95vw, 16px);
}

.contact-card:nth-child(4) .contact-card-content b {
    font-size: clamp(14px, 1vw, 17px);
}

.contact-hours-card .contact-block-heading > span {
    background: var(--blue);
    color: #ffffff;
}

.contact-hours-card .contact-block-heading > span svg {
    width: 26px;
    height: 26px;
}

.contact-whatsapp-panel {
    text-align: left;
}

.contact-whatsapp-icon-wrap {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    margin: 18px auto 26px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.contact-whatsapp-large {
    width: 76px;
    height: 76px;
    margin: 0;
    color: #ffffff;
}

.contact-faq-card > span {
    background: var(--blue);
    box-shadow: 0 10px 22px rgba(0, 87, 191, 0.20);
}

.contact-faq-action a {
    transition:
        transform 0.22s ease,
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.contact-faq-action a:hover {
    transform: translateY(-2px);
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 87, 191, 0.20);
}

@media (max-width: 1240px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card-content b {
        white-space: normal;
    }
}

@media (max-width: 820px) {
    .contact-hero-features span:nth-child(3) {
        max-width: 290px;
    }

    .contact-whatsapp-icon-wrap {
        width: 104px;
        height: 104px;
        margin-top: 8px;
    }

    .contact-whatsapp-large {
        width: 64px;
        height: 64px;
    }
}

/* =========================================================
   CONTACTOS - MAPA SEM IFRAME
========================================================= */

.contact-map-link {
    position: relative;
    display: grid;
    place-items: center;
    text-decoration: none;
    background:
        radial-gradient(circle at 24% 26%, rgba(255, 195, 26, 0.22), transparent 26%),
        radial-gradient(circle at 76% 62%, rgba(19, 168, 91, 0.18), transparent 30%),
        linear-gradient(135deg, #eaf3ff 0%, #f7fbff 48%, #eef6ff 100%);
    overflow: hidden;
}

.contact-map-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 87, 191, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 191, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
}

.contact-map-visual {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--blue);
}

.contact-map-visual > svg {
    width: 82px;
    height: 82px;
    margin-bottom: 16px;
    color: var(--blue);
    filter: drop-shadow(0 16px 24px rgba(0, 87, 191, 0.18));
}

.contact-map-visual strong {
    display: block;
    color: var(--blue-deep);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 950;
}

.contact-map-visual span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 800;
}

.contact-map-button {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 87, 191, 0.28);
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.contact-map-button svg {
    width: 18px;
    height: 18px;
}

.contact-map-link:hover .contact-map-button {
    transform: translateX(-50%) translateY(-3px);
    background: #00439a;
    box-shadow: 0 18px 38px rgba(0, 87, 191, 0.34);
}

@media (max-width: 480px) {
    .contact-map-button {
        width: calc(100% - 36px);
        justify-content: center;
        white-space: nowrap;
    }
}

/* =========================================================
   CONTACTOS - POPUP PREMIUM DE FEEDBACK
========================================================= */

.contact-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.contact-feedback-modal.is-visible {
    display: flex;
}

.contact-feedback-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 23, 48, 0.66);
    backdrop-filter: blur(8px);
}

.contact-feedback-box {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    padding: 34px 28px 28px;
    border-radius: 24px;
    background: #ffffff;
    color: var(--blue-deep);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    animation: contactFeedbackIn 0.24s ease-out;
}

.contact-feedback-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.contact-feedback-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
}

.contact-feedback-box.is-success .contact-feedback-icon {
    background: var(--green);
    box-shadow: 0 18px 38px rgba(19, 168, 91, 0.28);
}

.contact-feedback-box.is-error .contact-feedback-icon {
    background: var(--orange);
    box-shadow: 0 18px 38px rgba(255, 122, 0, 0.25);
}

.contact-feedback-icon svg {
    width: 40px;
    height: 40px;
}

.contact-feedback-box h2 {
    margin: 0 0 10px;
    color: var(--blue-deep);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 950;
}

.contact-feedback-box p {
    margin: 0 auto;
    max-width: 340px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
}

.contact-feedback-box small {
    display: block;
    margin-top: 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.contact-feedback-box ul {
    margin: 16px auto 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    max-width: 340px;
    text-align: left;
}

.contact-feedback-box li {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 122, 0, 0.08);
    color: #8a3500;
    font-size: 13px;
    font-weight: 800;
}

.contact-feedback-action {
    min-width: 150px;
    min-height: 46px;
    margin-top: 24px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 87, 191, 0.22);
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.contact-feedback-action:hover {
    transform: translateY(-2px);
    background: #00439a;
    box-shadow: 0 18px 38px rgba(0, 87, 191, 0.30);
}

@keyframes contactFeedbackIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================================================
   CONTACTOS - CONTADOR, LOADING E HONEYPOT
========================================================= */

.contact-message-meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.contact-message-meta strong {
    color: var(--blue);
    font-size: 12px;
    font-weight: 950;
}

.contact-message-meta.is-near-limit strong {
    color: var(--orange);
}

.contact-message-meta.is-limit strong {
    color: #d93025;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-submit-btn.is-loading {
    cursor: wait;
    opacity: 0.78;
    pointer-events: none;
}

.contact-submit-btn.is-loading svg {
    animation: contactSubmitSpin 0.8s linear infinite;
}

@keyframes contactSubmitSpin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   VIAGENS CORPORATIVAS
========================================================= */

.corporate-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: linear-gradient(110deg, #003b7f 0%, #005bc4 48%, #dfeeff 100%);
    color: #ffffff;
}

.corporate-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 49, 104, 0.98) 0%, rgba(0, 70, 149, 0.90) 38%, rgba(0, 75, 155, 0.40) 62%, rgba(0, 75, 155, 0.04) 100%),
        url('/assets/images/corporativo-hero.png') center right / cover no-repeat;
}

.corporate-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 56%;
    height: 260px;
    border-radius: 50% 0 0 0;
    border-top: 18px solid var(--orange);
    border-left: 18px solid var(--green);
    background: var(--blue);
    transform: rotate(-8deg);
}

.corporate-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.corporate-hero-content {
    width: min(100%, 650px);
    padding: 70px 0 42px;
}

.corporate-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(46px, 5.4vw, 74px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.corporate-hero h2 {
    margin: 0 0 26px;
    max-width: 640px;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 900;
}

.corporate-hero h2 span {
    display: block;
    color: var(--yellow);
}

.corporate-hero p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 19px;
    line-height: 1.65;
    font-weight: 650;
}

.corporate-hero-actions,
.corporate-request-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.corporate-btn {
    min-height: 58px;
    padding: 0 26px;
    border: 0;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.corporate-btn svg {
    width: 22px;
    height: 22px;
}

.corporate-btn-yellow {
    background: var(--yellow);
    color: #0b2b52;
    box-shadow: 0 15px 35px rgba(245, 196, 0, 0.23);
}

.corporate-btn-green {
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(19, 168, 91, 0.23);
}

.corporate-btn:hover {
    transform: translateY(-2px);
}

.corporate-hero-badges {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.corporate-hero-badges span {
    min-height: 70px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(0, 35, 76, 0.28);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 850;
    backdrop-filter: blur(8px);
}

.corporate-hero-badges svg {
    width: 28px;
    height: 28px;
}

.corporate-page {
    background:
        radial-gradient(circle at 20% 18%, rgba(0, 87, 191, 0.07), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f7fbff 100%);
}

.corporate-section {
    padding: 34px 0 18px;
}

.corporate-section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.corporate-section-heading h2 {
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.corporate-section-heading span {
    width: 144px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 999px;
    display: block;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
}

.corporate-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.corporate-solution-card,
.corporate-audience-grid article {
    min-height: 174px;
    padding: 28px 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #dce7f5;
    box-shadow: 0 18px 44px rgba(5, 35, 75, 0.07);
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.corporate-solution-card:hover,
.corporate-audience-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 87, 191, 0.22);
    box-shadow: 0 24px 58px rgba(5, 35, 75, 0.11);
}

.corporate-solution-card span,
.corporate-audience-grid article span {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
}

.corporate-solution-card svg,
.corporate-audience-grid svg {
    width: 58px;
    height: 58px;
}

.corporate-icon-blue svg,
.corporate-audience-grid article:nth-child(1) svg,
.corporate-audience-grid article:nth-child(4) svg {
    color: var(--blue);
}

.corporate-icon-green svg,
.corporate-audience-grid article:nth-child(2) svg,
.corporate-audience-grid article:nth-child(5) svg {
    color: var(--green);
}

.corporate-icon-orange svg,
.corporate-audience-grid article:nth-child(3) svg {
    color: var(--orange);
}

.corporate-solution-card h3,
.corporate-audience-grid h3 {
    margin: 0 0 10px;
    color: var(--blue-deep);
    font-size: 18px;
    line-height: 1.18;
    font-weight: 950;
}

.corporate-solution-card p,
.corporate-audience-grid p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 650;
}

.corporate-solutions-grid .corporate-solution-card:nth-child(5) {
    grid-column: 1 / span 2;
}

.corporate-solutions-grid .corporate-solution-card:nth-child(6) {
    grid-column: 3 / span 1;
}

.corporate-solutions-grid .corporate-solution-card:nth-child(7) {
    grid-column: 4 / span 1;
}

.corporate-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    padding: 8px 0 4px;
}

.corporate-process-grid::before {
    content: "";
    position: absolute;
    top: 61px;
    left: 10%;
    right: 10%;
    border-top: 2px dashed rgba(0, 87, 191, 0.32);
}

.corporate-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.corporate-process-step > strong {
    position: absolute;
    top: 18px;
    left: calc(50% - 58px);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
}

.corporate-step-blue > strong { background: var(--blue); }
.corporate-step-green > strong { background: var(--green); }
.corporate-step-orange > strong { background: var(--orange); }

.corporate-process-step > span {
    width: 86px;
    height: 86px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dce7f5;
    box-shadow: 0 18px 38px rgba(5, 35, 75, 0.08);
    display: grid;
    place-items: center;
}

.corporate-process-step svg {
    width: 42px;
    height: 42px;
}

.corporate-step-blue svg { color: var(--blue); }
.corporate-step-green svg { color: var(--green); }
.corporate-step-orange svg { color: var(--orange); }

.corporate-process-step h3 {
    margin: 0 0 10px;
    color: var(--blue-deep);
    font-size: 18px;
    font-weight: 950;
}

.corporate-step-green h3 { color: var(--green); }
.corporate-step-orange h3 { color: var(--orange); }

.corporate-process-step p {
    max-width: 230px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 650;
}

.corporate-advantages-section {
    padding: 26px 0;
}

.corporate-advantages-box {
    padding: 18px 24px 32px;
    border-radius: 14px;
    background: radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.13), transparent 25%), linear-gradient(135deg, #003b7f, #0057bf);
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(0, 61, 130, 0.22);
}

.corporate-advantages-box h2 {
    margin: 0 0 18px;
    text-align: center;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 950;
}

.corporate-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.corporate-advantages-grid article {
    padding: 16px 28px 0;
    text-align: center;
}

.corporate-advantages-grid article:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.36);
}

.corporate-advantages-grid span {
    width: 60px;
    height: 60px;
    margin: 0 auto 13px;
    display: grid;
    place-items: center;
}

.corporate-advantages-grid svg {
    width: 52px;
    height: 52px;
    color: #ffffff;
}

.corporate-advantages-grid h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 950;
}

.corporate-advantages-grid p {
    margin: 0 auto;
    max-width: 250px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 650;
}

.corporate-audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.corporate-audience-grid article {
    min-height: 170px;
    padding: 24px 18px;
}

.corporate-request-section {
    padding: 24px 0 38px;
}

.corporate-request-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dce7f5;
    box-shadow: 0 22px 55px rgba(5, 35, 75, 0.09);
    display: grid;
    grid-template-columns: 0.72fr 1fr;
}

.corporate-request-intro {
    position: relative;
    overflow: hidden;
    padding: 38px 36px;
    background: linear-gradient(135deg, #003b7f, #0057bf);
    color: #ffffff;
}

.corporate-request-intro::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -86px;
    width: 170px;
    height: 145%;
    background: linear-gradient(90deg, var(--green) 0 34%, #ffffff 34% 45%, var(--orange) 45% 100%);
    transform: rotate(12deg);
}

.corporate-request-intro h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.corporate-request-intro h2 span {
    display: block;
    color: var(--yellow);
}

.corporate-request-intro p {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.90);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 650;
}

.corporate-request-actions {
    position: relative;
    z-index: 2;
    align-items: center;
}

.corporate-request-form {
    padding: 34px 34px 28px;
}

.corporate-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.corporate-request-form .form-group {
    margin: 0 0 16px;
}

.corporate-request-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 900;
}

.corporate-request-form input,
.corporate-request-form select,
.corporate-request-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d4e0ee;
    border-radius: 6px;
    padding: 0 14px;
    background: #ffffff;
    color: var(--blue-deep);
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.corporate-request-form textarea {
    min-height: 90px;
    padding-top: 12px;
    resize: vertical;
}

.corporate-request-form input:focus,
.corporate-request-form select:focus,
.corporate-request-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 87, 191, 0.10);
}

.corporate-form-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.corporate-submit-btn {
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(0, 87, 191, 0.22);
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.corporate-submit-btn svg {
    width: 18px;
    height: 18px;
}

.corporate-submit-btn:hover {
    transform: translateY(-2px);
    background: #00439a;
    box-shadow: 0 19px 38px rgba(0, 87, 191, 0.30);
}

.corporate-submit-btn.is-loading {
    opacity: 0.8;
    pointer-events: none;
    cursor: wait;
}

.corporate-form-bottom p {
    margin: 0;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 750;
}

.corporate-form-bottom p svg {
    width: 17px;
    height: 17px;
}

@media (max-width: 1120px) {
    .corporate-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-solutions-grid .corporate-solution-card:nth-child(5),
    .corporate-solutions-grid .corporate-solution-card:nth-child(6),
    .corporate-solutions-grid .corporate-solution-card:nth-child(7) {
        grid-column: auto;
    }

    .corporate-audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .corporate-request-box {
        grid-template-columns: 1fr;
    }

    .corporate-request-intro::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .corporate-hero,
    .corporate-hero-inner {
        min-height: auto;
    }

    .corporate-hero-bg {
        background:
            linear-gradient(180deg, rgba(0, 49, 104, 0.96), rgba(0, 75, 155, 0.86)),
            url('/assets/images/corporativo-hero.png') center / cover no-repeat;
    }

    .corporate-hero::after,
    .corporate-process-grid::before {
        display: none;
    }

    .corporate-hero-content {
        padding: 72px 0 48px;
    }

    .corporate-process-grid,
    .corporate-advantages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .corporate-advantages-grid article:not(:last-child),
    .corporate-advantages-grid article:nth-child(odd) {
        border-right: 0;
    }

    .corporate-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .corporate-hero-actions,
    .corporate-request-actions,
    .corporate-form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .corporate-btn,
    .corporate-submit-btn {
        width: 100%;
    }

    .corporate-hero-badges,
    .corporate-solutions-grid,
    .corporate-process-grid,
    .corporate-advantages-grid,
    .corporate-audience-grid {
        grid-template-columns: 1fr;
    }

    .corporate-hero-badges {
        display: grid;
    }

    .corporate-request-intro,
    .corporate-request-form {
        padding: 28px 22px;
    }
}

/* =========================================================
   VIAGENS CORPORATIVAS - AJUSTES FINAIS
========================================================= */

.corporate-hero::after {
    display: none !important;
}

.corporate-hero {
    min-height: 560px;
}

.corporate-hero-inner {
    min-height: 560px;
}

.corporate-hero-bg {
    background:
        linear-gradient(90deg, rgba(0, 49, 104, 0.99) 0%, rgba(0, 63, 135, 0.93) 34%, rgba(0, 75, 155, 0.48) 58%, rgba(0, 75, 155, 0.06) 100%),
        url('/assets/images/corporativo-hero.png') center right / cover no-repeat !important;
}

/* Evita que os grids sejam cortados em telas mĆ©dias. */
.corporate-solutions-grid,
.corporate-audience-grid,
.corporate-process-grid,
.corporate-advantages-grid {
    overflow: visible;
}

.corporate-page .container {
    max-width: 1380px;
}

/* Ć¨cones com stroke ficam melhores sem virar "bolinha" sĆ³lida. */
.corporate-advantages-grid span svg,
.corporate-audience-grid span svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.corporate-audience-grid article:nth-child(1) svg,
.corporate-audience-grid article:nth-child(4) svg,
.corporate-advantages-grid article:nth-child(2) svg,
.corporate-advantages-grid article:nth-child(3) svg,
.corporate-advantages-grid article:nth-child(4) svg {
    fill: currentColor;
    stroke: none;
}

/* FormulĆ�rio corporativo melhorado */
.corporate-request-box {
    grid-template-columns: 0.62fr 1.1fr;
}

.corporate-request-form {
    position: relative;
    background: #ffffff;
}

.corporate-request-form .form-group {
    min-width: 0;
}

.corporate-form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.corporate-request-form input,
.corporate-request-form select,
.corporate-request-form textarea {
    min-width: 0;
    font-size: 13px;
}

.corporate-message-meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.corporate-message-meta strong {
    color: var(--blue);
    font-size: 12px;
    font-weight: 950;
}

.corporate-message-meta.is-near-limit strong {
    color: var(--orange);
}

.corporate-message-meta.is-limit strong {
    color: #d93025;
}

.corporate-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.corporate-submit-btn.is-loading {
    opacity: 0.78;
    pointer-events: none;
    cursor: wait;
}

.corporate-submit-btn.is-loading svg {
    animation: corporateSubmitSpin 0.8s linear infinite;
}

@keyframes corporateSubmitSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Popup corporativo */
.corporate-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.corporate-feedback-modal.is-visible {
    display: flex;
}

.corporate-feedback-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 23, 48, 0.66);
    backdrop-filter: blur(8px);
}

.corporate-feedback-box {
    position: relative;
    z-index: 2;
    width: min(100%, 440px);
    padding: 34px 28px 28px;
    border-radius: 24px;
    background: #ffffff;
    color: var(--blue-deep);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    animation: corporateFeedbackIn 0.24s ease-out;
}

.corporate-feedback-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.corporate-feedback-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
}

.corporate-feedback-box.is-success .corporate-feedback-icon {
    background: var(--green);
    box-shadow: 0 18px 38px rgba(19, 168, 91, 0.28);
}

.corporate-feedback-box.is-error .corporate-feedback-icon {
    background: var(--orange);
    box-shadow: 0 18px 38px rgba(255, 122, 0, 0.25);
}

.corporate-feedback-icon svg {
    width: 40px;
    height: 40px;
}

.corporate-feedback-box h2 {
    margin: 0 0 10px;
    color: var(--blue-deep);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 950;
}

.corporate-feedback-box p {
    margin: 0 auto;
    max-width: 350px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
}

.corporate-feedback-box small {
    display: block;
    margin-top: 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.corporate-feedback-box ul {
    margin: 16px auto 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    max-width: 340px;
    text-align: left;
}

.corporate-feedback-box li {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 122, 0, 0.08);
    color: #8a3500;
    font-size: 13px;
    font-weight: 800;
}

.corporate-feedback-action {
    min-width: 150px;
    min-height: 46px;
    margin-top: 24px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 87, 191, 0.22);
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.corporate-feedback-action:hover {
    transform: translateY(-2px);
    background: #00439a;
    box-shadow: 0 18px 38px rgba(0, 87, 191, 0.30);
}

@keyframes corporateFeedbackIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1120px) {
    .corporate-request-box {
        grid-template-columns: 1fr;
    }

    .corporate-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .corporate-hero,
    .corporate-hero-inner {
        min-height: auto;
    }

    .corporate-hero-bg {
        background:
            linear-gradient(180deg, rgba(0, 49, 104, 0.96), rgba(0, 75, 155, 0.86)),
            url('/assets/images/corporativo-hero.png') center / cover no-repeat !important;
    }
}

@media (max-width: 640px) {
    .corporate-form-grid {
        grid-template-columns: 1fr;
    }

    .corporate-feedback-box {
        padding: 32px 22px 24px;
    }
}

/* =========================================================
   FOOTER - SOCIAL ICONS PREMIUM
========================================================= */

.social-links {
    flex-wrap: wrap;
}

.social-links .social-link {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.social-links .social-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transform: scale(0.75);
    border-radius: inherit;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.social-links .social-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-links .social-facebook::before {
    background: #1877f2;
}

.social-links .social-instagram::before {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social-links .social-linkedin::before {
    background: #0a66c2;
}

.social-links .social-whatsapp::before {
    background: #25d366;
}

.social-links .social-tiktok::before {
    background: linear-gradient(135deg, #111111, #25f4ee 48%, #fe2c55);
}

.social-links .social-youtube::before {
    background: #ff0000;
}

.social-links .social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* Remove a regra antiga que deixava sÃ³ o Ãºltimo Ã­cone verde. */
.social-links a:last-child:hover {
    background: rgba(255, 255, 255, 0.10);
}

.footer-brand {
    position: relative;
}

.footer-brand::after {
    content: "";
    display: block;
    width: 96px;
    height: 3px;
    margin-top: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--yellow), var(--green), var(--blue));
    opacity: 0.9;
}

.footer-trust-badges span {
    backdrop-filter: blur(8px);
}

.footer-whatsapp-card {
    position: relative;
    overflow: hidden;
}

.footer-whatsapp-card::after {
    content: "";
    position: absolute;
    inset: -60% auto auto -30%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

@media (max-width: 820px) {
    .social-links {
        justify-content: flex-start;
    }

    .footer-brand::after {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .social-links {
        justify-content: center;
    }
}

/* =========================================================
   FOOTER + CONTACTOS - HORÁRIO PREMIUM CONSOLIDADO
========================================================= */

/*
   Este bloco substitui os ajustes anteriores de horário.
   Mantém compatibilidade com duas estruturas:
   1) <span class="contact-timezone-icon"><svg>...</svg></span>
   2) <div class="contact-timezone-note"><svg>...</svg><span>...</span></div>
*/

/* Rodapé: Horário */
.footer-contact-icon-clock {
    color: var(--yellow) !important;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.20), transparent 34%),
        rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.footer-contact-icon-clock svg,
.footer-contact-icon-clock use {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.35 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.footer-contact-icon-clock svg {
    width: 22px !important;
    height: 22px !important;
}

/* Contactos: título "Horário de Atendimento" */
.contact-hours-card .contact-block-heading > .contact-hours-heading-icon,
.contact-hours-card .contact-block-heading > span.contact-hours-heading-icon {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    color: var(--yellow) !important;
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--blue-deep)) !important;
    border: 1px solid rgba(255, 195, 26, 0.28) !important;
    box-shadow: 0 14px 30px rgba(0, 46, 99, 0.18) !important;
}

.contact-hours-card .contact-block-heading > .contact-hours-heading-icon svg,
.contact-hours-card .contact-block-heading > .contact-hours-heading-icon use {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.35 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.contact-hours-card .contact-block-heading > .contact-hours-heading-icon svg {
    width: 25px !important;
    height: 25px !important;
}

/* Contactos: cartão "Horário de Moçambique (CAT)" */
.contact-timezone-note,
.contact-timezone-note-premium {
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 20px !important;
    padding: 16px !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 10% 18%, rgba(255, 195, 26, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef5ff 100%) !important;
    border: 1px solid rgba(0, 87, 191, 0.15) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 12px 28px rgba(0, 46, 99, 0.07) !important;
    color: var(--muted) !important;
}

/* Ícone quando está dentro de <span class="contact-timezone-icon"> */
.contact-timezone-note .contact-timezone-icon,
.contact-timezone-note-premium .contact-timezone-icon {
    width: 54px !important;
    height: 54px !important;
    flex: 0 0 54px !important;
    border-radius: 17px !important;
    display: grid !important;
    place-items: center !important;
    color: var(--yellow) !important;
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--blue-deep)) !important;
    border: 1px solid rgba(255, 195, 26, 0.28) !important;
    box-shadow: 0 14px 28px rgba(0, 46, 99, 0.18) !important;
}

/* Ícone quando ainda está como SVG direto dentro do note */
.contact-timezone-note > svg,
.contact-timezone-note-premium > svg {
    display: block !important;
    width: 54px !important;
    height: 54px !important;
    flex: 0 0 54px !important;
    padding: 13px !important;
    border-radius: 17px !important;
    color: var(--yellow) !important;
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--blue-deep)) !important;
    border: 1px solid rgba(255, 195, 26, 0.28) !important;
    box-shadow: 0 14px 28px rgba(0, 46, 99, 0.18) !important;
}

/* Força o relógio a ser de linha, não sólido */
.contact-timezone-note .contact-timezone-icon svg,
.contact-timezone-note-premium .contact-timezone-icon svg,
.contact-timezone-note > svg,
.contact-timezone-note-premium > svg,
.contact-timezone-note .contact-timezone-icon use,
.contact-timezone-note-premium .contact-timezone-icon use,
.contact-timezone-note > svg use,
.contact-timezone-note-premium > svg use {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.35 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.contact-timezone-note .contact-timezone-icon svg,
.contact-timezone-note-premium .contact-timezone-icon svg {
    width: 28px !important;
    height: 28px !important;
}

/* Texto do note */
.contact-timezone-note span:last-child,
.contact-timezone-note-premium span:last-child {
    min-width: 0 !important;
    display: block !important;
    color: var(--muted) !important;
    font-size: 13px !important;
    line-height: 1.38 !important;
    font-weight: 750 !important;
}

.contact-timezone-note strong,
.contact-timezone-note-premium strong {
    display: block !important;
    margin-bottom: 3px !important;
    color: var(--blue-deep) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
}

@media (max-width: 480px) {
    .contact-timezone-note,
    .contact-timezone-note-premium {
        grid-template-columns: 48px minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .contact-timezone-note .contact-timezone-icon,
    .contact-timezone-note-premium .contact-timezone-icon,
    .contact-timezone-note > svg,
    .contact-timezone-note-premium > svg {
        width: 48px !important;
        height: 48px !important;
        flex-basis: 48px !important;
        border-radius: 15px !important;
    }

    .contact-timezone-note > svg,
    .contact-timezone-note-premium > svg {
        padding: 12px !important;
    }

    .contact-timezone-note .contact-timezone-icon svg,
    .contact-timezone-note-premium .contact-timezone-icon svg {
        width: 25px !important;
        height: 25px !important;
    }
}

/* =========================================================
   4CORNERS - PRELOADER LEVE COM 3 PONTOS
========================================================= */

.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

.page-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-preloader-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 191, 0.10);
    box-shadow: 0 18px 42px rgba(0, 46, 99, 0.12);
}

.page-preloader-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    animation: preloaderDots 1s ease-in-out infinite;
}

.page-preloader-dots span:nth-child(1) {
    background: var(--blue);
}

.page-preloader-dots span:nth-child(2) {
    background: var(--green);
    animation-delay: 0.16s;
}

.page-preloader-dots span:nth-child(3) {
    background: var(--orange);
    animation-delay: 0.32s;
}

body.is-page-loading {
    overflow: hidden;
}

@keyframes preloaderDots {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    50% {
        transform: translateY(-7px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-preloader-dots span {
        animation: none !important;
        opacity: 1;
    }
}