﻿/* Reset e Variaveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #3454d1;
    --dark-blue: #2745b9;
    --accent-orange: #f7941d;
    --accent-yellow: #f5cb3f;
    --gold-yellow: #f2c533;
    --text-dark: #1f1f1f;
    --text-light: #4b4b4b;
    --text-gray: #3b3b3b;
    --bg-white: #ffffff;
    --bg-light: #f7f7f9;
    --phone-black: #0f1013;
    --app-yellow: #f5cb3f;
    --shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Urbanist', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.98rem;
    letter-spacing: 0.1px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition);
    border-radius: 2px;
}

/* Menu toggle animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Hero */
.hero {
    background: var(--bg-white);
    padding: 84px 0 110px;
    min-height: auto;
    overflow: hidden;
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 800;
    margin-bottom: 0.4rem;
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.title-payio {
    color: var(--text-dark);
    font-weight: 800;
}

.title-posto {
    color: var(--gold-yellow);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-gray);
    margin: 0.4rem 0 1.6rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2.2rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.6rem;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 34px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    border: none;
    font-size: 0.98rem;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 14px 32px rgba(52, 84, 209, 0.35);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary-blue);
    transition: var(--transition);
    background: white;
}

.btn-video:hover .play-icon {
    background: var(--primary-blue);
    color: white;
}

.pricing-box {
    margin-top: 4px;
    position: relative;
    padding: 4px 0 16px;
}

.pricing-old-price {
    font-size: 0.92rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.35rem;
}

.pricing-new-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.pricing-new-price span {
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-installment {
    font-size: 0.98rem;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.pricing-value {
    display: flex;
    align-items: baseline;
    line-height: 1;
    margin: 0.6rem 0 0.4rem;
    color: var(--gold-yellow);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 0.2rem;
}

.price-big {
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold-yellow);
    letter-spacing: -2px;
}

.price-comma {
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold-yellow);
}

.price-small {
    font-size: 2.9rem;
    font-weight: 800;
    color: var(--gold-yellow);
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.55rem;
}

.pricing-box::before,
.pricing-box::after {
    content: '';
    position: absolute;
    width: 74px;
    height: 74px;
    border: 3px solid var(--accent-yellow);
    opacity: 0.8;
}

.pricing-box::before {
    border-right: 0;
    border-bottom: 0;
    left: -6px;
    top: -6px;
}

.pricing-box::after {
    border-left: 0;
    border-top: 0;
    right: -6px;
    bottom: -10px;
}

/* Phone mock */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--phone-black);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 10px;
    background: #0b0c0f;
    border-radius: 10px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--app-yellow);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phone-hero {
    width: 340px;
    height: 680px;
    transform: perspective(980px) rotateY(-8deg) rotateX(2deg);
}

/* Base section styles */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-wrapper.reverse .section-content {
    order: 2;
}

.section-wrapper.reverse .section-phones {
    order: 1;
}

.section-title {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.title-highlight {
    color: var(--primary-blue);
}

.title-underline {
    width: 64px;
    height: 4px;
    background: var(--primary-blue);
    margin-bottom: 2rem;
    border-radius: 999px;
}

.section-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.85rem;
    font-weight: 700;
    margin: 2.4rem 0 1rem;
    color: var(--text-dark);
}

.section-content {
    position: relative;
    z-index: 3;
}

.conheca-app {
    background: var(--bg-white);
}

.conheca-app .section-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.conheca-app .section-phones {
    min-height: 760px;
    align-items: center;
    justify-content: center;
}

.conheca-app .phone-stack {
    height: 780px;
    transform: none;
}

.conheca-app .phone-stack .phone-mockup {
    width: 320px;
    height: 640px;
}

.conheca-app .phone-stack .phone-1 {
    left: 5%;
    bottom: 20px;
    top: auto;
    transform: rotate(-4deg) scale(0.8);
    z-index: 2;
}

.conheca-app .phone-stack .phone-2 {
    left: 50%;
    top: -10px;
    bottom: auto;
    transform: translateX(-50%) scale(1.12);
    z-index: 4;
}

.conheca-app .phone-stack .phone-3 {
    right: 4%;
    bottom: 0;
    top: auto;
    transform: rotate(3deg) scale(0.72);
    z-index: 3;
}

.conheca-app .blue-shape {
    width: 1320px;
    height: 860px;
    bottom: -420px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.14;
}

.conheca-app .section-content {
    padding-right: 0;
    padding-left: 40px;
    text-align: center;
    max-width: 100%;
}

.conheca-app .section-content .section-title {
    text-align: center;
}

.conheca-app .section-content .section-subtitle {
    text-align: center;
}

.conheca-app .section-content .section-description {
    text-align: center;
}

.conheca-app .section-content .title-underline {
    margin-left: auto;
    margin-right: auto;
}

.section-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    max-width: 420px;
    margin: 0 auto;
}

.phone-stack {
    position: relative;
    height: 560px;
    width: 100%;
    z-index: 1;
    transform: scale(0.75);
    transform-origin: center;
}

.phone-stack .phone-mockup {
    position: absolute;
}

.phone-stack .phone-1 {
    left: 0;
    top: 10px;
    z-index: 1;
    transform: rotate(-10deg) scale(0.86);
}

.phone-stack .phone-2 {
    left: 50%;
    top: 10px;
    transform: translateX(-50%) rotate(0deg);
    z-index: 2;
}

.phone-stack .phone-3 {
    right: 0;
    top: 80px;
    z-index: 1;
    transform: rotate(10deg) scale(0.86);
}

.blue-shape {
    position: absolute;
    bottom: -220px;
    left: -360px;
    width: 980px;
    height: 620px;
    background: var(--primary-blue);
    border-radius: 55% 55% 0 0;
    z-index: 0;
    opacity: 0.08;
}

/* Vantagens */
.vantagens {
    background: var(--bg-white);
}

.vantagens-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.vantagem-item {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
}

.vantagem-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 12px 22px rgba(52, 84, 209, 0.25);
}

.vantagem-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.vantagem-text {
    color: var(--text-light);
    line-height: 1.85;
    font-size: 0.98rem;
}

.phone-pair {
    position: relative;
    height: 520px;
    width: 100%;
}

.phone-pair .phone-tilt-left {
    position: absolute;
    left: 0;
    top: 20px;
    transform: rotate(-18deg) scale(0.86);
    z-index: 1;
}

.phone-pair .phone-tilt-right {
    position: absolute;
    right: 0;
    top: 120px;
    transform: rotate(18deg) scale(0.86);
    z-index: 2;
}

.blue-shape-bottom {
    position: absolute;
    bottom: -240px;
    right: -380px;
    width: 1080px;
    height: 720px;
    background: var(--primary-blue);
    border-radius: 0 0 55% 55%;
    z-index: 0;
    opacity: 0.14;
}

/* Recursos */
.recursos {
    position: relative;
    overflow: hidden;
}

.recursos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #3454d1 0%, #3454d1 47%, transparent 47%);
    z-index: 0;
}

.recursos .container,
.recursos .section-wrapper {
    position: relative;
    z-index: 1;
}

.recursos-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.recurso-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.recurso-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 12px 22px rgba(52, 84, 209, 0.25);
}

.recurso-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.recurso-text {
    color: var(--text-light);
    line-height: 1.85;
    font-size: 0.98rem;
}

.phone-trio {
    position: relative;
    height: 520px;
    width: 100%;
}

.phone-trio .phone-ocr {
    position: absolute;
    left: 0;
    top: 30px;
    transform: rotate(-10deg) scale(0.84);
    z-index: 1;
}

.phone-trio .phone-main {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-trio .phone-auth {
    position: absolute;
    right: 0;
    top: 30px;
    transform: rotate(10deg) scale(0.84);
    z-index: 1;
}

/* Portfólio */
.portfolio {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 120px;
    background: var(--bg-white);
}

.portfolio::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: var(--primary-blue);
    z-index: 0;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

.portfolio .section-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.portfolio .title-underline {
    margin: 0 auto 3rem;
}

.portfolio-intro {
    max-width: 960px;
    margin: 0 auto;
    line-height: 1.7;
}

.portfolio-phones {
    display: flex;
    justify-content: center;
    gap: 18px;
    align-items: flex-end;
    flex-wrap: nowrap;
    margin-top: 20px;
    margin-bottom: 2.5rem;
    padding: 10px 0 20px;
}

.portfolio-phone {
    width: 160px;
    height: 340px;
    flex-shrink: 0;
}

/* Portfólio com moldura dos aparelhos */
.portfolio-phones .phone-mockup {
    width: 160px;
    height: 340px;
    background: var(--phone-black);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.portfolio-phones .phone-mockup:hover {
    transform: translateY(-8px);
}

.portfolio-phones .phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #0b0c0f;
    border-radius: 10px;
    z-index: 3;
}

.portfolio-phones .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: var(--app-yellow);
    overflow: hidden;
}

.portfolio-phones .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-footer {
    background: transparent;
    color: white;
    padding: 0;
    border-radius: 0;
    margin-top: 1.5rem;
}

.portfolio-footer p {
    font-size: 0.95rem;
    line-height: 1.85;
    max-width: 1000px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

/* Menu Display */
.menu-display {
    background: var(--bg-white);
}

.menu-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.2rem;
}

.menu-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.menu-feature-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 12px 22px rgba(52, 84, 209, 0.25);
}

.menu-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.menu-feature-text {
    color: var(--text-light);
    line-height: 1.85;
    font-size: 0.98rem;
}

.phone-trio-menu {
    position: relative;
    height: 520px;
    width: 100%;
}

.phone-trio-menu .phone-menu-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: rotate(-8deg) scale(0.92);
    z-index: 1;
}

.phone-trio-menu .phone-menu-2 {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-trio-menu .phone-menu-3 {
    position: absolute;
    right: 0;
    top: 60px;
    transform: rotate(8deg) scale(0.92);
    z-index: 1;
}

/* Servi?os */
.servicos {
    background: var(--bg-white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.1rem;
}

.servico-card {
    padding: 2.4rem;
    border-radius: 18px;
    transition: var(--transition);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.servico-card-light {
    background: var(--bg-light);
    border: 1px solid #e6e6ea;
}

.servico-card-dark {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 18px 38px rgba(52, 84, 209, 0.35);
}

.servico-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    box-shadow: 0 14px 26px rgba(52, 84, 209, 0.35);
}

.servico-card-dark .servico-icon {
    background: #ffffff;
    box-shadow: none;
}

.servico-icon svg {
    width: 54px;
    height: 54px;
}

.servico-card-dark .servico-icon svg {
    stroke: #2341b0;
}

.servico-title {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.servico-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.35rem;
    color: var(--text-light);
}

.servico-card-dark .servico-text {
    color: rgba(255, 255, 255, 0.9);
}

.servico-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: 0.2px;
}

.servico-card-dark .servico-link {
    color: white;
}

.servico-link span {
    transition: var(--transition);
}

.servico-link:hover span {
    transform: translateX(4px);
}

.servicos-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Novidades */
.novidades {
    background: var(--bg-white);
}

/* Contato */
.contato {
    background: var(--bg-white);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contato-item {
    display: flex;
    gap: 1.4rem;
    align-items: center;
}

.contato-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contato-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.contato-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.contato-item a:hover {
    text-decoration: underline;
}

.contato-item address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
}

/* Obrigado */
.obrigado {
    background: var(--bg-white);
    padding: 110px 0 260px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.obrigado-title {
    font-size: clamp(3rem, 7vw, 5.6rem);
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 3.6rem;
    letter-spacing: 3px;
}

.obrigado-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.obrigado-phone {
    width: 220px;
    height: 440px;
    transition: var(--transition);
}

.obrigado-phone:hover {
    transform: translateY(-8px) scale(1.04);
    z-index: 10;
}

.obrigado-phones .phone-1 { transform: rotate(-22deg); }
.obrigado-phones .phone-2 { transform: rotate(-10deg); }
.obrigado-phones .phone-3 { transform: rotate(0deg); }
.obrigado-phones .phone-4 { transform: rotate(10deg); }
.obrigado-phones .phone-5 { transform: rotate(22deg); }

.blue-shape-footer {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 320px;
    background: var(--primary-blue);
    border-radius: 55% 55% 0 0;
    z-index: 1;
    opacity: 0.12;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

/* Responsive */
@media (max-width: 1200px) {
    .portfolio-phones {
        gap: 14px;
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }

    .portfolio-phones .phone-mockup,
    .portfolio-phone {
        width: 145px;
        height: 310px;
    }

    .hero-wrapper,
    .section-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* ✅ FIX: sobrescreve o seletor mais específico que travava 2 colunas */
    .conheca-app .section-wrapper {
        grid-template-columns: 1fr;
    }

    .section-wrapper.reverse .section-content,
    .section-wrapper.reverse .section-phones {
        order: unset;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .portfolio::after {
        height: 45%;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 68px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 1.5rem 0;
        gap: 0;
        z-index: 2000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.9rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 48px 0 70px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .pricing-box {
        max-width: 320px;
        margin: 0 auto;
    }

    .section {
        padding: 70px 0;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .phone-hero {
        width: 280px;
        height: 560px;
        transform: none;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .portfolio::after {
        height: 40%;
    }

    .portfolio-phones {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .portfolio-phones .phone-mockup,
    .portfolio-phone {
        width: 130px;
        height: 280px;
        border-radius: 18px;
        padding: 6px;
    }

    .portfolio-phones .phone-mockup::before {
        width: 45px;
        height: 5px;
        top: 6px;
    }

    .portfolio-phones .phone-screen {
        border-radius: 14px;
    }

    /* Simplificar layouts de celulares em tablet */
    .phone-stack,
    .phone-pair,
    .phone-trio,
    .phone-trio-menu {
        height: 400px;
    }

    .phone-stack .phone-mockup,
    .phone-pair .phone-mockup,
    .phone-trio .phone-mockup,
    .phone-trio-menu .phone-mockup {
        width: 180px;
        height: 380px;
    }

    .section-phones {
        max-width: 100%;
    }

    /* Conheca app */
    .conheca-app .section-phones {
        min-height: 400px;
    }

    .conheca-app .phone-stack {
        height: 400px;
        transform: scale(0.7);
    }

    .conheca-app .section-content {
        padding-right: 0;
        padding-left: 0;
        text-align: left;
        display: block;
        align-items: flex-start;
    }

    .conheca-app .section-content .section-title {
        text-align: left;
    }

    .conheca-app .section-content .section-subtitle {
        text-align: left;
    }

    .conheca-app .section-content .section-description {
        text-align: left;
    }

    .conheca-app .section-content .title-underline {
        margin-left: 0;
        margin-right: auto;
    }

    /* Recursos - ajuste do fundo */
    .recursos::before {
        background: var(--primary-blue);
    }

    .recursos .section-content {
        background: var(--bg-white);
        padding: 30px;
        border-radius: 20px;
        margin-top: 20px;
    }

    /* Obrigado */
    .obrigado {
        padding: 70px 0 180px;
    }

    .obrigado-phones {
        gap: 0.8rem;
    }

    .obrigado-phone {
        width: 140px;
        height: 280px;
    }

    .obrigado-phones .phone-1,
    .obrigado-phones .phone-2,
    .obrigado-phones .phone-3,
    .obrigado-phones .phone-4,
    .obrigado-phones .phone-5 {
        transform: rotate(0deg);
    }
}

@media (max-width: 680px) {
    /* Simplificar layouts de celulares - mostrar apenas 1 */
    .phone-stack .phone-1,
    .phone-stack .phone-3,
    .phone-trio .phone-ocr,
    .phone-trio .phone-auth,
    .phone-trio-menu .phone-menu-1,
    .phone-trio-menu .phone-menu-3,
    .phone-pair .phone-tilt-right {
        display: none;
    }

    .phone-stack .phone-2,
    .phone-trio .phone-main,
    .phone-trio-menu .phone-menu-2,
    .phone-pair .phone-tilt-left {
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        transform: none;
        margin: 0 auto;
    }

    .phone-stack,
    .phone-pair,
    .phone-trio,
    .phone-trio-menu {
        height: auto;
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

    .phone-stack .phone-mockup,
    .phone-pair .phone-mockup,
    .phone-trio .phone-mockup,
    .phone-trio-menu .phone-mockup {
        width: 220px;
        height: 460px;
    }

    /* Conheca app */
    .conheca-app .phone-stack .phone-1,
    .conheca-app .phone-stack .phone-3 {
        display: none;
    }

    .conheca-app .phone-stack .phone-2 {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .conheca-app .phone-stack {
        transform: none;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .conheca-app .section-phones {
        min-height: auto;
    }

    .conheca-app .phone-stack .phone-mockup {
        width: 220px;
        height: 460px;
    }

    /* Vantagens e recursos */
    .vantagem-item,
    .recurso-item,
    .menu-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .vantagem-number,
    .recurso-number,
    .menu-feature-number {
        margin: 0 auto 1rem;
    }

    /* Contato */
    .contato-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .contato-icon {
        margin-bottom: 0.5rem;
    }

    /* Serviços */
    .servico-card {
        padding: 1.8rem;
        text-align: center;
    }

    .servico-icon {
        margin: 0 auto 1.2rem;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 0.92rem;
    }

    .section {
        padding: 50px 0;
    }

    /* Pricing box */
    .pricing-box {
        max-width: 280px;
    }

    .price-big {
        font-size: 3.5rem;
    }

    .price-comma {
        font-size: 3.5rem;
    }

    .price-small {
        font-size: 2rem;
    }

    .pricing-box::before,
    .pricing-box::after {
        width: 50px;
        height: 50px;
    }

    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .play-icon {
        width: 42px;
        height: 42px;
    }

    /* Phone mockup geral */
    .phone-hero {
        width: 240px;
        height: 500px;
    }

    .phone-stack .phone-mockup,
    .phone-pair .phone-mockup,
    .phone-trio .phone-mockup,
    .phone-trio-menu .phone-mockup {
        width: 200px;
        height: 420px;
    }

    .conheca-app .phone-stack .phone-mockup {
        width: 200px;
        height: 420px;
    }

    /* Portfolio */
    .portfolio {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .portfolio .title-underline {
        margin-bottom: 2rem;
    }

    .portfolio-phones {
        gap: 8px;
        padding: 10px 10px 20px;
    }

    .portfolio-phones .phone-mockup,
    .portfolio-phone {
        width: 85px;
        height: 180px;
        border-radius: 12px;
        padding: 4px;
    }

    .portfolio-phones .phone-mockup::before {
        width: 25px;
        height: 3px;
        top: 3px;
    }

    .portfolio-phones .phone-screen {
        border-radius: 9px;
    }

    .portfolio-footer p {
        font-size: 0.82rem;
        padding: 0 5px;
        line-height: 1.7;
    }

    /* Vantagens e recursos titles */
    .vantagem-title,
    .recurso-title,
    .menu-feature-title {
        font-size: 1.1rem;
    }

    .vantagem-text,
    .recurso-text,
    .menu-feature-text {
        font-size: 0.9rem;
    }

    .vantagem-number,
    .recurso-number,
    .menu-feature-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    /* Obrigado */
    .obrigado {
        padding: 50px 0 150px;
    }

    .obrigado-title {
        font-size: 2.2rem;
    }

    .obrigado-phone {
        width: 90px;
        height: 180px;
    }

    .blue-shape-footer {
        height: 200px;
    }

    /* Serviços */
    .servico-title {
        font-size: 1.3rem;
    }

    .servico-text {
        font-size: 0.9rem;
    }

    .servico-icon {
        width: 70px;
        height: 70px;
    }

    .servico-icon svg {
        width: 42px;
        height: 42px;
    }

    /* Contato */
    .contato-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contato-item strong {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        justify-content: center;
        text-align: center;
    }

    /* Logo */
    .logo-image {
        height: 36px;
    }

    /* Recursos background fix */
    .recursos {
        padding: 50px 0;
    }

    .recursos .section-content {
        padding: 20px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .portfolio-phones .phone-mockup,
    .portfolio-phone {
        width: 70px;
        height: 150px;
        border-radius: 10px;
        padding: 3px;
    }

    .portfolio-phones {
        gap: 5px;
    }

    .portfolio-phones .phone-mockup::before {
        width: 20px;
        height: 2px;
        top: 2px;
    }

    .portfolio-phones .phone-screen {
        border-radius: 7px;
    }

    .obrigado-phone {
        width: 70px;
        height: 140px;
    }

    .price-big {
        font-size: 3rem;
    }

    .price-comma {
        font-size: 3rem;
    }

    .price-small {
        font-size: 1.7rem;
    }

    .phone-hero {
        width: 200px;
        height: 420px;
    }

    .phone-stack .phone-mockup,
    .phone-pair .phone-mockup,
    .phone-trio .phone-mockup,
    .phone-trio-menu .phone-mockup {
        width: 180px;
        height: 380px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
