:root {
    --font-sans: "Avenir Next", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --navy-950: #07142d;
    --navy-900: #0a1735;
    --navy-800: #12224b;
    --blue-600: #274ea5;
    --blue-500: #3558b0;
    --blue-300: #8db0ff;
    --green-600: #15a857;
    --green-500: #21c768;
    --green-100: #eafaf0;
    --red-600: #c11f2b;
    --red-500: #e5363b;
    --red-100: #fff0f1;
    --accent-soft: #f4f6ff;
    --yellow-400: #ffcc4d;
    --text-900: #16233f;
    --text-700: #45536f;
    --text-500: #7c879d;
    --line: #e7edf6;
    --surface: #f4f8fd;
    --white: #ffffff;
    --shadow-lg: 0 32px 70px rgba(9, 25, 63, 0.12);
    --shadow-md: 0 16px 40px rgba(10, 27, 69, 0.08);
    --shadow-sm: 0 10px 24px rgba(10, 27, 69, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 148px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-900);
    background:
        radial-gradient(circle at top right, rgba(229, 54, 59, 0.06), transparent 28%),
        linear-gradient(180deg, #fbfcff 0%, #f3f6fb 54%, #eef3fb 100%);
    line-height: 1.5;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
    border: 0;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    padding-top: 18px;
}

.updates-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(6, 18, 44, 0.55);
    backdrop-filter: blur(6px);
}

.updates-modal[hidden] {
    display: none;
}

.updates-modal .container {
    display: flex;
    justify-content: center;
}

.updates-modal-card {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: start;
    gap: 18px;
    width: min(760px, 100%);
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(227, 236, 247, 0.95);
    box-shadow: 0 28px 80px rgba(10, 27, 69, 0.24);
    pointer-events: auto;
}

.updates-modal-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    color: var(--green-600);
    background: linear-gradient(180deg, #eefbf3 0%, #dff6e8 100%);
    box-shadow: inset 0 0 0 1px #d6efdf;
}

.updates-modal-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.updates-modal-title {
    display: block;
    margin-bottom: 8px;
    color: #24395f;
    font-size: 22px;
    line-height: 1.2;
}

.updates-modal-text {
    color: var(--text-500);
    font-size: 15px;
    line-height: 1.55;
}

.updates-modal-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.updates-modal-button,
.updates-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(39, 78, 165, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-600);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.updates-modal-button:hover,
.updates-modal-close:hover {
    transform: translateY(-2px);
    background: var(--blue-600);
    color: var(--white);
}

.contact-chooser {
    position: fixed;
    inset: 0;
    z-index: 42;
    display: grid;
    place-items: center;
    padding: 24px 16px;
}

.contact-chooser[hidden] {
    display: none;
}

.contact-chooser-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 44, 0.62);
    backdrop-filter: blur(8px);
}

.contact-chooser-dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    padding: 30px 28px 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(33, 199, 104, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 253, 0.98) 100%);
    border: 1px solid rgba(227, 236, 247, 0.95);
    box-shadow: 0 30px 80px rgba(10, 27, 69, 0.28);
}

.contact-chooser-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--blue-600);
    box-shadow: 0 10px 24px rgba(10, 27, 69, 0.1);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-chooser-close:hover {
    transform: translateY(-2px);
    background: var(--blue-600);
    color: var(--white);
}

.contact-chooser-head {
    max-width: 740px;
    margin-bottom: 26px;
}

.contact-chooser-head h2 {
    margin: 14px 0 10px;
    color: #24395f;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.08;
}

.contact-chooser-head p,
.contact-chooser-footer p {
    color: var(--text-500);
    font-size: 14px;
}

.contact-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-topic-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 24px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(227, 236, 247, 0.95);
    box-shadow: var(--shadow-sm);
}

.contact-topic-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-600) 0%, var(--green-500) 100%);
}

.contact-topic-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef2ff 0%, #eefbf3 100%);
    color: var(--blue-600);
    box-shadow: inset 0 0 0 1px #e6ecf7;
}

.contact-topic-card h3 {
    color: #273c63;
    font-size: 19px;
}

.contact-topic-card p,
.contact-topic-meta span {
    color: var(--text-500);
    font-size: 14px;
}

.contact-topic-meta {
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding-top: 4px;
}

.contact-topic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.contact-topic-actions .btn-main,
.contact-topic-actions .btn-outline {
    min-height: 44px;
    padding: 0 18px;
}

.contact-topic-actions .btn-outline {
    color: var(--blue-600);
    border-color: rgba(39, 78, 165, 0.16);
    background: rgba(39, 78, 165, 0.05);
}

.contact-topic-actions .btn-outline:hover {
    color: var(--white);
    background: var(--blue-600);
}

.contact-chooser-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(6, 18, 44, 0.92), rgba(18, 38, 82, 0.86));
    border: 1px solid rgba(141, 176, 255, 0.14);
    box-shadow: 0 16px 42px rgba(2, 12, 35, 0.22);
    backdrop-filter: blur(18px);
    border-radius: 22px;
}

.logo img {
    height: 46px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-300) 0%, #ffffff 50%, #ff8a91 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.btn-whatsapp-header,
.btn-main,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-whatsapp-header:hover,
.btn-main:hover,
.btn-outline:hover {
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
    color: var(--white);
    border: 1px solid rgba(255, 138, 145, 0.34);
    background: linear-gradient(135deg, rgba(193, 31, 43, 0.92) 0%, rgba(229, 54, 59, 0.84) 100%);
    box-shadow: 0 12px 24px rgba(193, 31, 43, 0.2);
}

.btn-main {
    border: 0;
}

.btn-outline {
    border-width: 1px;
    border-style: solid;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 110px;
    color: var(--white);
    background:
        radial-gradient(circle at 15% 35%, rgba(96, 141, 255, 0.18), transparent 24%),
        radial-gradient(circle at 84% 26%, rgba(229, 54, 59, 0.16), transparent 18%),
        linear-gradient(135deg, #06122b 0%, #11285b 52%, #09162f 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(141, 176, 255, 0.35) 0, rgba(141, 176, 255, 0.35) 1px, transparent 1px),
        radial-gradient(rgba(229, 54, 59, 0.2) 0, rgba(229, 54, 59, 0.2) 1px, transparent 1px);
    background-position: 0 0, 28px 28px;
    background-size: 120px 120px, 140px 140px;
    opacity: 0.18;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.8;
}

.hero-glow-left {
    top: 210px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(53, 88, 176, 0.3) 0%, transparent 70%);
}

.hero-glow-right {
    right: -110px;
    top: 120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(229, 54, 59, 0.24) 0%, transparent 72%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 580px);
    align-items: center;
    gap: 46px;
}

.hero-content {
    max-width: 580px;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #b9f0ce;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.top-badge i {
    font-size: 7px;
}

.hero h1 {
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.text-green {
    color: var(--green-500);
}

.hero-content > p {
    max-width: 560px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-checks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(141, 176, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
}

.hero-checks i {
    color: var(--green-500);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.btn-main,
.btn-outline {
    min-height: 56px;
    padding: 0 24px;
    font-size: 14px;
}

.btn-main {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
    box-shadow: 0 18px 30px rgba(39, 78, 165, 0.28);
}

.btn-outline {
    color: var(--white);
    border: 1px solid rgba(33, 199, 104, 0.28);
    background: rgba(33, 199, 104, 0.08);
}

.hero-footer-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 600;
}

.hero-footer-text i {
    color: var(--green-500);
}

.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: min(100%, 560px);
    margin-left: auto;
    padding: 28px 16px 30px 30px;
}

.image-frame,
.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 34px;
}

.image-frame {
    position: absolute;
    inset: 12px 0 0 18px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.hero-main-img {
    position: relative;
    z-index: 1;
    aspect-ratio: 1408 / 768;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.f-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    min-width: 190px;
    min-height: 92px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-900);
    border-radius: 18px;
    box-shadow: 0 22px 42px rgba(8, 23, 52, 0.2);
}

.f-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--blue-600);
    background: #edf1ff;
}

.star-box {
    color: var(--green-600);
    background: var(--green-100);
}

.f-info strong {
    display: block;
    margin-bottom: 3px;
    font-size: 25px;
    line-height: 1;
}

.f-info span {
    display: block;
    color: var(--text-500);
    font-size: 10px;
    font-weight: 700;
}

.stars {
    margin-top: 6px;
    color: var(--yellow-400);
    font-size: 11px;
    letter-spacing: 0.08em;
}

.f-top {
    top: 4px;
    left: -22px;
}

.f-left {
    left: -34px;
    bottom: 58px;
}

.f-right {
    top: 132px;
    right: -24px;
}

.floating-dot {
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(78, 196, 255, 1) 0%, rgba(78, 196, 255, 0) 70%);
    opacity: 0.8;
}

.dot-one {
    top: 50px;
    right: 10px;
    width: 26px;
    height: 26px;
}

.dot-two {
    left: 26px;
    bottom: 36px;
    width: 22px;
    height: 22px;
}

.dot-three {
    right: 130px;
    bottom: 6px;
    width: 18px;
    height: 18px;
}

.wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    line-height: 0;
}

.section {
    padding: 92px 0;
}

#inicio,
#vantagens,
#servicos,
#segmentos,
#processo,
#depoimentos,
#faq,
#contato,
#trabalhe-conosco {
    scroll-margin-top: 148px;
}

.section-title {
    margin-bottom: 34px;
    text-align: center;
}

.section-title-left {
    text-align: left;
}

.badge-blue,
.badge-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-blue {
    color: var(--blue-600);
    background: #eef2ff;
}

.badge-green {
    color: var(--red-600);
    background: var(--red-100);
}

.section-title h2 {
    margin: 14px 0 10px;
    color: #24395f;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.15;
}

.section-title p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-500);
    font-size: 14px;
}

.section-title-left p {
    margin: 0;
}

.advantages {
    padding-top: 54px;
    content-visibility: auto;
    contain-intrinsic-size: 760px;
}

.advantages-grid,
.services-grid {
    display: grid;
    gap: 22px;
}

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

.info-card,
.service-card,
.process-panel,
.testimonial-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(227, 236, 247, 0.95);
    box-shadow: var(--shadow-sm);
}

.info-card::before,
.service-card::before,
.process-panel::before,
.testimonial-card::before,
.contact-panel::before,
.map-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-600) 0%, var(--red-500) 100%);
}

.info-card,
.service-card,
.testimonial-card {
    border-radius: 20px;
}

.info-card {
    padding: 24px 22px;
}

.info-icon,
.service-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #eef2ff 0%, #fff3f4 100%);
    color: var(--blue-600);
    box-shadow: inset 0 0 0 1px #edf0fb;
}

.info-card h3,
.service-card h3,
.process-item h3,
.testimonial-card strong {
    color: #273c63;
}

.info-card h3,
.service-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.info-card p,
.service-card p,
.process-item p,
.testimonial-card p,
.client span {
    color: var(--text-500);
    font-size: 13px;
}

.services {
    padding-top: 38px;
    content-visibility: auto;
    contain-intrinsic-size: 1240px;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 210px;
    padding: 28px 20px 24px;
}

.service-card .service-icon {
    margin-bottom: 18px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    max-width: 220px;
    margin: 0 auto;
}

.segments-section {
    padding-top: 22px;
    content-visibility: auto;
    contain-intrinsic-size: 420px;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.segment-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(227, 236, 247, 0.95);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    color: #273c63;
    font-weight: 700;
}

.segment-chip i {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(180deg, #eef2ff 0%, #fff3f4 100%);
    color: var(--blue-600);
    box-shadow: inset 0 0 0 1px #edf0fb;
}

.bottom-showcase {
    padding-top: 34px;
    padding-bottom: 100px;
    content-visibility: auto;
    contain-intrinsic-size: 980px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 28px;
    align-items: start;
}

.process-panel {
    padding: 26px 24px;
    border-radius: 22px;
}

.process-list {
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.process-list::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 17px;
    width: 2px;
    background: linear-gradient(180deg, #6f91ea 0%, #ef7f88 100%);
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    align-items: start;
}

.step-bullet {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: var(--red-600);
    background: linear-gradient(180deg, #fff6f7 0%, #eef2ff 100%);
    border: 1px solid #f0d9dc;
    box-shadow: 0 8px 20px rgba(193, 31, 43, 0.1);
}

.testimonials-carousel {
    display: grid;
    gap: 18px;
}

.testimonials-viewport {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(50% - 10px);
    padding: 24px 22px;
}

.rating {
    margin-bottom: 12px;
    color: var(--yellow-400);
    font-size: 15px;
    letter-spacing: 0.1em;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.client-avatar {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #132850 0%, #284f8f 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(39, 78, 165, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-600);
    box-shadow: 0 10px 22px rgba(10, 27, 69, 0.08);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.carousel-button:hover {
    transform: translateY(-2px);
    background: var(--blue-600);
    color: var(--white);
}

.carousel-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(53, 88, 176, 0.2);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.carousel-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--blue-600) 0%, var(--green-500) 100%);
}

.contact-section {
    padding-top: 24px;
    padding-bottom: 58px;
    content-visibility: auto;
    contain-intrinsic-size: 820px;
}

.faq-section {
    padding-top: 24px;
    content-visibility: auto;
    contain-intrinsic-size: 880px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.faq-card {
    position: relative;
    overflow: hidden;
    padding: 26px 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(227, 236, 247, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.faq-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-600) 0%, var(--green-500) 100%);
}

.faq-card h3 {
    margin-bottom: 10px;
    color: #273c63;
    font-size: 18px;
    line-height: 1.3;
}

.faq-card p {
    color: var(--text-500);
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: stretch;
}

.contact-panel,
.map-panel {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(227, 236, 247, 0.95);
    box-shadow: var(--shadow-sm);
    border-radius: 24px;
}

.contact-panel {
    padding: 30px 26px;
}

.contact-list {
    display: grid;
    gap: 16px;
}

.contact-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.contact-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.contact-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef2ff 0%, #fff2f3 100%);
    color: var(--red-600);
    box-shadow: inset 0 0 0 1px #edf0fb;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #273c63;
    font-size: 16px;
}

.contact-item p,
.contact-item a {
    color: var(--text-500);
    font-size: 14px;
    overflow-wrap: anywhere;
}

.contact-item a:hover {
    color: var(--red-600);
}

.map-panel {
    padding: 12px;
}

.map-frame {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
    background: linear-gradient(180deg, #eef2ff 0%, #fff2f3 100%);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.95) contrast(1.02);
}

.site-footer {
    padding: 18px 0 40px;
    background: linear-gradient(180deg, rgba(238, 243, 251, 0) 0%, rgba(230, 236, 248, 0.8) 100%);
}

.careers-section {
    padding-top: 24px;
    padding-bottom: 52px;
    content-visibility: auto;
    contain-intrinsic-size: 380px;
}

.careers-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(33, 199, 104, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(17, 40, 91, 0.98), rgba(35, 68, 138, 0.96));
    color: var(--white);
    box-shadow: 0 20px 48px rgba(10, 27, 69, 0.18);
}

.careers-copy {
    max-width: 680px;
}

.careers-copy .badge-blue {
    color: #d8e4ff;
    background: rgba(255, 255, 255, 0.12);
}

.careers-copy h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.12;
}

.careers-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
}

.careers-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.careers-card .btn-main {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
    box-shadow: 0 18px 30px rgba(21, 168, 87, 0.28);
}

.careers-card .btn-outline {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-500);
    font-size: 13px;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-shell a {
    color: var(--red-600);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .section {
        padding: 74px 0;
    }

    .hero-grid,
    .showcase-grid,
    .contact-grid,
    .contact-topic-grid {
        grid-template-columns: 1fr;
    }

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

    .careers-actions {
        justify-content: flex-start;
    }

    .hero-content {
        max-width: none;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .image-wrapper {
        margin: 0 auto;
    }

    .hero-checks,
    .hero-actions,
    .hero-footer-text {
        justify-content: center;
    }

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

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

@media (max-width: 860px) {
    html {
        scroll-padding-top: 126px;
    }

    #inicio,
    #vantagens,
    #servicos,
    #segmentos,
    #processo,
    #depoimentos,
    #faq,
    #contato,
    #trabalhe-conosco {
        scroll-margin-top: 126px;
    }

    .site-header {
        padding-top: 10px;
    }

    .updates-modal-card {
        grid-template-columns: 52px minmax(0, 1fr) auto;
        gap: 12px;
        padding: 18px;
        border-radius: 20px;
    }

    .updates-modal-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .contact-chooser-dialog {
        padding: 24px 18px 20px;
        border-radius: 22px;
    }

    .contact-chooser-head {
        margin-bottom: 20px;
        padding-right: 36px;
    }

    .nav-shell {
        flex-wrap: wrap;
        gap: 18px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(141, 176, 255, 0.12);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        width: 100%;
    }

    .nav-links li,
    .nav-links a {
        width: 100%;
    }

    .nav-links a {
        justify-content: flex-start;
        min-height: 42px;
        padding: 0 8px;
        border-radius: 10px;
    }

    .nav-links a::after {
        left: 8px;
        right: auto;
        bottom: 5px;
        width: 34px;
    }

    .btn-whatsapp-header {
        width: 100%;
    }

    .hero {
        padding-top: 108px;
    }

    .map-frame {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    html {
        scroll-padding-top: 112px;
    }

    #inicio,
    #vantagens,
    #servicos,
    #segmentos,
    #processo,
    #depoimentos,
    #faq,
    #contato,
    #trabalhe-conosco {
        scroll-margin-top: 112px;
    }

    .section {
        padding: 62px 0;
    }

    .updates-modal-card {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 12px;
        padding: 18px 16px;
    }

    .updates-modal-icon {
        width: 48px;
        height: 48px;
    }

    .updates-modal-controls {
        justify-content: flex-end;
    }

    .contact-chooser {
        padding: 14px 10px;
    }

    .contact-chooser-dialog {
        max-height: 90vh;
        padding: 22px 14px 16px;
        border-radius: 20px;
    }

    .contact-chooser-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .contact-topic-card {
        padding: 20px 18px;
    }

    .contact-topic-actions {
        flex-direction: column;
    }

    .contact-topic-actions .btn-main,
    .contact-topic-actions .btn-outline {
        width: 100%;
    }

    .hero-grid {
        gap: 26px;
    }

    .hero-content {
        text-align: left;
    }

    .top-badge {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
        line-height: 1.08;
    }

    .hero-content > p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-checks,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-main,
    .btn-outline {
        width: 100%;
    }

    .image-wrapper {
        width: 100%;
        max-width: 420px;
        padding: 16px 6px 92px;
    }

    .image-frame {
        inset: 8px 0 68px 8px;
    }

    .f-card {
        min-width: 152px;
        min-height: 78px;
        padding: 10px 12px;
        gap: 10px;
        border-radius: 16px;
    }

    .f-info strong {
        font-size: 18px;
    }

    .f-info span {
        font-size: 9px;
    }

    .f-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .f-top {
        left: 8px;
        top: -4px;
    }

    .f-left {
        left: 0;
        bottom: 4px;
    }

    .f-right {
        top: auto;
        right: 0;
        bottom: 4px;
        min-width: 152px;
    }

    .floating-dot {
        opacity: 0.55;
    }

    .advantages-grid,
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .segments-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .info-card,
    .service-card,
    .testimonial-card,
    .process-panel,
    .contact-panel {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-title {
        margin-bottom: 26px;
    }

    .section-title h2 {
        margin-top: 12px;
        font-size: clamp(1.65rem, 6.8vw, 2.1rem);
    }

    .services-grid,
    .advantages-grid,
    .contact-list {
        gap: 16px;
    }

    .testimonial-card {
        flex-basis: 100%;
    }

    .process-list {
        gap: 16px;
        margin-top: 22px;
    }

    .contact-item {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 14px 0;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .map-panel {
        padding: 10px;
    }

    .map-frame {
        min-height: 280px;
    }

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

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .careers-card {
        padding: 24px 20px;
    }

    .careers-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 16px);
    }

    .site-header {
        padding-top: 8px;
    }

    .nav-shell {
        padding: 10px 12px;
        border-radius: 16px;
    }

    .logo img {
        height: 34px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .updates-modal-card {
        padding: 16px 14px;
    }

    .updates-modal-title {
        font-size: 19px;
    }

    .updates-modal-text {
        font-size: 14px;
    }

    .top-badge {
        padding: 7px 12px;
    }

    .hero-checks span {
        padding: 9px 12px;
        font-size: 11px;
    }

    .btn-main,
    .btn-outline,
    .btn-whatsapp-header {
        min-height: 50px;
        font-size: 13px;
    }

    .image-wrapper {
        padding: 10px 2px 88px;
    }

    .hero-main-img,
    .image-frame {
        border-radius: 24px;
    }

    .f-card {
        min-width: 138px;
        min-height: 72px;
        padding: 9px 10px;
    }

    .f-info strong {
        font-size: 17px;
    }

    .stars {
        font-size: 9px;
    }

    .f-top {
        left: 2px;
    }

    .f-left,
    .f-right {
        bottom: -2px;
    }

    .info-card h3,
    .service-card h3 {
        font-size: 17px;
    }

    .service-card,
    .info-card,
    .testimonial-card {
        border-radius: 18px;
    }

    .testimonial-card,
    .service-card,
    .info-card,
    .process-panel,
    .contact-panel {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .client {
        gap: 10px;
    }

    .client-avatar {
        width: 40px;
        height: 40px;
    }

    .carousel-controls {
        gap: 10px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .map-frame {
        min-height: 240px;
    }

    .footer-shell,
    .footer-meta {
        font-size: 12px;
    }
}
