@charset "ISO-8859-1";

:root {
    --primary: #410195;
    --primary-dark: #410195;
    --primary-light: #eef0ff;
    --primary-gradient: linear-gradient(135deg, #7144e2 0%, #410195 100%);
    --secondary: #6373ff;
    --text-dark: #1a1a2e;
    --text-medium: #3d3d5a;
    --text-light: #7e7e9a;
    --white: #ffffff;
    --off-white: #f8f9ff;
    --gray: #e4e6f2;
    --success: #08d484;
    --warning: #ffb30f;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow: 0 8px 24px rgba(86, 98, 246, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 16px 36px rgba(86, 98, 246, 0.18);
    --shadow-highlight: 0 8px 24px rgba(86, 98, 246, 0.25);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --brand: #410195;
    --brand-dark: #2d0168;
    --brand-mid: #7b3cc4;
    --text: #1a1025;
    --text-muted: #5a4e70;
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        "Open Sans",
        "Helvetica Neue",
        sans-serif; */
    /* font-family: "Optima", "Helvetica Neue", Arial, sans-serif; */

    /* font-family: 'Poppins', sans-serif; */
    /* font-family: "Montserrat", "Helvetica Neue", sans-serif; */
    font-family: "Montserrat", "Helvetica Neue", sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
}

.text-bold {
    font-weight: bold;
}

.container {
    width: 100%;
    max-width: 1600px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

section {
    padding: 3rem 0;
    position: relative;
}

/* Utilities */
.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 4rem !important;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-right: 2rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.logo-icon img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    /* padding-bottom: 2px; */
    position: relative;
}

.nav-links,
.nav-links ul,
.nav-links dl,
.nav-links ol,
.nav-links li {
    margin-bottom: 0;
}


.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(86, 98, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(86, 98, 246, 0.3);
}

.btn-plano-lg {
    padding: 0.575rem 3.75rem;
    font-size: 1rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 65vh;
    background-image: url("/imagem/IMG_3866.PNG");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 5rem 0 3rem 4rem;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-mobile-image {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.hero-mobile-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.card-header {
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
}

/* Grid do hero: 2 colunas no desktop, 1 no mobile */
.teste3 {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 325px);
    align-items: start;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: 2rem;
}

.teste3>div:first-child,
.teste3>.hero-benefits {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start !important;
    gap: 1.1rem;
    max-width: 620px;
    padding-top: 0;
}

.teste3>div:first-child>div,
.hero-benefits>div {
    background: rgba(255, 255, 255, 0.62);
    border: 2px solid rgba(65, 1, 149, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.teste3>div:first-child>div:nth-child(1),
.hero-benefits>div:nth-child(1) {
    animation: border-loop 4s ease-in-out infinite;
    animation-delay: 0s;
}

.teste3>div:first-child>div:nth-child(2),
.hero-benefits>div:nth-child(2) {
    animation: border-loop 4s ease-in-out infinite;
    animation-delay: 1.33s;
}

.teste3>div:first-child>div:nth-child(3),
.hero-benefits>div:nth-child(3) {
    animation: border-loop 4s ease-in-out infinite;
    animation-delay: 2.66s;
}

.teste3>div:second-child>div:nth-child(1) {
    animation: border-loop 4s ease-in-out infinite;
    animation-delay: 5.2s;
}

@keyframes border-loop {
    0% {
        border-color: rgba(65, 1, 149, 0.15);
        box-shadow: 0 0 0 0 rgba(65, 1, 149, 0);
    }

    25% {
        border-color: rgba(65, 1, 149, 0.8);
        box-shadow: 0 0 12px 2px rgba(65, 1, 149, 0.4);
    }

    50% {
        border-color: rgba(65, 1, 149, 0.6);
        box-shadow: 0 0 8px 1px rgba(65, 1, 149, 0.3);
    }

    75% {
        border-color: rgba(65, 1, 149, 0.4);
        box-shadow: 0 0 4px 0.5px rgba(65, 1, 149, 0.2);
    }

    100% {
        border-color: rgba(65, 1, 149, 0.15);
        box-shadow: 0 0 0 0 rgba(65, 1, 149, 0);
    }
}

.teste3 span[style*="font-size: 20px"],
.teste3 span[style*="font-size: 18px"] {
    line-height: 1.65 !important;
    color: var(--text) !important;
    font-weight: 500 !important;
}

.badge {
    display: inline-block;
    padding: 9px 14px;
    margin-bottom: 22px;
    font-weight: 700;
    color: #f8f5ff;
    background: rgba(110, 0, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 8px 24px rgba(65, 1, 149, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ============================================================
   HERO FORM CARD
   ============================================================ */
.hero-form-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: var(--radius-xl);
    box-shadow:
        0 8px 32px rgba(65, 1, 149, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
    align-self: start;
}

.form-card-header {
    background: rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: rgba(65, 1, 149, 0.85);
}

.form-card-body {
    padding: 0.70rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-control {
    width: 100%;
    padding: 0.6rem 0.875rem;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-family: var(--font-body);
    color: var(--text);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition:
        border-color 0.18s,
        box-shadow 0.18s,
        background 0.18s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-control::placeholder {
    color: rgba(65, 1, 149, 0.4);
}

.form-control:focus {
    border-color: rgba(65, 1, 149, 0.5);
    box-shadow: 0 0 0 3px rgba(65, 1, 149, 0.1);
    background: rgba(255, 255, 255, 0.72);
}

.form-select-styled {
    width: 100%;
    padding: 0.6rem 0.875rem;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-family: var(--font-body);
    color: var(--text);
    outline: none;
    appearance: none;
}

.form-select-styled:focus {
    border-color: rgba(65, 1, 149, 0.5);
    box-shadow: 0 0 0 3px rgba(65, 1, 149, 0.1);
    background: rgba(255, 255, 255, 0.72);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(65, 1, 149, 0.4);
    pointer-events: none;
}

.form-required-note {
    font-size: 0.675rem;
    color: rgba(65, 1, 149, 0.45);
}

.btn-submit {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-body);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    letter-spacing: 0.01em;
    margin-top: 0.25rem;
    transition:
        opacity 0.18s,
        transform 0.15s,
        box-shadow 0.18s;
    box-shadow:
        0 4px 14px rgba(65, 1, 149, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(65, 1, 149, 0.38);
}

.btn-submit:active {
    transform: translateY(0);
    opacity: 0.86;
}

/* ============================================================
   FAIXA DE NÚMEROS
   ============================================================ */
.faixa {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    min-height: 125px;
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem 8%;
    flex-wrap: nowrap;
    text-align: center;
}

.separator {
    border-right: 4px solid white;
    border-radius: 4px;
    height: 50px;
}

.faixa span {
    font-weight: bold;
    font-size: clamp(24px, 4vw, 40px);
}

/* ============================================================
   SEÇÃO CARDS "DORES"
   ============================================================ */
.operacao {
    overflow-x: hidden;
    width: 100%;
}

.operacao-content {
    padding: 0 4rem;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.center {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 48px;
}

.center h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.center p {
    color: var(--text);
    font-size: 18px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: 100%;
    box-sizing: border-box;
}

.card-t {
    background: white;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(20, 20, 20, 0.06);
    border: 1px solid #eee;
    transition: 0.25s;
    text-align: center;
}

.card-t:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.card-t h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.card-t p {
    color: var(--text);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    padding: 2rem 0;
    background-color: var(--off-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 4rem;
}

.feature-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-highlight);
    border-color: var(--primary-light);
}

.feature-item-icon {
    margin-bottom: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.75rem;
    background-color: #f3f0ff;
    color: #410195;
    flex-shrink: 0;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-item span {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* ============================================================
   SEÇÃO MODULAR - EFEITO ESCADA CORRIGIDO
   ============================================================ */
.modular {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(135deg, #f0e8ff 0%, #e8f0ff 50%, #f5eeff 100%);
}

.modular-container {
    padding: 0 4rem;
}

.modular-card {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.45);
    box-shadow: rgba(65, 1, 149, 0.18) 0 8px 32px, rgba(255, 255, 255, 0.45) 0 1px 0 inset;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    overflow: hidden;
    padding: 3rem;
}

.modular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Coluna da esquerda (texto) */
.modular-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modular-header {
    text-align: left;
}

.modular-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.modular-highlight {
    display: inline-block;
    font-size: clamp(2rem, 5vw, 4rem);
}

.modular-subtitle {
    display: block;
    color: var(--text-medium);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 600px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.modular-strong {
    font-weight: 900;
    color: var(--primary);
}

.modular-divider {
    width: 60px;
    margin: 1.25rem 0;
    border: none;
    border-top: 2px solid var(--primary);
    opacity: 0.3;
}

.modular-btn-wrapper {
    width: 100%;
    max-width: 360px;
    margin-top: 1.5rem;
}

/* Coluna da direita - CARDS EM ESCADA */
.modular-plans-col {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    min-height: 500px;
    /* IMPORTANTE: altura mínima para o align-self funcionar */
}

.modular-plan-item {
    flex: 1;
    display: flex;
}

/* Cards individuais */
.modular-item {
    background-color: var(--white);
    padding: 1.75rem 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(86, 98, 246, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e4e6f2;
    text-align: center;
    position: relative;
    width: 100%;
}

.modular-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(86, 98, 246, 0.18);
    border-color: #eef0ff;
}

.modular-item-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.75rem;
    background-color: #f3f0ff;
    color: #410195;
}

.modular-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #410195;
}

.modular-item p {
    color: #7e7e9a;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cta-modular {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #410195;
    color: #fff !important;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(65, 1, 149, 0.25);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    box-sizing: border-box;
    white-space: normal;
}


/* Botão */
.btn-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(65, 1, 149, 0.3);
}

/* ============================================================
   SEÇÃO RESPONSIVO
   ============================================================ */
.responsivo {
    padding: 2rem 0;
    position: relative;
    background: linear-gradient(135deg, #f0e8ff 0%, #e8f0ff 50%, #f5eeff 100%);
}

.responsivo-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.responsivo-first {
    align-content: center;
    padding-left: 4rem;
    align-items: center;
    justify-content: center;
}

.responsivo-image {
    width: 100%;
}

.responsivo-text {
    flex: 1 1 45%;
    min-width: 0;
    padding-left: 2rem;
}

.responsivo-image {
    flex: 1 1 45%;
    min-width: 0;
}

.responsivo-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.responsivo-header {
    text-align: start;
    margin-bottom: 2rem;
    max-width: 800px;
}

.responsivo-title {
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    font-weight: 800;
}

.responsivo-subtitle {
    color: var(--text-medium);
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    max-width: 700px;
    font-weight: 500;
    text-align: start;
}

/* ============================================================
   TESTIMONIALS HEADER
   ============================================================ */
.testemonial-header {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.testemonial-title {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.testemonial-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    text-align: center;
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials {
    padding: 2rem 0;
    background-color: var(--off-white);
    position: relative;
}

.testimonial-wrapper {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-highlight);
    border-color: var(--primary-light);
}

.testimonial-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--warning);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    margin-bottom: 2rem;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    flex-grow: 1;
}

.testimonial-content::before {
    content: "";
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    line-height: 0;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--primary-light);
    background-color: #f0f0f0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    color: #222;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: 0px;
}

.carousel-next {
    right: 0px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    background: var(--primary-gradient);
    padding: 3rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0) 70%);
    width: 800px;
    height: 800px;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* ============================================================
   FOOTER ANTIGO
   ============================================================ */
footer {
    background-color: #1a1a2e;
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    background: radial-gradient(circle,
            rgba(86, 98, 246, 0.2) 0%,
            rgba(86, 98, 246, 0) 70%);
    width: 800px;
    height: 800px;
    bottom: -500px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    color: var(--white);
}

.footer-logo a {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
}

.footer-description {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 360px;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.footer-contact-item i {
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* ============================================================
   MODAL SUCESSO
   ============================================================ */
.modal-sucesso {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-sucesso.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-conteudo {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-sucesso.show .modal-conteudo {
    transform: translateY(0);
}

.fechar-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fechar-modal:hover {
    color: #333;
}

.modal-icon {
    font-size: 60px;
    color: #4bb543;
    margin-bottom: 20px;
    user-select: none;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
    border: none;
    border-top: 1px solid rgb(65 1 149);
    margin: 1.75rem 0;
}

/* ============================================================
   TESTIMONIALS SECTION (NOVO CAROUSEL)
   ============================================================ */
.testimonials-section {
    padding: 2rem 0;
    background-color: var(--off-white);
    position: relative;
}

.testimonials-header {
    text-align: center;
    max-width: 806px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(17, 24, 39, 0.06);
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-highlight);
}

.logo-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

.stars {
    color: #f5b301;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.quote {
    color: #111827;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 20px;
    flex: 1;
}

.testimonial-card strong {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.ts-prev,
.ts-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #410195;
    transition:
        background 0.2s,
        box-shadow 0.2s;
}

.ts-prev:hover,
.ts-next:hover {
    background: #f3f0ff;
    box-shadow: 0 4px 12px rgba(65, 1, 149, 0.15);
}

.ts-prev {
    left: 0;
}

.ts-next {
    right: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%,
            #5b13c9 0%,
            #410195 35%,
            #1b063d 100%);
    padding: 70px 24px 60px;
    color: #fff;
    text-align: center;
}

.cta-bg-mark {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    width: clamp(200px, 28vw, 480px);
    height: clamp(200px, 28vw, 480px);
    pointer-events: none;
    background-image: url("/imagem/wowve-logo-branca.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.cta-content h2 {
    margin: 0;
    font-size: clamp(28px, 5vw, 75px);
    line-height: 1.05;
    font-weight: 100;
    letter-spacing: -1.5px;
    color: var(--white);
}

.cta-content h2 span {
    color: var(--white);
    font-weight: 900;
}

.cta-content p {
    margin: 28px auto 32px;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content p strong {
    color: #a879ff;
    font-weight: 800;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: #410195;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cta-button span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #6f2cff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

/* ============================================================
   FOOTER WOW
   ============================================================ */
.footer-wow {
    background: #fff;
    color: #111827;
    padding: 54px 24px 24px;
    font-family: inherit;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1fr;
    gap: 56px;
}

.footer-col {
    border-left: 1px solid #e5e7eb;
    padding-left: 48px;
}

.footer-col:first-child {
    border-left: none;
    padding-left: 0;
}

.footer-col p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    font-weight: 600;
}

.footer-col h3 {
    font-size: 23px;
    margin: 0 0 28px;
    color: #111827;
    font-weight: 900;
    position: relative;
}

.footer-col h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: #410195;
    margin-top: 10px;
    border-radius: 99px;
}

.footer-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0.5rem;
}

.footer-line>span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f3edff;
    color: #410195;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: 0 0 42px;
}

.footer-line strong {
    display: block;
    font-size: 16px;
    color: #111827;
    margin-bottom: 3px;
}

.footer-line small {
    color: #6b7280;
    font-size: 14px;
}

.footer-copy {
    max-width: 1180px;
    margin: 44px auto 0;
    padding-top: 22px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    right: clamp(1rem, 3vw, 1.5rem);
    bottom: clamp(1rem, 3vw, 1.5rem);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    cursor: pointer;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(65, 1, 149, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .back-to-top.visible:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(65, 1, 149, 0.45);
    }
}

.back-to-top:active {
    transform: translateY(0);
}

/* ============================================================
   DRAWER / OVERLAY
   ============================================================ */
.drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: min(480px, 92vw);
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: right .32s ease, transform .32s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .16);
}

.drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: white;
    z-index: 10;
    padding: clamp(20px, 4vw, 34px) clamp(20px, 4vw, 34px) 12px;
    border-bottom: 1px solid #e5e7eb;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px clamp(20px, 4vw, 34px) clamp(20px, 4vw, 34px);
    -webkit-overflow-scrolling: touch;
}

.drawer-header h2 {
    font-size: clamp(24px, 4vw, 34px);
    color: #111827;
    font-weight: 800;
    margin: 0;
}

.close {
    font-size: 32px;
    background: white;
    border: none;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: #410195;
    background: #f3edff;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 80;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   PLANOS (DRAWER)
   ============================================================ */
.plan {
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(65, 1, 149, 0.08);
}

.plan.start {
    border: 2px solid #D4D4D4;
}

.plan.pro {
    border: 2px solid #515151;
}

.plan.elite {
    border: 3px solid #410195;
    background: linear-gradient(135deg, #fff, #f6efff);
    position: relative;
}

.badge-plan {
    position: absolute;
    top: 25px;
    right: -10px;
    margin-bottom: 0;
    background: linear-gradient(135deg, #6d28d9 0%, #410195 100%);
    color: #fff;
    padding: 8px 18px 8px 16px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 10px 24px rgba(65, 1, 149, 0.22);
}

.badge-plan::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    border-top: 8px solid var(--brand-dark);
    border-left: 10px solid transparent;
}

/* .plan h3 {
    color: #410195;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 800;
} */

.plan h3 {
    background: var(--brand);
    color: white;
    padding: 5px 16px 5px 18px;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 8px 50%);
    box-shadow: 0 8px 18px rgba(65, 1, 149, 0.18);
    width: 35%;
    height: 50%;
    font-weight: 700;
}

.plan.start h3 {
    background: #d4d4d4;
    color: #410195;
    font-weight: 500;
}

.plan.pro h3 {
    background: #515151;
    font-weight: 600;
}



.price {
    font-size: 36px;
    font-weight: 800;
    margin: 18px 0;
    color: #111827;
}

.price small {
    font-size: 15px;
    color: #666A78;
    font-weight: 600;
}

.plan p {
    color: #666A78;
    line-height: 1.5;
    margin-bottom: 8px;
}

.accordion {
    margin-top: 18px;
    width: 100%;
    background: white;
    border: 1px solid #410195;
    color: #410195;
    border-radius: 12px;
    padding: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

@media (hover: hover) and (pointer: fine) {
    .accordion:hover {
        background: #410195;
        color: white;
        transform: translateY(-1px);
    }

    .cta-drawer:hover {
        transform: translateY(-2px);
        background: #2d0168;
        box-shadow: 0 15px 35px rgba(65, 1, 149, 0.35);
    }
}

.accordion:active {
    transform: translateY(0);
}

.accordion.start.active {
    background: #d4d4d4;
    color: #410195;
    border-color: #d4d4d4;
}

.accordion.pro.active {
    background: #515151;
    color: #fff;
    border-color: #515151;
}

.accordion.elite.active {
    background: #410195;
    color: #fff;
    border-color: #410195;
}

.features-list {
    display: none;
    margin-top: 16px;
    color: #666A78;
    line-height: 1.9;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    animation: fadeIn 0.3s ease;
}

.features-list.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-list > li {
    display: flex;
    align-items: flex-start;
    gap: 0.45em;
    margin-bottom: 8px;
    padding-left: 0;
    margin-left: 0;
}

.features-list > li:last-child {
    margin-bottom: 0;
}

.features-list > li::before {
    content: "\2022";
    flex: 0 0 0.65em;
    line-height: 1.9;
    text-align: left;
}

.features-list > li.feature-group-label::before,
.features-list > li.feature-group-item::before {
    display: none;
    content: none;
    width: 0;
    flex: 0 0 0;
}

.features-list > li.feature-group-label {
    margin-top: 16px;
    margin-bottom: 8px;
}

.features-list > li.feature-group-item > i {
    flex: 0 0 0.65em;
    text-align: center;
}

.features-list > p {
    margin-bottom: 8px;
    padding-left: 0;
}

.features-list .feature-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    background: #d4d4d4;
    color: #410195;
    padding: 5px 16px 5px 12px;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 8px 50%);
    box-shadow: 0 8px 18px rgba(65, 1, 149, 0.18);
    width: max-content;
    line-height: 1.4;
}

.cta-drawer {
    display: flex;
    width: 100%;
    justify-content: center;
    background: #4acc58;
    color: white;
    padding: 16px 24px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(65, 1, 149, 0.25);
    gap: 8px;
    align-items: center;
}

.cta-header {
    align-items: center;
    justify-content: center;
    background: #410195;
    color: #fff !important;
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(65, 1, 149, 0.25);
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s ease;
}

/* ============================================================
   TEXT GRADIENT (MODAL)
   ============================================================ */
.text-gradient {
    background: linear-gradient(135deg, #7144e2 0%, #6634a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: line-through;
}

/* ============================================================
   ===================== MEDIA QUERIES ========================
   ============================================================ */

/* --- Tablet grande / Desktop médio (≤ 1200px) --- */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

/* --- Tablet (≤ 991px) --- */
@media screen and (max-width: 991px) {

    .hero {
        background-image: none !important;
        background: #f8f9ff;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-mobile-image {
        display: block;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .hero-mobile-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero>div:first-child {
        max-width: 100%;
        padding: 2rem 1.5rem 3rem;
        width: 100%;
    }

    .teste3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        max-width: 720px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* .modular-wrapper {
        padding: 2rem;
    }

    .modular-inner-grid {
        grid-template-columns: 1fr;
    }

    .modular-plans-row {
        flex-wrap: wrap;
    }

    .modular-plan-col {
        flex: 1 1 calc(50% - 0.75rem);
        justify-content: stretch;
    }

    .modular-plan-col.center-col,
    .modular-plan-col.top-col {
        justify-content: stretch;
    }

    .modular-btn-wrapper {
        max-width: 100%;
    } */

    /* Responsivo: empilha texto e imagem */
    .responsivo-inner {
        flex-direction: column;
        padding: 0 1.5rem;
    }

    .responsivo-text {
        padding-left: 0;
        flex: 1 1 100%;
    }

    .responsivo-image {
        flex: 1 1 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .responsivo-header {
        margin-left: 0;
    }
}

/* --- Carousel de testimonials: 2 visíveis (≤ 1024px) --- */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .responsivo-inner {
        flex-direction: column;
    }

    .responsivo-first {
        align-content: center;
        padding-left: 0;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1300px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .responsivo-inner {
        flex-direction: column;
    }

    .responsivo-first {
        align-content: center;
        /* padding-left: 4rem; */
        align-items: center;
        justify-content: center;
    }
}

/* --- Tablet pequeno / Mobile grande (≤ 768px) --- */
@media screen and (max-width: 768px) {
    .hero-mobile-image {
        display: block;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .hero-mobile-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero>div:first-child {
        padding: 0 0 1.5rem;
    }

    .teste3 span[style*="font-size: 20px"] {
        font-size: 16px !important;
    }

    .teste3 span[style*="font-size: 18px"] {
        font-size: 14px !important;
    }

    /* Formulário ocupa largura total */
    .hero-form-card {
        width: 100%;
    }

    .container {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* .modular {
        padding: 2rem 0;
    }

    .modular-container {
        padding: 0 1rem;
    }

    .modular-wrapper {
        padding: 1rem;
    }

    .modular-card {
        padding: 1.25rem;
    }

    .modular-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .modular-subtitle {
        font-size: 0.95rem;
    }

    .modular-highlight {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .modular-plans-col {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    } */

    /* Remove o efeito escada no mobile */
    /* .align-self-start,
    .align-self-center,
    .align-self-end {
        align-self: stretch;
    } */

    .modular-plan-item {
        width: 100%;
    }

    .modular-item {
        padding: 1.25rem;
    }

    .modular-item h3 {
        font-size: 1.25rem;
    }

    .modular-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    /* Navbar mobile */
    .navbar {
        padding: 0.75rem clamp(1rem, 4vw, 1.5rem);
    }

    .navbar .container,
    .navbar-inner {
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        padding: calc(72px + 0.75rem) clamp(1rem, 4vw, 1.5rem) 2rem;
        background: rgba(255, 255, 255, 0.98);
        z-index: 900;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.show {
        display: flex;
    }

    .drawer {
        width: 100%;
        max-width: 100%;
        right: 0;
        transform: translateX(100%);
        box-shadow: none;
        z-index: 1100;
    }

    .drawer.active {
        transform: translateX(0);
    }

    .drawer-header {
        padding: 20px 16px 12px;
    }

    .drawer-body {
        padding: 12px 16px 20px;
    }

    .overlay {
        z-index: 1050;
    }

    .operacao-content {
        padding: 0 clamp(1rem, 4vw, 1.5rem);
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .card-t {
        width: 100%;
        box-sizing: border-box;
    }

    .nav-links li {
        border-top: 1px solid var(--gray);
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.875rem clamp(0.75rem, 3vw, 1rem);
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-break: break-word;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .cta-header {
        display: block;
        width: calc(100% - clamp(1rem, 4vw, 2rem));
        margin: 0.75rem clamp(0.75rem, 3vw, 1rem) 0.5rem;
        padding: 0.875rem clamp(0.75rem, 3vw, 1rem);
        text-align: center;
        box-sizing: border-box;
        white-space: normal;
        line-height: 1.35;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
        z-index: 1001;
    }

    .logo {
        margin-right: 0;
        flex-shrink: 0;
        position: relative;
        z-index: 1001;
    }

    /* Logo menor no mobile */
    .logo-icon img {
        height: 60px;
    }

    /* Features: 1 coluna */
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    /* CTA */
    .cta h2 {
        font-size: 2.25rem;
    }

    .cta p {
        font-size: 1.125rem;
    }

    .cta-bg-mark {
        width: 180px;
        height: 180px;
        right: 5%;
        opacity: 0.05;
    }

    /* Modular: empilha tudo */
    .modular .inner-pad {
        padding: 1rem;
    }

    .teste2 {
        flex-direction: column;
        padding: 1.25rem;
    }

    .modular-inner-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .modular-plans-row {
        flex-direction: row;
        gap: 1rem;
    }

    .modular-plan-col {
        width: 100%;
        flex: 1 1 100%;
    }

    .modular-item {
        padding: 1.25rem;
    }

    .modular-btn-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .modular-btn-wrapper .cta-modular {
        width: 100%;
    }

    /* Responsivo section */
    .responsivo-inner {
        flex-direction: column;
        padding: 0 1rem;
    }

    .responsivo-text {
        padding-left: 0;
    }

    .responsivo-image {
        max-width: 100%;
    }

    .responsivo-header {
        margin-left: 0;
    }

    /* CTA final */
    .cta-content {
        right: 0;
    }

    .cta-content p br {
        display: none;
    }

    .cta-content h2 br {
        display: none;
    }


}

/* --- Faixa de números (≤ 730px) --- */
@media screen and (max-width: 770px) {
    .faixa {
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 15px;
        padding: 30px 5%;
    }

    .faixa>.separator:nth-child(4) {
        display: none;
    }

    .faixa>.separator {
        display: none;
    }

    .faixa>div {
        flex: 0 1 45%;
        margin: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* --- Mobile (≤ 640px) --- */
@media (max-width: 640px) {
    .testimonials-section {
        padding: 56px 18px;
    }

    .testimonials-carousel-wrapper {
        padding: 0 36px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* --- Mobile pequeno (≤ 620px) --- */
@media (max-width: 620px) {
    section {
        padding: 3rem 5%;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .center h2 {
        font-size: 28px;
    }

    /* Seção com padding inline inline */
    .section-cards-pad {
        padding: 0 1rem;
    }
}

/* --- Mobile muito pequeno (≤ 576px) --- */
@media screen and (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-description {
        max-width: 100%;
    }
}

/* --- Cards "dores": 2 colunas só em tablet (769px–980px) --- */
@media (min-width: 769px) and (max-width: 980px) {
    .operacao-content {
        padding: 0 clamp(1rem, 4vw, 2rem);
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Footer WOW: 1 coluna (≤ 900px) --- */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-col {
        border-left: none;
        padding-left: 0;
    }
}

/* --- Testimonials carousel: 2 visíveis em tablet médio --- */
@media (min-width: 992px) {
    .testimonial-item {
        flex: 0 0 calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }

    .modular-text-col {
        text-align: center;
    }

    .modular-header {
        text-align: center;
    }

    .modular-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .modular-divider {
        margin: 1.25rem auto;
    }

    .modular-btn-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}



/* Tablet */
@media (max-width: 992px) {
    .modular-container {
        padding: 0 clamp(1rem, 4vw, 2rem);
    }

    .modular-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modular-text-col {
        text-align: center;
    }

    .modular-header {
        text-align: center;
    }

    .modular-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .modular-divider {
        margin: 1.25rem auto;
    }

    .modular-btn-wrapper {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .modular-plans-col {
        min-height: auto;
        flex-direction: column;
    }

    .modular-plan-item {
        align-self: stretch !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .modular {
        padding: 2rem 0;
    }

    .modular-container {
        padding: 0 16px;
    }

    .modular-card {
        padding: 1.5rem;
    }

    .modular-plans-col {
        flex-direction: column;
        min-height: auto;
    }

    /* Remove o efeito escada no mobile */
    .modular-plan-item {
        align-self: stretch !important;
    }

    .modular-item {
        padding: 1.25rem;
    }

    .modular-item h3 {
        font-size: 1.25rem;
    }

    .modular-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .badge-plan {
        top: 30px;
        font-size: 10px;
        padding: 4px 12px;
    }
}


/* ============================================================
   MODAL DE ERRO
   ============================================================ */
.modal-erro {
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-erro.show {
    opacity: 1;
    visibility: visible;
}

.modal-erro-conteudo {
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.modal-erro.show .modal-erro-conteudo {
    transform: scale(1);
}

.fechar-modal-erro {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.fechar-modal-erro:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.modal-erro-icon {
    font-size: 60px;
    color: #dc3545;
    margin-bottom: 20px;
}

.modal-erro-icon i {
    font-size: 60px;
}

.modal-erro-conteudo h2 {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 20px;
    color: #dc3545;
}

.erro-mensagens-lista {
    text-align: left;
    margin: 20px 0;
    max-height: 300px;
    overflow-y: auto;
}

.erro-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.erro-item:last-child {
    border-bottom: none;
}

.erro-item i {
    color: #dc3545;
    font-size: 16px;
    flex-shrink: 0;
}

.btn-entendi {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-entendi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Estilos para campos com erro */
.campo-erro {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
    animation: shake 0.5s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.campo-erro:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}


/* Tablet em paisagem (entre 768px e 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero {
        background-image: none !important;
        background: #f8f9ff;
        padding: 0;
        flex-direction: column;
    }

    .hero-mobile-image {
        display: block;
    }

    .hero>div:first-child {
        max-width: 100%;
        padding: 2rem 2rem 3rem;
    }

    .teste3 {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Desktop com tela menor que 1200px (mantém imagem de fundo) */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .hero {
        background-position: 70% center;
        padding: 5rem 0 3rem 3rem;
    }

    .hero-mobile-image {
        display: none;
    }

    .teste3 {
        gap: 2rem;
    }
}

/* Desktop normal (mantém comportamento original) */
@media screen and (min-width: 1201px) {
    .hero-mobile-image {
        display: none;
    }

    .hero {
        background-image: url("/imagem/IMG_3866.PNG");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right center;
        padding: 5rem 0 3rem 4rem;
    }
}