/* ========================================
   VARIABLES
   ======================================== */
:root {
    --purple: #8B74FE;
    --green: #4EF1C3;
    --dark: #1a1a2e;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f7;
    --gray: #666666;
    --gradient: linear-gradient(135deg, var(--purple), var(--green));
    --gradient-horizontal: linear-gradient(90deg, var(--purple), var(--green));
    --font: 'Montserrat', sans-serif;
    --header-height: 80px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ========================================
   UTILITIES
   ======================================== */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-italic {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

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

.text-white {
    color: var(--white);
}

.text-purple {
    color: var(--purple);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 116, 254, 0.35);
}

.btn--primary {
    background: linear-gradient(90deg, var(--purple), var(--green));
    color: var(--white);
}

.btn--green {
    background: var(--green);
    color: var(--black);
}

.btn--green:hover {
    box-shadow: 0 8px 25px rgba(78, 241, 195, 0.35);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   TAGS
   ======================================== */
.tag {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag--outline {
    position: relative;
    border: 2px solid transparent;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
}

.tag--outline::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(90deg, var(--green), var(--purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.tag--outline strong {
    color: var(--green);
}

.tag--outline-purple {
    border: 2px solid var(--purple);
    color: var(--purple);
}

.tag--gradient {
    background: var(--gradient);
    color: var(--white);
}

.tag--floating {
    position: relative;
    background: var(--white);
    color: var(--purple);
    border: 2px solid transparent;
    z-index: 10;
}

.tag--solid-purple {
    background: var(--purple);
    color: var(--white);
    font-weight: 400;
    z-index: 10;
}

.tag--solid-purple strong {
    font-weight: 700;
}

.tag--floating::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
    z-index: 1001;
}

.header__logo img {
    width: 36px;
    height: auto;
}

.header__nav {
    display: flex;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__menu a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header__menu a:hover {
    color: var(--green);
}

.header__cta {
    font-size: 13px;
    padding: 10px 24px;
}

.header__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__content .tag {
    margin-bottom: 24px;
}

.hero__title {
    font-size: 43px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 552px;
}

.hero__subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 460px;
}


/* ========================================
   EMPRESA
   ======================================== */
.empresa {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.empresa__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.empresa__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.empresa__container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 400px;
}

.empresa__content {
    max-width: 500px;
    color: var(--white);
}

.empresa__title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.empresa__title strong {
    font-weight: 800;
}

.empresa__content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.empresa__content .btn {
    margin-top: 16px;
}

/* ========================================
   SOLUÇÕES
   ======================================== */
.solucoes {
    position: relative;
    padding: 60px 0 0;
}

.solucoes__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.solucoes__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.4; */
}

.solucoes__tag {
    display: block;
    text-align: center;
    margin-bottom: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.solucoes__container {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.solucoes__sidebar {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solucoes__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: var(--gray-light);
    color: #b0b0b0;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    white-space: nowrap;
}

.solucoes__btn:hover {
    background: rgba(139, 116, 254, 0.1);
    color: #888;
}

.solucoes__btn.active {
    background: linear-gradient(90deg, var(--purple), var(--green));
    color: var(--white);
    font-weight: 600;
}

.solucoes__btn .solucoes__btn-check {
    font-size: 14px;
}

.solucoes__btn .solucoes__btn-text {
    flex: 1;
}

.solucoes__btn .solucoes__btn-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.solucoes__content {
    flex: 1;
}

.solucoes__panel {
    display: none;
}

.solucoes__panel.active {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 20px;
}

.solucoes__text h3 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--purple), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 12px;
}

.solucoes__text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.solucoes__image {
    width: 100%;
    text-align: right;
}

.solucoes__image img {
    width: 80%;
    border-radius: 16px;
    margin-left: 10%;
}

.solucoes__cta-container {
    text-align: right;
    padding-top: 24px;
    padding-bottom: 40px;
}

.solucoes__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--purple);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.solucoes__cta-link:hover {
    opacity: 0.8;
}

.solucoes__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--purple), var(--green));
    color: var(--white);
    font-size: 14px;
}

/* ========================================
   BRANDS
   ======================================== */
.brands__cta {
    display: none;
}

.brands {
    padding: 30px 0 90px;
    background: var(--white);
    overflow: hidden;
}

.brands__title {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 40px;
}

.brands__title strong {
    color: var(--purple);
    font-weight: 700;
}

.brands__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brands__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
}

.brands__row--mobile { display: none; }

.brands__row--desktop:nth-child(1) { transform: translateX(-140px); }
.brands__row--desktop:nth-child(2) { transform: translateX(-60px); }
.brands__row--desktop:nth-child(3) { transform: translateX(-100px); }

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: #f4f4f4;
    border-radius: 12px;
    min-width: 168px;
    height: 72px;
    flex-shrink: 0;
}

.brand-logo img {
    max-width: 110px;
    max-height: 44px;
    object-fit: contain;
}

/* ========================================
   PRODUTOS
   ======================================== */
.produto__image--mobile {
    display: none;
}

.produtos {
    position: relative;
}

.produtos__tag {
    display: block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.produtos__header {
    text-align: center;
    padding: 40px 0 0;
    background: var(--gradient-horizontal);
}

.produtos__header h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 20px;
}

.produtos__header h2 strong {
    font-weight: 800;
}

/* Produto block */
.produto {
    position: relative;
    padding: 163px 0;
    overflow: hidden;
}

.produto--especifico {
    padding: 82px 0;
}

.produto--especifico .produto__title {
    font-size: 40px;
    margin-bottom: 14px;
    font-weight: 400;
}

.produto--especifico .produto__content p {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 500;
}

.produto--especifico .produto__content .btn {
    margin-top: 10px;
}

.produto__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.produto__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto__bg::after {
    content: none;
}

.produto__bg--light::after {
    background: rgba(255, 255, 255, 0.85);
}

.produto__container {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 60px;
}

.produto__container--reverse {
    flex-direction: row-reverse;
}

.produto__content {
    flex: 0 0 auto;
    color: var(--white);
}

.produto__content--dark {
    color: var(--dark);
}

.produto__title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
}

.produto__title strong {
    font-weight: 900;
    font-size: 40px;
}

.produto__title--dark {
    color: var(--dark);
}

.produto__content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.9;
}

.produto__content--dark p {
    color: var(--dark);
}

.produto__body {
    max-width: 320px;
}

.produto__highlight {
    font-weight: 600;
    font-size: 16px !important;
    opacity: 1 !important;
}

.produto__content .btn {
    margin-top: 16px;
}

.produto__image {
    flex: 0 0 auto;
    max-width: 450px;
}

.produto__image img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.card-circle img {
    width: 100%;
    max-width: 380px;
}

/* ========================================
   ESCOLHA
   ======================================== */
.escolha {
    position: relative;
    min-height: 740px;
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.escolha__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.escolha__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.escolha__bg::after {
    content: none;
}

.escolha__chevrons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.chevron {
    width: 200px;
    height: 200px;
    border: 3px solid;
    transform: rotate(45deg);
    position: absolute;
}

.chevron--green {
    border-color: var(--green);
    right: -60px;
    top: -120px;
}

.chevron--purple {
    border-color: var(--purple);
    right: -80px;
    top: -80px;
}

.escolha__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    max-width: 1820px !important;
}

.escolha__title-wrapper {
    padding-top: 100px;
}

.escolha__title {
    font-size: 86px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    flex-shrink: 0;
}

.escolha__content {
    max-width: 300px;
    transform: translateY(100px);
}

.escolha__content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: -80px;
    margin-left: -150px;
    width: 270px;
}

.escolha__content .btn {
    margin-left: -150px;
    margin-top: 96px;
    display: block;
    width: fit-content;
}

.escolha__content strong {
    color: var(--white);
}

/* ========================================
   SURPREENDA
   ======================================== */
.surpreenda__cta {
    display: none;
}

.surpreenda {
    min-height: 740px;
    padding: 60px 0 0;
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.surpreenda__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.surpreenda__bg img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.surpreenda__container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.surpreenda .tag {
    margin-bottom: 12px;
}

.surpreenda h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1;
}

.surpreenda h2 strong {
    font-weight: 800;
}

.surpreenda__desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.surpreenda__screenshots {
    display: flex;
    justify-content: center;
}

.surpreenda__screenshots img {
    width: 100%;
    max-width: 900px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ========================================
   APP
   ======================================== */
.app {
    position: relative;
    min-height: 740px;
    padding: 60px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.app__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app__bg::after {
    content: none;
}

.app__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.app__content {
    flex: 0 0 auto;
    color: var(--white);
}

.app__title {
    font-size: 45px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
}

.app__title strong {
    font-weight: 800;
}

.app__content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    max-width: 320px;
}

.app__content .btn {
    margin-bottom: 32px;
}

.app__stores p {
    font-size: 14px;
    margin-bottom: 16px;
}

.app__badges {
    display: flex;
    gap: 12px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.store-badge:hover {
    background: #222;
}

.store-badge i {
    font-size: 18px;
}

.app__mockup {
    flex: 0 0 auto;
    max-width: 416px;
}

.app__stores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px 0 40px;
    color: var(--white);
}

.app__stores > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.app__badges {
    justify-content: center;
}

.app__mockup img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

/* ========================================
   SISTEMA
   ======================================== */
.sistema {
    position: relative;
    min-height: 740px;
    padding: 60px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sistema__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.sistema__bg img {
    width: 100%;
    height: 100%;
    /* object-fit: cover;
    opacity: 0.3; */
}

.sistema__container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sistema .tag {
    margin-bottom: 20px;
}

.sistema h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 16px;
}

.sistema h2 strong {
    font-weight: 800;
}

.sistema__desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1;
}

.sistema__screenshot {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.sistema__screenshot img {
    width: 100%;
    max-width: 900px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    overflow: hidden;
}

.footer__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.footer__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__bg::after {
    content: none;
}

.footer__chevrons {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.footer__chevrons .chevron--green {
    left: -60px;
    top: -120px;
    right: auto;
}

.footer__chevrons .chevron--purple {
    left: -80px;
    top: -80px;
    right: auto;
}

.footer__container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    padding: 80px 24px;
}

.footer__form-wrapper {
    max-width: 368px;
    width: 100%;
    margin-left: 175px;
}

.footer__title {
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    text-align: center;
}

.footer__title strong {
    font-weight: 800;
}

.footer__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    text-align: center;
}

.footer__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__form input {
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font);
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: box-shadow 0.3s ease;
}

.footer__form input::placeholder {
    color: #aaa;
}

.footer__form input:focus {
    box-shadow: 0 0 0 3px rgba(139, 116, 254, 0.3);
}

.footer__bottom {
    position: relative;
    z-index: 2;
    padding: 36px 0;
    text-align: center;
    background: #000;
}

.footer__bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer__bottom-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__bottom-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.footer__logo {
    width: 28px;
    height: auto;
}

.footer__logo-text {
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .header__menu {
        gap: 16px;
    }

    .header__menu a {
        font-size: 12px;
    }

    .hero__title {
        font-size: 38px;
    }


    .escolha__title {
        font-size: 56px;
    }

    .produto__title {
        font-size: 38px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header__nav {
        position: fixed;
        inset: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .header__nav.active {
        transform: translateX(0);
    }

    .header__menu {
        flex-direction: column;
        gap: 24px;
    }

    .header__menu a {
        font-size: 18px;
    }

    .header__cta {
        display: none;
    }

    .header__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: var(--purple);
        border-radius: 0 0 0 8px;
        color: #000;
        font-size: 20px;
        position: absolute;
        top: 0;
        right: 0;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
        padding: 102px 0 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero__bg img {
        object-position: top center;
    }

    .hero__container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__subtitle {
        font-size: 21px;
        max-width: 390px;
    }

    .tag--outline {
        font-size: 14px;
    }


    /* Empresa */
    .empresa {
        min-height: 100svh;
        padding: 0;
        display: flex;
        align-items: flex-end;
    }

    .empresa__bg img {
        object-position: top center;
    }

    .empresa__container {
        flex-direction: column;
        justify-content: flex-end;
        text-align: center;
        align-items: center;
        padding-bottom: calc(48px + 10vh);
    }

    .empresa__image {
        display: none;
    }

    .empresa__content {
        max-width: 100%;
    }

    .empresa__title {
        font-size: 50px;
        line-height: 1;
    }

    .empresa__content p {
        font-size: 19px;
        line-height: 1;
        font-weight: 600;
    }

    /* Soluções */
    .solucoes__container {
        flex-direction: column;
    }

    .solucoes__sidebar {
        flex: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        overflow: visible;
        padding-bottom: 0;
    }

    .solucoes__btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 14px;
        justify-content: space-between;
    }

    .solucoes__btn-check {
        display: none;
    }

    .solucoes__btn-arrow {
        display: flex;
    }

    .solucoes__content {
        display: none;
    }

    .solucoes__accordion-panel {
        background: var(--white);
        border-radius: 12px;
        padding: 20px 16px;
        margin-bottom: 4px;
    }

    .solucoes__accordion-panel .solucoes__text h3 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 12px;
    }

    .solucoes__accordion-panel .solucoes__text p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 16px;
        color: #555;
    }

    .solucoes__accordion-panel .solucoes__image {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .solucoes__accordion-panel .solucoes__image img {
        width: 100%;
        margin-left: 0;
        border-radius: 12px;
    }

    .solucoes__panel.active {
        padding-left: 0;
    }

    .solucoes__text h3 {
        font-size: 28px;
    }

    /* Produtos */
    .produtos__tag {
        display: none;
    }

    .produtos__header {
        display: none;
    }

    .produto {
        min-height: 100svh;
        padding: 60px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .produto--especifico {
        min-height: 0;
        padding-bottom: 90vw;
    }

    .produto__container,
    .produto__container--reverse {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: flex-start !important;
    }

    .produto__content {
        order: 1;
        max-width: 100%;
        padding: 0 8px;
        position: relative;
        z-index: 1;
    }

    .produto__title {
        font-size: 40px;
        line-height: 1.1;
    }

    .produto__image {
        order: 2;
        max-width: 100%;
        width: 100%;
        margin: 0;
        transform: none !important;
    }

    /* Multi: hide desktop image, bg already has card */
    .produto--multi .produto__image {
        display: none;
    }

    .produto--multi .produto__bg img {
        object-position: bottom center;
    }

    /* Específico: hide desktop card-circle, show mobile img */
    .card-circle {
        display: none;
    }

    .produto__bg--light::after {
        display: none;
    }

    .produto--especifico .produto__bg {
        display: none;
    }

    .produto__image--mobile {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
    }

    /* Escolha */
    .escolha {
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: column;
        padding: 0 0 80px;
    }

    .escolha__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .escolha__title {
        font-size: 82px;
        line-height: 1;
    }

    .escolha__content {
        transform: none;
        max-width: 100%;
        text-align: center;
    }

    .escolha__content p {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        width: 68%;
        font-weight: 500;
    }

    .escolha__title-wrapper {
        padding-top: 0;
    }

    /* Surpreenda */
    .surpreenda {
        padding-bottom: 0;
        min-height: 0;
    }

    .surpreenda__container {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .surpreenda .tag {
        display: inline-flex;
    }

    .surpreenda h2 {
        font-size: 36px;
        line-height: 1;
        width: 86%;
        font-weight: 600;
    }

    .surpreenda__desc {
        font-size: 15px;
        max-width: 85%;
        margin: 0 auto 24px;
    }

    .surpreenda__cta {
        display: flex;
    }

    .surpreenda__screenshots {
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        margin-top: 32px;
        margin-bottom: 0;
    }

    .surpreenda__screenshots img {
        width: 100%;
        display: block;
    }

    /* App */
    .app__container {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .app__title {
        font-size: 32px;
    }

    .app__mockup {
        max-width: 315px;
        margin: 0 auto;
    }

    .app__badges {
        justify-content: center;
    }

    /* Sistema */
    .sistema {
        align-items: stretch;
        min-height: 640px;
    }

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

    .sistema__screenshot {
        margin-top: auto;
    }

    .sistema .tag {
        display: block;
        width: fit-content;
        margin: 0 auto 20px;
    }

    .sistema h2 {
        font-size: 28px;
    }

    .sistema__screenshot {
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        margin-bottom: 0;
        align-self: flex-end;
    }

    .sistema__screenshot img {
        width: 100%;
        display: block;
    }

    /* Footer */
    .footer__title {
        font-size: 32px;
        text-align: center;
    }

    .footer__subtitle {
        text-align: center;
    }

    .footer__container {
        padding: 0 24px 220px;
        justify-content: flex-end;
        align-items: center;
        min-height: 100svh;
        flex-direction: column;
    }

    .footer__form-wrapper {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .footer__form input,
    .footer__form button {
        width: 100%;
    }

    /* Brands */
    .brands {
        overflow: hidden;
        padding: 40px 0;
    }

    .brands__title {
        font-size: 34px;
        font-weight: 600;
        line-height: 1;
    }

    .brands__grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        overflow: visible;
    }

    .brands__row--desktop { display: none; }
    .brands__row--mobile { display: flex; flex-wrap: nowrap; gap: 8px; }

    .brands__row--mobile:nth-child(4)  { transform: translateX(-40px); }
    .brands__row--mobile:nth-child(5)  { transform: translateX(-10px); }
    .brands__row--mobile:nth-child(6)  { transform: translateX(-30px); }
    .brands__row--mobile:nth-child(7)  { transform: translateX(-20px); }
    .brands__row--mobile:nth-child(8)  { transform: translateX(-50px); }
    .brands__row--mobile:nth-child(9)  { transform: translateX(-15px); }

    .brand-logo {
        flex: 0 0 120px;
        min-width: 120px;
        height: 65px;
        padding: 8px 6px;
        flex-shrink: 0;
    }

    .brand-logo img {
        max-width: 104px;
        max-height: 47px;
    }

    .brands__cta {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 32px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .escolha__content .btn {
        margin-left: auto;
        margin-right: auto;
        margin-top: 24px;
        display: block;
        width: fit-content;
    }
    .app__title{
        font-size: 42px;
    }
    .app__stores {
        flex-direction: column;
        padding: 32px 0 15px;
        text-align: center;
        gap: 12px;
    }

    .sistema .tag {
        width: 55%;
    }

    .footer {
    height: 740px;
}

}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .escolha__title {
        font-size: 62px;
        text-align: left;
    }

    .produto__title {
        font-size: 40px;
        font-weight: 500;
    }

    .footer__title {
        font-size: 28px;
    }
}
