/* ========================================
   GALAGO - Site Institucional & Landing Pages
   ======================================== */

:root {
    --primary: #0E5091;
    --primary-dark: #1E1A50;
    --primary-light: #1a6bc4;
    --accent: #FFB900;
    --accent-dark: #e0a300;
    --accent-light: #ffca3a;
    --purple: #7735B3;
    --cyan: #44C4DD;
    --orange: #ED7901;
    --white: #ffffff;
    --bg-light: #EDF5FF;
    --bg-body: #F4F7FC;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-600: #656565;
    --gray-700: #4F5365;
    --gray-800: #343a40;
    --gray-900: #212529;
    --text-dark: #121212;
    --text-secondary: #4F5365;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; max-width: 100vw; }
body {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* --- UTILITY --- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- FOCUS STATES (Acessibilidade) --- */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}
.faq__question:focus-visible { outline-offset: -2px; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
}
.btn--primary {
    background: var(--primary);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--accent {
    background: var(--accent);
    color: var(--text-dark);
    border-radius: var(--radius-md);
    padding: 20px 32px;
}
.btn--accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 185, 0, 0.35);
}
.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn--outline:hover {
    background: rgba(14, 80, 145, 0.06);
    border-color: var(--primary-dark);
}
.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}
.btn--lg {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: var(--radius-md);
}
.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary);
    transition: var(--transition);
}
.header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.header__logo-img {
    height: 48px;
    width: auto;
}
.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.header__nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}
.header__nav a:hover {
    color: var(--white);
}
.header__nav a.active {
    color: var(--white);
    font-weight: 600;
}
.header__nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.header__cta {
    margin-left: 16px;
}
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 185, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero__content h1 strong {
    color: var(--accent);
}
.hero__content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 520px;
}
.hero__highlight {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--accent) !important;
    margin-bottom: 0 !important;
}
.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 100%;
}

/* --- HERO SOCIAL PROOF BAR --- */
.hero__social-proof {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    margin-top: 60px;
    border-radius: var(--radius-md);
}
.hero__proof-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero__proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    white-space: nowrap;
}
.hero__proof-item svg { color: var(--accent); flex-shrink: 0; }
.hero__proof-item strong { color: var(--accent); font-weight: 700; font-size: 16px; }

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section { padding: 80px 0; }
.section--blue {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}
.section--blue .section-title { color: var(--white); }
.section--blue .section-subtitle { color: rgba(255, 255, 255, 0.8); }
.section--light { background: var(--bg-light); }
.section--dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1b3e 100%);
    color: var(--white);
}
.section--dark .section-title { color: var(--white); }
.section--dark .section-subtitle { color: rgba(255, 255, 255, 0.75); }
.section--gray { background: var(--bg-body); }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}
.section-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    background: rgba(14, 80, 145, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}
.section--blue .section-tag,
.section--dark .section-tag {
    color: var(--accent);
    background: rgba(255, 185, 0, 0.15);
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}
.section-title strong { color: var(--primary); }
.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   ICON BOXES / FEATURE CARDS
   ======================================== */
.icon-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}
.icon-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}
.icon-box__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 28px;
}
.icon-box__icon--blue { background: rgba(14, 80, 145, 0.1); color: var(--primary); }
.icon-box__icon--purple { background: rgba(119, 53, 179, 0.1); color: var(--purple); }
.icon-box__icon--cyan { background: rgba(68, 196, 221, 0.1); color: var(--cyan); }
.icon-box__icon--orange { background: rgba(237, 121, 1, 0.1); color: var(--orange); }
.icon-box__icon--gold { background: rgba(255, 185, 0, 0.1); color: var(--accent-dark); }
.icon-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.icon-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.icon-box__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ========================================
   FLIP CARDS (Benefits)
   ======================================== */
.flip-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.flip-card {
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
}
.flip-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.flip-card:hover .flip-card__inner {
    transform: rotateY(180deg);
}
.flip-card__front,
.flip-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
}
.flip-card__front {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.flip-card__front svg,
.flip-card__front .flip-card__icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}
.flip-card__front h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}
.flip-card__back {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: rotateY(180deg);
}
.flip-card__back p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   FEATURE BLOCKS (alternating image + text)
   ======================================== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block--reverse .feature-block__content { order: 2; }
.feature-block--reverse .feature-block__image { order: 1; }
.feature-block__content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}
.feature-block__content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}
.feature-block__image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* --- Feature List (checkmark / x) --- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}
.feature-list__check {
    color: #22c55e;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.feature-list__x {
    color: #ef4444;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* ========================================
   PLAN CARDS (Pricing)
   ======================================== */
.planos { padding: 80px 0; background: var(--bg-body); }
.planos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}
.plano {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.plano:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.plano--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}
.plano--featured:hover {
    transform: scale(1.03) translateY(-4px);
}
.plano__badge {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    text-align: center;
    background: var(--accent);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.plano__header {
    padding: 32px 28px 20px;
    text-align: center;
}
.plano--featured .plano__header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding-top: 44px;
}
.plano--featured .plano__name { color: var(--white); }
.plano--featured .plano__currency { color: rgba(255, 255, 255, 0.7); }
.plano--featured .plano__value { color: var(--accent); }
.plano--featured .plano__period { color: rgba(255, 255, 255, 0.6); }
.plano__name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.plano__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}
.plano__currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 8px;
}
.plano__value {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.plano__period {
    font-size: 14px;
    color: var(--gray-600);
    align-self: flex-end;
    margin-bottom: 8px;
}
.plano__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 28px 20px;
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}
.plano__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 28px;
    flex-grow: 1;
}
.plano__features li {
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}
.plano__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}
.plano__features li.plano__feature--disabled {
    color: var(--gray-400);
    text-decoration: line-through;
}
.plano__features li.plano__feature--disabled::before {
    content: '\2717';
    color: var(--gray-400);
}
.plano__footer {
    padding: 0 28px 28px;
}
.plano__btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 16px;
    font-size: 16px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { padding: 80px 0; background: var(--bg-body); }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial__info { flex-grow: 1; }
.testimonial__name {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}
.testimonial__role {
    font-size: 13px;
    color: var(--gray-600);
}
.testimonial__stars {
    color: #F9A825;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testimonial__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* --- Depoimento Destaque (Slider) --- */
.depoimento-destaque {
    padding: 60px 0;
    background: var(--bg-light);
}
.depoimento-destaque__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 120px;
}
.depoimento-destaque__slide {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.depoimento-destaque__slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}
.depoimento-destaque__slide p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.depoimento-destaque__slide cite {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
}
.depoimento-destaque__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.depoimento-destaque__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}
.depoimento-destaque__dot::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: var(--transition);
}
.depoimento-destaque__dot.active::after {
    background: var(--primary);
    transform: scale(1.3);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact { padding: 80px 0; }
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact__info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.contact__info p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}
.contact__form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.form__group {
    margin-bottom: 20px;
}
.form__label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 80, 145, 0.1);
    outline: none;
}
.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--gray-400);
}
.form__textarea {
    resize: vertical;
    min-height: 120px;
}
.form__submit {
    width: 100%;
    margin-top: 8px;
}

/* ========================================
   SEGMENT GRID
   ======================================== */
.segments { padding: 80px 0; }
.segments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.segment-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.segment-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary);
}
.segment-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition);
}
.segment-card:hover .segment-card__icon {
    background: var(--primary);
    color: var(--white);
}
.segment-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}
.segment-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900);
    padding-top: 60px;
    color: var(--gray-400);
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}
.footer__brand p {
    font-size: 14px;
    line-height: 1.7;
}
.footer h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.footer__links a,
.footer__contact a,
.footer__contact p {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
    margin-bottom: 10px;
}
.footer__links a:hover,
.footer__contact a:hover {
    color: var(--accent);
}
.footer__social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer__social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition);
}
.footer__social-links a:hover {
    background: var(--accent);
    color: var(--text-dark);
}
.footer__bottom {
    padding: 20px 0;
}
.footer__bottom p {
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
}
.thank-you__inner {
    max-width: 600px;
    margin: 0 auto;
}
.thank-you__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-size: 48px;
    margin-bottom: 32px;
}
.thank-you h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.thank-you p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq { padding: 80px 0; background: var(--bg-body); }
.faq__list {
    max-width: 860px;
    margin: 0 auto;
}
.faq__item {
    border-bottom: 1px solid var(--gray-200);
}
.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}
.faq__question:hover { color: var(--primary); }
.faq__question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gray-400);
}
.faq__item.active .faq__question svg {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq__item.active .faq__question { color: var(--primary); font-weight: 600; }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq__item.active .faq__answer {
    max-height: 500px;
    padding-bottom: 20px;
}
.faq__answer p,
.faq__answer li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.faq__answer ul {
    padding-left: 20px;
    list-style: disc;
}
.faq__answer li { margin-bottom: 6px; }

/* ========================================
   STATS / COUNTERS
   ======================================== */
.stats {
    padding: 60px 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat {
    text-align: center;
    padding: 24px;
}
.stat__number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.section--blue .stat__number,
.section--dark .stat__number {
    color: var(--accent);
}
.stat__label {
    display: block;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}
.section--blue .stat__label,
.section--dark .stat__label {
    color: rgba(255, 255, 255, 0.8);
}
.stat__desc {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ========================================
   BLOG CARDS
   ======================================== */
.blog { padding: 80px 0; }
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.blog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card__content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}
.blog-card__meta {
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 16px;
}
.blog-card__date { display: flex; align-items: center; gap: 4px; }

/* ========================================
   DOWNLOAD CARDS
   ======================================== */
.downloads { padding: 80px 0; }
.downloads__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.download-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.download-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.download-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}
.download-card__info {
    flex-grow: 1;
}
.download-card__info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.download-card__info p {
    font-size: 13px;
    color: var(--text-secondary);
}
.download-card__btn {
    flex-shrink: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section__features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.cta-section__features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}
.cta-section__features svg { color: var(--accent); flex-shrink: 0; }

/* ========================================
   PARTNER / REVENDA SECTION
   ======================================== */
.partner { padding: 80px 0; background: var(--bg-body); }
.partner__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.partner__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.partner__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.partner__card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.partner__card-header {
    padding: 24px 28px;
}
.partner__card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.partner__card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.partner__card ul {
    padding: 0 28px;
    margin-bottom: 24px;
}
.partner__card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}
.partner__card li svg { flex-shrink: 0; color: #22c55e; }
.partner__card-btn {
    margin: auto 28px 28px;
    justify-content: center;
}

/* ========================================
   FLOATING CTA MOBILE
   ======================================== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--gray-200);
}
.floating-cta__btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* ========================================
   CHATMENTOR WIDGET FIX
   ======================================== */
#chatmentor-widget-container { max-width: none !important; }
#chatmentor-popup { z-index: 99999 !important; max-width: none !important; }
#chatmentor-btn { max-width: none !important; z-index: 99998 !important; }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}
.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
    opacity: 0;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .hero__inner,
    .feature-block,
    .contact__inner { grid-template-columns: 1fr; text-align: center; }

    .hero__content p { margin-left: auto; margin-right: auto; }
    .hero__ctas { justify-content: center; }
    .hero__img { max-width: 500px; margin: 0 auto; }

    .feature-block--reverse .feature-block__content { order: 1; }
    .feature-block--reverse .feature-block__image { order: 2; }
    .feature-block__image img { max-width: 500px; margin: 0 auto; }
    .feature-list { align-items: center; }

    .icon-box__grid { grid-template-columns: repeat(2, 1fr); }
    .flip-cards__grid { grid-template-columns: repeat(2, 1fr); }
    .planos__grid { grid-template-columns: repeat(2, 1fr); }
    .plano:last-child { grid-column: span 2; max-width: 420px; margin: 0 auto; }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .blog__grid { grid-template-columns: repeat(2, 1fr); }
    .segments__grid { grid-template-columns: repeat(3, 1fr); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: repeat(2, 1fr); }
    .hero__proof-items { justify-content: center; }

    .contact__form { padding: 32px; }
}

/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    /* --- BASE --- */
    body { font-size: 16px; }
    .container { padding: 0 16px; max-width: 100%; }
    img, svg, video { max-width: 100%; height: auto; }

    /* CHATMENTOR MOBILE */
    #chatmentor-popup {
        position: fixed !important;
        bottom: 0 !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 94% !important;
        max-width: 400px !important;
        max-height: 80vh !important;
        border-radius: 16px 16px 0 0 !important;
    }
    #chatmentor-form-container { padding: 20px !important; }

    /* FLOATING CTA */
    .floating-cta { display: block; }
    .footer { padding-bottom: 76px; }
    #chatmentor-btn { bottom: 76px !important; }

    /* HEADER */
    .header__inner { height: 60px; }
    .header__logo-img { height: 36px; }
    .header__nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 32px 24px;
        gap: 8px;
        z-index: 999;
        overflow-y: auto;
    }
    .header__nav.active { display: flex; }
    .header__nav a {
        font-size: 17px;
        font-weight: 500;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }
    .header__nav a:last-child { border-bottom: none; }
    .header__cta { display: none; }
    .header__hamburger { display: flex; }
    .header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .header__hamburger.active span:nth-child(2) { opacity: 0; }
    .header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* HERO */
    .hero { padding: 40px 0 60px; }
    .hero__content h1 { font-size: 1.75rem; text-align: left; }
    .hero__content p { font-size: 15px; text-align: left; }
    .hero__highlight { font-size: 16px !important; }
    .hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 24px; }
    .hero__ctas .btn { width: 100%; justify-content: center; }
    .hero__img { max-width: 100%; margin: 24px auto 0; border-radius: var(--radius-sm); }
    .hero__social-proof { padding: 16px 0; margin-top: 32px; }
    .hero__proof-items { flex-direction: column; gap: 10px; align-items: flex-start; }
    .hero__proof-item { font-size: 13px; }

    /* SECTIONS */
    .section,
    .planos,
    .testimonials,
    .faq,
    .blog,
    .downloads,
    .segments,
    .partner,
    .stats,
    .contact { padding: 48px 0; }

    .section-header { margin-bottom: 28px; text-align: left; }
    .section-title { font-size: 1.4rem; text-align: left; }
    .section-subtitle { font-size: 15px; text-align: left; }

    /* FEATURE BLOCKS */
    .feature-block { gap: 24px; margin-bottom: 40px; text-align: left; }
    .feature-block__content h3 { font-size: 1.2rem; text-align: left; }
    .feature-list { align-items: flex-start; }
    .feature-list li { font-size: 14px; }
    .feature-block .btn { width: 100%; justify-content: center; }
    .feature-block__image img { max-width: 90%; margin: 0 auto; }

    /* ICON BOXES */
    .icon-box__grid { grid-template-columns: 1fr; gap: 16px; }
    .icon-box { padding: 24px 20px; }
    .icon-box h3 { font-size: 18px; }
    .icon-box p { font-size: 14px; }

    /* FLIP CARDS */
    .flip-cards__grid { grid-template-columns: 1fr; gap: 16px; }
    .flip-card { height: 240px; }

    /* PLANS */
    .planos__grid { grid-template-columns: 1fr; gap: 20px; }
    .plano { padding: 0; }
    .plano--featured { transform: none; }
    .plano--featured:hover { transform: translateY(-4px); }
    .plano:last-child { grid-column: span 1; max-width: none; }
    .plano__value { font-size: 44px; }
    .plano__desc { font-size: 14px; }
    .plano__btn { padding: 16px; font-size: 16px; }

    /* TESTIMONIALS */
    .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial { padding: 24px 20px; }
    .testimonial__text { font-size: 14px; }

    /* DEPOIMENTO DESTAQUE */
    .depoimento-destaque { padding: 40px 0; }
    .depoimento-destaque__slide p { font-size: 17px; }
    .depoimento-destaque__slider { min-height: 140px; }

    /* CONTACT FORM */
    .contact__form { padding: 24px; }
    .contact__info h2 { font-size: 1.4rem; text-align: left; }
    .contact__info p { text-align: left; }

    /* SEGMENTS */
    .segments__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .segment-card { padding: 20px 16px; }
    .segment-card h3 { font-size: 14px; }

    /* STATS */
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat__number { font-size: 36px; }
    .stat__label { font-size: 13px; }

    /* FAQ */
    .faq__question { font-size: 15px; padding: 16px 0; }
    .faq__answer p, .faq__answer li { font-size: 14px; }

    /* BLOG CARDS */
    .blog__grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-card__image { height: 180px; }
    .blog-card__content { padding: 20px; }
    .blog-card h3 { font-size: 16px; }

    /* DOWNLOAD CARDS */
    .downloads__grid { grid-template-columns: 1fr; gap: 16px; }
    .download-card { padding: 20px; }

    /* PARTNER / REVENDA */
    .partner__grid { grid-template-columns: 1fr; gap: 20px; }
    .partner__card h3 { font-size: 18px; }
    .partner__card ul { padding: 0 20px; }
    .partner__card-btn { margin: auto 20px 24px; width: calc(100% - 40px); }

    /* CTA SECTION */
    .cta-section { padding: 48px 0; }
    .cta-section h2 { font-size: 1.3rem; }
    .cta-section p { font-size: 15px; }
    .cta-section__features { flex-direction: column; align-items: center; gap: 14px; }
    .cta-section .btn { width: 100%; justify-content: center; }

    /* THANK YOU */
    .thank-you { min-height: 50vh; padding: 48px 0; }
    .thank-you h1 { font-size: 1.6rem; }
    .thank-you p { font-size: 16px; }
    .thank-you__icon { width: 72px; height: 72px; font-size: 36px; }

    /* FOOTER */
    .footer { padding-top: 40px; }
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer__brand p { font-size: 14px; }
    .footer__social-links { gap: 16px; }
    .footer__social-links a { width: 48px; height: 48px; }
}
