:root {
    --bg-page: #ffffff;
    --bg-hearder-menu: #f4f5f7;
    --bg-card: #e6e6e6;
    --bg-search: #01BDC1;
    --okto: #018488;
    --primary: #ff9a3d;
    --accent: #ff9a3d;
    --primary-green: #009b7b;
    --accent-green: #009b7b;
    --text-main: #0f172a;
    --text-muted: #6b7280;
    --text-light: #e5e7eb;
    --border-soft: #e5e7eb;
    --border-gray: #bababa;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

/* PAGE BASE */

.page {
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */

header {
    background: var(--bg-page);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: var(--bg-hearder-menu);
    padding: 10px 30px;
    border-radius: 40px;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    font-size: 14px;
}

.link-header {
    text-decoration: none;
    color: #3b3b3b;
    margin-right: 60px;
    font-size: 17px;
}

.link-download-app {
    font-weight: bold;
    color: #01BDC1;
}

/* BUTTON BASE */

.btn {
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}

/* SEARCH SECTION */

.search-section {
    padding: 16px 0 12px;
}

.search-card {
    background: var(--bg-search);
    color: var(--text-light);
    border-radius: 24px;
    padding: 20px 16px;
    box-shadow: var(--shadow-soft);
}

.search-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    align-items: center;
}

.search-title {
    font-size: 30px;
}

.search-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab-group {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2px;
    display: flex;
}

.ml-10 {
    margin-left: 10px;
}

.search-tab {
    font-size: 12px;
    padding: 10px 10px;
    border-radius: var(--radius-pill);
    border: none;
    background: transparent;
    color: #01BDC1;
    cursor: pointer;
    min-width: 120px;
}

.search-tab--active {
    background-color: #01BDC1;
    color: #ffffff;
}

/* SEARCH FORM GRID */

.search-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.field {
    background: #ffffff;
    border-radius: var(--radius-pill);
    padding: 8px 12px;
    align-items: center;
    display: flex;
    color: #111827;
    font-size: 13px;
}

.field-250 {
    width: 250px;
}

.field-150 {
    width: 150px;
}

.field-140 {
    width: 140px;
}

.mr-10 {
    margin-right: 10px;
}

.flex-fill {
    flex: 1;
}

.input-form-busca {
    border: none;
    width: 100%;
    outline: none;
    font-size: 13px;
    background-color: transparent;
}

/* Swap icon between origem/destino */

.swap-icon {
    width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swap-symbol {
    font-size: 30px;
}

/* Search button */

.btn-form {
    display: flex;
    align-items: center;
}

.btn-form .btn {
    text-align: center;
    width: 125px;
    background-color: var(--accent);
    color: #ffffff;
}

/* Search footer */

.search-footer {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.link-ghost {
    cursor: pointer;
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #ffffff;
    font-size: 16px;
}

/* HERO */

.hero-section {
    padding: 50px 0;
    position: relative;
}

.hero-card {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 24px 58px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-main {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    margin: 0 0 10px;
    color: var(--okto);
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 24px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    padding: 10px 0 20px 0;
}

.btn-cta-main {
    background: var(--primary);
    padding-inline: 20px;
    color: #ffffff;
    width: 160px;
    height: 45px;
}

.btn-cta-secondary {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    width: 160px;
    height: 45px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-group {
    display: flex;
}

.avatar-placeholder {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d1d5db;
    border: 2px solid #ffffff;
    margin-left: -8px;
}

.avatar-placeholder:first-child {
    margin-left: 0;
}

.downloads-text {
    color: var(--text-muted);
}

/* Hero phone image (desktop) */

.hero-phone-wrapper {
    position: absolute;
    top: 0;
    right: 100px;
    z-index: 999;
    width: 550px;
}

/* SECONDARY SECTION */

.section-secondary {
    padding: 120px 0 30px;
}

.section-secondary-inner {
    display: flex;
    flex-direction: row;
    gap: 24px;
    background: var(--okto);
    border-radius: 10px;
    padding: 40px 0 0;
    position: relative;
}

.phones-wrapper {
    flex: 3;
    position: relative;
}

.phones-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
}

.phones-row-absolute {
    position: absolute;
    top: -120px;
    width: 100%;
    justify-content: center;
}

/* Features card */

.features-card {
    flex: 2;
    color: #ffffff;
    border-radius: 24px;
    padding: 0 0 30px;
    position: relative;
}

.features-label {
    font-size: 16px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
}

.features-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.plus-icon {
    font-size: 55px;
    margin-right: 10px;
    color: var(--primary);
}

.features-title {
    font-size: 55px;
    font-weight: 700;
}

/* RESOURCES / TABS SECTION */

.resources-section {
    padding: 60px 0;
}

.resources-title {
    text-align: center;
    font-size: 45px;
    line-height: 1.2;
    color: var(--primary);
    font-weight: 700;
    margin: 0 0 72px;
}

.resources-panel {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-gray);
    padding: 56px 24px 24px;
}

/* Tabs */

.resources-tabs {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: calc(100% - 80px);
}

.resources-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid var(--border-gray);
    background-color: #ffffff;
    color: #666666;
    font-size: 16px;
    padding: 12px 18px;
    height: 55px;
    cursor: pointer;
    white-space: nowrap;
    width: 260px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.resources-tab img {
    width: 22px;
    height: 22px;
    transition: filter 0.2s ease;
}

/* Tab ativa / hover */

.resources-tab--active,
.resources-tab:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.resources-tab--active img,
.resources-tab:hover img {
    filter: brightness(0) invert(1);
}

/* Conteúdo */

.resources-content {
    position: relative;
    display: none;
    min-height: 350px;
}

.resources-content.active {
    display: block;
}

.resources-panel-title {
    text-align: center;
    font-size: 32px;
    color: var(--okto);
    margin: 40px 0 30px 0;
}

.resources-panel-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 80%;
    margin: 0 auto 58px;
    line-height: 1.6;
}

/* Cards */

.resources-cards {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.resources-card {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.resources-card-title {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 0;
    font-weight: 400;
}

/* BANNER - NÃO ADIE SUAS VANTAGENS */

.benefits-banner {
    background: var(--primary);
    padding: 30px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    height: 130px;
}

.benefits-banner-inner {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.benefits-banner-title {
    font-size: 48px;
    margin: 0 0 8px;
}

.benefits-banner-illustration {
    position: absolute;
    top: -40px;
    right: 450px;
}

.rotate-image {
    transform: rotate(30deg);
    width: 270px;
}

.benefits-banner-cta {
    background: #ffffff;
    color: var(--okto);
    font-weight: 600;
    padding-inline: 20px;
    height: 50px;
    width: 300px;
    border: 1px solid #000;
}

/* OUTRAS FERRAMENTAS */

.tools-section {
    padding: 40px 0 70px;
}

.tools-header {
    text-align: left;
    margin-bottom: 24px;
}

.tools-eyebrow {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 4px;
}

.tools-title {
    font-size: 40px;
    font-weight: bold;
    color: var(--okto);
    margin: 0 0 6px;
}

.tools-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin: 0;
}

/* Colunas de ferramentas */

.tools-columns {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.tools-column {
    display: flex;
    flex: 1;
    flex-direction: column;
}

/* Card base */

.tools-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
}

.tools-card-tall {
    height: 500px;
    margin-bottom: 30px;
}

.tools-card-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card outlined */

.tools-card--outlined {
    border: 2px solid var(--okto);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    min-height: 150px;
}

.tools-card--highlight {
    border: none;
    background-color: var(--primary);
}

.tools-card--image {
    max-height: 500px;
}

.tools-card-title {
    margin: 0;
    font-size: 36px;
    line-height: 1.3;
    color: var(--okto);
    font-weight: 700;
}

.tools-card-title--highlight {
    color: #ffffff;
}

/* Footer link */

.tools-footer-link {
    margin-top: 16px;
    text-align: right;
}

.tools-link {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
}

/* ===========================
   DEPOIMENTOS / CARROSSEL
   =========================== */

.testimonials-section {
    padding: 20px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 32px;
}

.testimonials-eyebrow {
    font-size: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 8px;
}

.testimonials-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.3;
    color: var(--okto);
}

.testimonials-slider {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    overflow: visible;
}

/* Card base */

.testimonial-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 70%;
    max-width: 900px;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    pointer-events: none;
    background: #ffffff;
    border-radius: 36px;
    border: 1px solid var(--okto);
    padding: 40px 48px 32px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, opacity 0.35s ease;
    min-height: 302px;
}

.testimonial-card--active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    z-index: 3;
    pointer-events: auto;
}

.testimonial-card--prev {
    opacity: 0.4;
    transform: translateX(-90%) scale(0.9);
    z-index: 2;
}

.testimonial-card--next {
    opacity: 0.4;
    transform: translateX(-10%) scale(0.9);
    z-index: 2;
}

.testimonial-card--hidden {
    opacity: 0;
    pointer-events: none;
}

/* Conteúdo */

.testimonial-stars {
    color: #fbbf24;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial-heading {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--okto);
}

.testimonial-text {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d1d5db;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--okto);
}

.testimonial-source {
    font-size: 12px;
    color: var(--text-muted);
}

/* Controles */

.testimonials-controls {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.testimonials-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 4px 8px;
    color: #9ca3af;
}

.testimonials-arrow:hover {
    color: var(--okto);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #d1d5db;
    border: none;
    cursor: pointer;
}

.testimonials-dot--active {
    width: 16px;
    height: 16px;
    background: var(--primary);
}

/* ===========================
   SEJA PREMIUM / PLANOS
   =========================== */

.premium-section {
    padding: 70px 0;
    background: #f9fafb;
}

.premium-header {
    text-align: center;
    margin-bottom: 40px;
}

.premium-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 8px;
}

.premium-title {
    margin: 0 0 10px;
    font-size: 32px;
    color: var(--okto);
}

.premium-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.6;
    margin-inline: auto;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}

.pricing-plan {
    flex: 1;
    border-radius: 28px;
    padding: 28px 32px 32px;
}

.pricing-plan--premium {
    background: radial-gradient(circle at top right, #93c1c2, #ffffff 40%);
    border: 1px solid var(--okto);
}

.plan-name {
    font-size: 26px;
    margin: 0 0 20px;
}

.plan-name--basic {
    color: #6b7280;
}

.plan-name--premium {
    color: var(--okto);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
}

.plan-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.plan-icon--included {
    background: var(--okto);
    color: #ffffff;
}

.plan-item--excluded {
    color: #d1d5db;
}

.plan-item--excluded .plan-icon--excluded {
    border: 1px solid #d1d5db;
    color: #d1d5db;
}

.plan-price--basic {
    color: #9ca3af;
    font-size: 40px;
}

.plan-price--premium {
    color: var(--okto);
    font-size: 20px;
}

.plan-price-label {
    margin-right: 4px;
    font-size: 14px;
}

.plan-price-value {
    font-size: 38px;
    font-weight: 600;
}

.plan-price-period {
    margin-left: 4px;
    font-size: 14px;
    color: #6b7280;
}

/* ===========================
   DOWNLOAD APP SECTION
   =========================== */

.download-app-section {
    padding: 60px 0;
    background: #f3f4f6;
    background-image: url("../img/bk-download.png");
}

.download-app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.download-app-left {
    flex: 1;
}

.download-app-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 28px;
}

.download-app-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 6px;
    padding: 10px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #1f2937;
    font-size: 12px;
    min-width: 180px;
}

.store-button--google-nome {
    font-size: 20px;
}

/* ===========================
   FAQ / PERGUNTAS FREQUENTES
   =========================== */

.faq-section {
    padding: 70px 0;
    background: #f9fafb;
}

.faq-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.faq-column {
    flex: 2;
}

.faq-header {
    margin-bottom: 24px;
}

.faq-title {
    margin: 0 0 8px;
    font-size: 32px;
    color: var(--okto);
}

.faq-subtitle {
    padding-top: 10px;
    margin: 0;
    font-size: 20px;
    color: var(--text-muted);
}

.faq-accordion {
    background: #f9fafb;
    border-radius: 16px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-toggle {
    width: 100%;
    padding: 20px 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    color: #111827;
}

.faq-question-text {
    flex: 1;
    text-align: left;
}

.faq-icon {
    margin-left: 12px;
    font-size: 12px;
    color: var(--okto);
    transition: transform 0.2s ease;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

.faq-panel p {
    margin: 0 0 16px;
    padding-right: 60px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.faq-panel li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 20px;
}

.faq-item--open .faq-panel {
    max-height: 200px;
    opacity: 1;
}

.faq-item--open .faq-icon {
    transform: rotate(180deg);
}

.faq-support {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.faq-support-card {
    height: 100%;
    max-width: 320px;
    background: var(--primary);
    border-radius: 28px;
    padding: 40px 28px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.faq-support-text {
    margin: 0 0 24px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 600;
}

.faq-support-button {
    background: #ffffff;
    color: var(--okto);
    font-weight: 600;
    font-size: 16px;
    border-radius: 999px;
    width: 100%;
    justify-content: center;
    height: 45px;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
    background: #007879;
    color: #ffffff;
    padding: 40px 0 24px;
    font-size: 14px;
}

.footer-main {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
}

.footer-column--brand {
    flex: 3;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-description {
    margin: 0 0 24px;
    color: #e5e7eb;
    font-size: 18px;
    letter-spacing: 0.6px;
}

.footer-social-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 400;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
}

.footer-social-separator {
    width: 1px;
    height: 24px;
    background: #ffffff66;
    margin: 0 20px;
}

.footer-divider {
    width: 1px;
    background: #ffffff66;
    align-self: stretch;
}

.footer-column--stores {
    flex: 2;
}

.footer-column--links {
    flex: 2;
}

.footer-heading {
    margin: 4px 0 20px;
    font-size: 16px;
    font-weight: 600;
}

.footer-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.6px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
}

.footer-bottom-line {
    height: 1px;
    background: #ffffff66;
    margin-bottom: 10px;
}

.footer-copy {
    padding: 20px 0;
    margin: 0;
    font-size: 14px;
    color: #e5e7eb;
}

/* ===========================
   BREAKPOINTS
   =========================== */

/* Desktop médio */
@media (min-width: 900px) {
    .premium-title {
        font-size: 36px;
    }

    .pricing-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .pricing-plan--basic {
        margin-right: 16px;
    }
}

/* Tablet / telas até 1200px */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .hero-title {
        font-size: 46px;
    }

    .resources-title {
        font-size: 34px;
    }

    .tools-title {
        font-size: 32px;
    }

    .resources-tabs {
        width: calc(100% - 40px);
    }
}

/* Mobile / tablet pequeno */
@media (max-width: 900px) {
    .hero-main {
        flex-direction: column;
        padding: 0;
    }

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

    .section-secondary-inner {
        flex-direction: column;
        padding: 40px 16px 24px;
    }

    .nav-list {
        gap: 16px;
    }

    .link-header {
        margin-right: 16px;
    }

    .hero-title {
        font-size: 40px;
    }

    .features-title {
        font-size: 32px;
    }

    .hero-phone-wrapper {
        position: static;
        width: 70%;
        margin: 20px auto 0;
        text-align: center;
    }

    .hero-phone-wrapper img {
        width: 100%;
        height: auto;
    }

    .section-secondary {
        padding: 60px 0 24px;
    }

    .phones-row-absolute {
        position: static;
        top: auto;
        margin-bottom: 16px;
    }

    .features-title {
        font-size: 32px;
    }

    .plus-icon {
        font-size: 40px;
    }

    .tools-columns {
        flex-direction: column;
    }

    .tools-card-tall {
        height: auto;
    }

    .tools-section article.tools-card img {
        width: 100%;
        height: auto;
    }

    .tools-card--outlined {
        min-height: 140px;
    }

    .tools-card-title {
        font-size: 28px;
    }

    .testimonials-track {
        height: auto;
    }

    .testimonial-card,
    .testimonial-card--prev,
    .testimonial-card--next {
        position: relative;
        left: 0;
        width: 100%;
        max-width: none;
        transform: scale(1) translateX(0);
        opacity: 1;
        margin-bottom: 16px;
    }

    .testimonials-slider {
        padding-inline: 8px;
    }
}

/* Mobile principal (até 768px) */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    /* HEADER */
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 16px;
        gap: 8px;
    }

    .logo-area img {
        max-width: 160px;
    }

    .nav-list {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .link-header {
        margin-right: 0;
        font-size: 14px;
    }

    /* SEARCH */
    .search-card {
        padding: 16px 12px;
    }

    .search-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .search-title {
        font-size: 22px;
    }

    .search-tabs {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .search-tabs::-webkit-scrollbar {
        display: none;
    }

    .search-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .field-250,
    .field-150,
    .field-140 {
        width: 100%;
    }

    .flex-fill {
        display: none;
    }

    .swap-icon {
        order: -1;
        width: auto;
        justify-content: flex-start;
    }

    .swap-symbol {
        font-size: 22px;
    }

    .btn-form {
        width: 100%;
    }

    .btn-form .btn {
        width: 100%;
    }

    .search-footer {
        justify-content: flex-start;
    }

    /* HERO */
    .hero-section {
        padding: 32px 0 16px;
    }

    .hero-card {
        padding: 20px 18px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    /* SECONDARY */
    .section-secondary-inner {
        padding: 24px 16px;
    }

    .phones-wrapper {
        order: -1;
    }

    .features-card {
        padding: 0;
    }

    /* RESOURCES */
    .resources-section {
        padding: 40px 0;
    }

    .resources-title {
        font-size: 26px;
        padding: 0 8px;
    }

    .resources-panel {
        padding: 24px 16px 16px;
    }

    .resources-tabs {
        position: static;
        transform: none;
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 10px;
        column-gap: 10px;
        margin-bottom: 16px;
    }

    .resources-tab {
        width: 100%;
        max-width: none;
        font-size: 14px;
        padding: 10px 14px;
        height: auto;
        white-space: normal;
    }

    .resources-panel-title {
        font-size: 24px;
        margin: 20px 0 16px;
    }

    .resources-panel-subtitle {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .resources-cards {
        display: flex;
        flex-direction: column;
    }

    /* BANNER */
    .benefits-banner {
        height: auto;
        padding: 24px 0 32px;
    }

    .benefits-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .benefits-banner-title {
        font-size: 26px;
    }

    .benefits-banner-illustration {
        position: static;
        align-self: center;
    }

    .rotate-image {
        width: 200px;
    }

    .benefits-banner-cta {
        width: 100%;
    }

    /* DEPOIMENTOS */
    .testimonials-title {
        font-size: 24px;
    }

    /* SEJA PREMIUM */
    .premium-section {
        padding: 50px 0;
    }

    .premium-title {
        font-size: 26px;
    }

    .premium-subtitle {
        font-size: 14px;
        padding: 0 8px;
    }

    .pricing-grid {
        flex-direction: column;
    }

    .pricing-plan {
        padding: 20px 18px 24px;
    }

    .plan-price--basic {
        font-size: 28px;
    }

    /* DOWNLOAD APP */
    .download-app-section {
        background-position: center;
    }

    .download-app-container {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .download-app-title {
        font-size: 28px;
    }

    .download-app-buttons {
        width: 100%;
    }

    .download-app-buttons .store-button {
        flex: 1 1 100%;
        justify-content: center;
    }

    /* FAQ */
    .faq-layout {
        flex-direction: column;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-support {
        order: -1;
        margin-bottom: 24px;
        justify-content: center;
    }

    .faq-support-card {
        max-width: none;
    }

    /* FOOTER */
    .site-footer {
        padding-top: 32px;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-divider {
        display: none;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-store-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-store-buttons .store-button {
        flex: 1 1 100%;
    }

    .footer-copy {
        font-size: 12px;
        padding: 12px 0;
    }

    .testimonials-controls {
        display: none;
    }
}

/* 2 itens por linha nas tabs em telas intermediárias */
@media (min-width: 480px) and (max-width: 768px) {
    .resources-tab {
        width: calc(50% - 8px);
    }
}

.fixed-cookies-term {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background-color: #FE5E3F;
    z-index: 10;
    padding: 0 20px;
    margin-left: 0;
}

.container-cookies-text {
    display: table;
    height: 80px;
    padding-right: 20px;
}

.container-cookies-btn {
    height: 80px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.container-btn {
    height: 50px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background-color: #fff;
    box-shadow: var(--shadow-soft);
    border-radius: 10px;
}

.btn-outline {
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 13px;
}

.text-term {
    font-size: 14px;
    color: white;
    display: table-cell;
    vertical-align: middle;
    text-align: justify;
}

.text-term a {
    font-size: 13px;
    color: white;
    text-decoration: underline;
}

@media (min-width: 320px) and (max-width: 425px) {
    .fixed-cookies-term {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 160px;
        background-color: #FE5E3F;
        z-index: 10;
        padding: 5px;
        margin-left: 0;
    }

    .container-cookies-btn {
        margin-top: 15px;
        text-align: center;
        padding: 0;
    }

    .container-cookies-btn a.btn-outline {
        font-size: 11px !important;
    }

    .text-term {
        font-size: 11px;
        color: white;
    }

    .text-term a {
        font-size: 11px;
        color: white;
        text-decoration: underline;
    }

    .modalBoxPoliticaCookies {
        background-color: #fff;
        padding: 10px;
        overflow-y: scroll;
    }
}

/* ----------------------------------------------------------------------------
    Modal boxes
---------------------------------------------------------------------------- */
.iw-modalOverlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.modalBoxPoliticaCookies {
    background-color: #fff;
    padding: 10px;
    overflow-y: scroll;
}

/* ----------------------------------------------------------------------------
    FIM Modal boxes
---------------------------------------------------------------------------- */

.footer-spacer {
    padding: 20px 0 0;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.link-termos-privacidade {
    color: #FFF;
    text-decoration: underline;
}