/* ================================================
   TON LANDING PAGE - CUPOM DE DESCONTO
   ================================================ */

/* ================================================
   RESET & BASE STYLES
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da Ton baseadas no PDF */
    --ton-green: #00D959;
    --ton-green-dark: #00C04F;
    --ton-green-light: #1FFF75;
    --ton-dark: #1a1d2e;
    --ton-dark-secondary: #2a2d3e;

    /* Cores de suporte */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;

    /* Accent colors */
    --red: #ff4757;
    --orange: #ffa502;
    --blue: #3742fa;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   SEÇÃO 1: HERO / PROPOSTA DE VALOR
   ================================================ */

.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 89, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-light));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.subtitle strong {
    color: var(--ton-green);
    font-weight: 700;
}

/* ================================================
   SEÇÃO 2: CUPOM BOX (DESTAQUE)
   ================================================ */

.coupon-box {
    background: var(--white);
    border: 3px dashed var(--ton-green);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coupon-box::before,
.coupon-box::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gray-100);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.coupon-box::before {
    left: -15px;
}

.coupon-box::after {
    right: -15px;
}

.coupon-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.coupon-icon {
    font-size: 24px;
}

.coupon-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-code {
    font-size: 36px;
    font-weight: 800;
    color: var(--ton-green);
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
}

.coupon-validity {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.btn-copy {
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-dark));
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.btn-copy:hover {
    background: linear-gradient(135deg, var(--ton-green-light), var(--ton-green));
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-copy:active {
    transform: translateY(0);
}

.btn-copy.copied {
    background: linear-gradient(135deg, var(--ton-green-dark), var(--ton-green));
    animation: success 0.5s ease;
}

@keyframes success {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-icon {
    font-size: 20px;
}

/* ================================================
   SEÇÃO 3: CTA PRINCIPAL
   ================================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-dark));
    color: var(--white);
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    text-align: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--ton-green-light), var(--ton-green));
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

.check-icon {
    font-size: 18px;
}

/* ================================================
   HERO IMAGE / MOCKUP - REDESIGNED
   ================================================ */

.hero-image {
    position: relative;
    min-height: 500px;
}

.mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    min-height: 500px;
}

/* Badge Principal de Desconto */
.discount-badge-main {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, var(--red), #ff6b81);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.4);
    animation: bounceMain 2.5s ease-in-out infinite;
    z-index: 100;
    border: 4px solid var(--white);
}

@keyframes bounceMain {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

/* Formas Decorativas Flutuantes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-light));
    top: 10%;
    left: 5%;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue), #5f27cd);
    bottom: 15%;
    right: 10%;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), #ffd32a);
    top: 50%;
    right: 5%;
    animation: floatShape 7s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Grid de Maquininhas */
.machines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Wrapper para imagens reais */
.machine-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagens Reais das Maquininhas */
.machine-real-image {
    max-width: 100%;
    height: auto;
    width: 350px;
    filter: drop-shadow(0 20px 50px rgba(0, 217, 89, 0.3));
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.machine-real-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 60px rgba(0, 217, 89, 0.4));
}

.machine-real-image.secondary {
    width: 300px;
}

/* Ajuste fino para melhor visualização */
@media (max-width: 450px) {
    .machine-real-image {
        width: 240px;
        max-width: 90vw;
    }
}

/* Maquininha Principal */
.machine-main {
    transform: rotate(-5deg);
    animation: floatMachine 3s ease-in-out infinite;
}

@keyframes floatMachine {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

/* Maquininha Secundária */
.machine-secondary {
    transform: rotate(3deg);
    animation: floatMachine 3.5s ease-in-out infinite;
}

.machine-secondary .machine-real-image {
    animation-delay: 0.5s;
}

.machine-card {
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-dark));
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 217, 89, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    max-width: 200px;
}

.machine-screen {
    background: linear-gradient(135deg, #2d3436, #1a1d2e);
    border-radius: 12px;
    padding: 20px 15px;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ton-logo-screen {
    color: var(--ton-green);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.screen-amount {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.screen-qr {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.qr-code {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    background: var(--white);
    padding: 8px;
    border-radius: 6px;
}

.qr-dot {
    width: 15px;
    height: 15px;
    background: var(--gray-800);
    border-radius: 2px;
}

.screen-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.screen-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.screen-btn.green {
    background: var(--ton-green);
}

.screen-btn.red {
    background: var(--red);
}

.machine-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.key {
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Smartphone Mockup */
.smartphone-mockup {
    transform: rotate(3deg);
    animation: floatPhone 3.5s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-15px); }
}

.phone-frame {
    background: linear-gradient(135deg, var(--gray-800), #2d3436);
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 180px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
    background: #000;
    height: 20px;
    width: 60px;
    margin: 0 auto 8px;
    border-radius: 0 0 15px 15px;
}

.phone-screen {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    padding: 20px 15px;
    min-height: 300px;
}

.app-header {
    text-align: center;
    margin-bottom: 20px;
}

.app-logo {
    color: var(--ton-green);
    font-size: 24px;
    font-weight: 800;
}

.app-balance {
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-light));
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 217, 89, 0.2);
}

.balance-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-amount {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
}

.app-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 80px;
    padding: 10px 0;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--ton-green), var(--ton-green-dark));
    border-radius: 8px 8px 0 0;
    animation: growBar 1.5s ease-out forwards;
    opacity: 0;
}

.bar-1 { height: 40%; animation-delay: 0.2s; }
.bar-2 { height: 70%; animation-delay: 0.4s; }
.bar-3 { height: 55%; animation-delay: 0.6s; }
.bar-4 { height: 85%; animation-delay: 0.8s; }

@keyframes growBar {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Floating Info Badges */
.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--gray-100);
    z-index: 50;
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge-icon {
    font-size: 24px;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 10px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.badge-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--ton-green);
}

/* Posicionamento dos Badges */
.badge-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    top: 45%;
    left: -8%;
    animation-delay: 0.5s;
}

.badge-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

.badge-4 {
    top: 10%;
    right: -8%;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Feature Pills */
.feature-pill {
    position: absolute;
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-light));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 217, 89, 0.3);
    z-index: 40;
    animation: slidePill 2s ease-out forwards;
    opacity: 0;
}

.feature-pill span {
    margin-right: 5px;
}

.pill-1 {
    bottom: 10%;
    left: 5%;
    animation-delay: 0.3s;
}

.pill-2 {
    bottom: 5%;
    left: 30%;
    animation-delay: 0.6s;
}

.pill-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 0.9s;
}

@keyframes slidePill {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================
   SEÇÃO 4: COMO USAR (PASSO A PASSO)
   ================================================ */

.how-to-use {
    padding: 80px 0;
    background: var(--white);
}

.how-to-use h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--ton-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ton-green);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--ton-green);
    font-weight: 700;
}

/* ================================================
   SEÇÃO 5: PRODUTOS
   ================================================ */

.products {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.products h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Grid com 2 produtos */
.product-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto 50px;
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ton-green);
}

.product-card.featured {
    border: 2px solid var(--ton-green);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.product-badge.popular {
    background: var(--orange);
}

/* Badge de porcentagem (estilo das imagens) */
.product-badge-percent {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-light));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px 0 20px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-badge-percent.green {
    background: linear-gradient(135deg, #00D959, #1FFF75);
}

/* Imagem do produto */
.product-image {
    text-align: center;
    margin: 20px 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-width: 100%;
    height: auto;
    width: 200px;
    filter: drop-shadow(0 10px 30px rgba(0, 217, 89, 0.2));
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.product-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 8px;
    text-align: center;
}

.product-subtitle {
    color: var(--ton-green);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* Product image container for badge overlays */
.product-image-container {
    position: relative;
    text-align: center;
    margin: 20px 0;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product badge overlays (hero style) */
.product-badge-overlay {
    position: absolute;
    background: var(--white);
    border-radius: 50px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--gray-100);
    z-index: 10;
    font-size: 13px;
    transition: all 0.3s ease;
}

.product-badge-overlay:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Badge positioning */
.badge-top-left {
    top: 10px;
    left: 10px;
}

.badge-top-right {
    top: 10px;
    right: 10px;
}

.badge-bottom-left {
    bottom: 10px;
    left: 10px;
}

.badge-bottom-right {
    bottom: 10px;
    right: 10px;
}

.product-mockup {
    text-align: center;
    margin: 30px 0;
}

.machine-icon {
    font-size: 80px;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 217, 89, 0.1), rgba(0, 217, 89, 0.05));
    border-radius: 20px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

.feature-icon {
    color: var(--ton-green);
    font-weight: 700;
}

.product-rates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.rate-item {
    background: var(--gray-100);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.rate-label {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.rate-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--ton-green);
}

/* Features list (estilo das imagens) */
.product-features-list {
    margin: 20px 0;
    padding: 0 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.feature-icon-check {
    color: var(--ton-green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.product-pricing {
    margin: 25px 0 20px;
    text-align: center;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.price-old {
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    font-size: 36px;
    font-weight: 800;
    color: var(--ton-green);
    margin-bottom: 8px;
}

.price-installment {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-600);
}

.price-installment-detail {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.price-big {
    font-size: 28px;
    font-weight: 800;
    color: var(--ton-green);
}

.btn-product {
    display: block;
    width: 100%;
    background: var(--ton-green);
    color: var(--white);
    text-decoration: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn-product:hover {
    background: var(--ton-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-product:active {
    transform: translateY(0);
}

/* CTA Secundário */
.cta-secondary {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--ton-green);
    border: 2px solid var(--ton-green);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--ton-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   SEÇÃO: BENEFÍCIOS
   ================================================ */

.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================================
   SEÇÃO: REFORÇO DO CUPOM
   ================================================ */

.coupon-reminder {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ton-green), var(--ton-green-dark));
}

.reminder-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.reminder-content {
    text-align: center;
}

.reminder-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.reminder-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ton-green);
    margin-bottom: 20px;
}

.highlight {
    font-size: 28px;
    font-weight: 800;
    color: var(--ton-green);
    background: linear-gradient(135deg, rgba(0, 217, 89, 0.1), rgba(0, 217, 89, 0.05));
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 30px;
    border: 2px dashed var(--ton-green);
}

.reminder-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.reminder-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
}

.coupon-alternative {
    margin: 30px 0;
}

.coupon-box-small {
    background: var(--white);
    border: 2px dashed var(--ton-green);
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
    min-width: 300px;
}

.coupon-label-small {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.coupon-code-small {
    font-size: 24px;
    font-weight: 800;
    color: var(--ton-green);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.btn-copy-small {
    background: var(--ton-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-small:hover {
    background: var(--ton-green-dark);
}

.reminder-cta {
    margin-top: 30px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--ton-green);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--ton-green);
}

.btn-white:hover {
    background: var(--ton-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ================================================
   SEÇÃO: FORMAS DE PAGAMENTO
   ================================================ */

.payment-methods {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.payment-methods h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 30px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icon {
    background: var(--gray-100);
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: var(--ton-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* ================================================
   RODAPÉ
   ================================================ */

.footer {
    background: var(--ton-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--ton-green);
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 16px;
    color: var(--gray-300);
    font-weight: 400;
    margin-left: 8px;
}

.footer-info p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-disclaimer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--ton-green);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--ton-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-note {
    font-size: 12px;
    color: var(--gray-600);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    /* Hero Image Responsive */
    .hero-image {
        min-height: 450px;
    }

    .mockup-container {
        min-height: 450px;
        overflow: visible;
        padding: 20px 0;
    }

    .machines-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Manter rotação suave no tablet */
    .machine-main {
        transform: rotate(-3deg);
        animation: floatMachine 3s ease-in-out infinite;
    }

    .machine-secondary,
    .smartphone-mockup {
        transform: rotate(2deg);
        justify-self: center;
    }

    /* Imagens reais responsivas - tablet */
    .machine-real-image {
        width: 300px;
        max-width: 90vw;
    }

    .machine-real-image.secondary {
        width: 260px;
        max-width: 80vw;
    }

    .machine-card {
        max-width: 180px;
    }

    .phone-frame {
        max-width: 160px;
    }

    /* Ajustar badges flutuantes - manter os principais */
    .floating-badge {
        padding: 10px 16px;
        gap: 10px;
        font-size: 13px;
    }

    .badge-icon {
        font-size: 20px;
    }

    .badge-label {
        font-size: 9px;
    }

    .badge-value {
        font-size: 16px;
    }

    /* Reposicionar badges no tablet */
    .badge-1 {
        top: 20%;
        left: 2%;
    }

    .badge-2 {
        top: 50%;
        left: 2%;
    }

    .badge-3 {
        bottom: 25%;
        right: 2%;
    }

    .badge-4 {
        top: 15%;
        right: 2%;
    }

    .discount-badge-main {
        top: -10px;
        right: 10px;
        font-size: 20px;
        padding: 12px 20px;
    }

    /* Simplificar formas decorativas */
    .floating-shape {
        opacity: 0.05;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
    }

    .shape-2,
    .shape-3 {
        width: 60px;
        height: 60px;
    }

    /* Feature pills responsivas */
    .feature-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .pill-1 {
        bottom: 5%;
        left: 2%;
    }

    .pill-2 {
        bottom: 2%;
        left: 25%;
    }

    .pill-3 {
        display: none;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-arrow {
        display: none;
    }

    .product-grid,
    .product-grid-two {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-img {
        width: 180px;
    }

    /* Product badge overlays - tablet */
    .product-badge-overlay {
        padding: 8px 14px;
        gap: 8px;
        font-size: 12px;
    }

    .badge-top-left,
    .badge-top-right {
        top: 8px;
    }

    .badge-bottom-left,
    .badge-bottom-right {
        bottom: 8px;
    }

    .badge-top-left,
    .badge-bottom-left {
        left: 8px;
    }

    .badge-top-right,
    .badge-bottom-right {
        right: 8px;
    }

    .highlight-badge {
        width: 60px;
        height: 60px;
    }

    .highlight-icon {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .reminder-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .coupon-code {
        font-size: 24px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 16px 24px;
    }

    /* Hero Image Mobile */
    .hero-image {
        min-height: 450px;
        padding: 20px 0 40px;
    }

    .mockup-container {
        min-height: 450px;
        overflow: visible;
        padding: 10px;
        position: relative;
    }

    .machines-grid {
        max-width: 100%;
        gap: 0;
        padding: 0 10px;
    }

    /* Ocultar segunda maquininha no mobile */
    .machine-secondary {
        display: none !important;
    }

    /* Maquininha principal mobile - com rotação */
    .machine-main {
        transform: rotate(-4deg);
        animation: floatMachine 3s ease-in-out infinite;
        margin: 0 auto;
    }

    @keyframes floatMachine {
        0%, 100% { transform: rotate(-4deg) translateY(0); }
        50% { transform: rotate(-4deg) translateY(-8px); }
    }

    /* Imagens reais mobile - otimizado */
    .machine-real-image {
        width: 260px;
        max-width: 85vw;
        height: auto;
    }

    .machine-real-image.secondary {
        display: none;
    }

    .machine-card {
        max-width: 150px;
        padding: 15px;
    }

    .machine-screen {
        padding: 15px 10px;
    }

    .ton-logo-screen {
        font-size: 16px;
    }

    .screen-amount {
        font-size: 20px;
    }

    .qr-dot {
        width: 12px;
        height: 12px;
    }

    .screen-btn {
        width: 35px;
        height: 35px;
    }

    .phone-frame {
        max-width: 140px;
    }

    .phone-screen {
        padding: 15px 10px;
        min-height: 250px;
    }

    .app-logo {
        font-size: 20px;
    }

    .app-balance {
        padding: 15px;
    }

    .balance-amount {
        font-size: 18px;
    }

    .app-chart {
        height: 60px;
    }

    /* Badges flutuantes mobile - mostrar os 2 principais */
    .floating-badge {
        padding: 8px 14px;
        gap: 8px;
        border-radius: 40px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .badge-icon {
        font-size: 18px;
    }

    .badge-label {
        font-size: 8px;
        letter-spacing: 0.3px;
    }

    .badge-value {
        font-size: 14px;
        font-weight: 800;
    }

    /* Mostrar badges 1 e 3 (Débito e Recebimento) */
    .badge-1 {
        top: 35%;
        left: 2%;
        animation-delay: 0.3s;
    }

    .badge-2 {
        display: none;
    }

    .badge-3 {
        top: 35%;
        right: 2%;
        left: auto;
        bottom: auto;
        animation-delay: 0.6s;
    }

    .badge-4 {
        display: none;
    }

    .discount-badge-main {
        top: 10px;
        right: 10px;
        font-size: 18px;
        padding: 12px 20px;
        border: 3px solid var(--white);
        z-index: 200;
    }

    /* Feature pills mobile - posicionar na base */
    .feature-pill {
        font-size: 10px;
        padding: 6px 12px;
        white-space: nowrap;
    }

    .pill-1 {
        bottom: 3%;
        left: 5%;
    }

    .pill-2 {
        bottom: 3%;
        right: 5%;
        left: auto;
    }

    .pill-3 {
        display: none;
    }

    /* Formas decorativas mais sutis no mobile */
    .floating-shape {
        opacity: 0.03;
    }

    .shape-1 {
        width: 120px;
        height: 120px;
    }

    .shape-2,
    .shape-3 {
        width: 80px;
        height: 80px;
    }

    .how-to-use h2,
    .products h2,
    .benefits h2 {
        font-size: 28px;
    }

    .product-grid,
    .product-grid-two {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .product-img {
        width: 160px;
    }

    /* Product badge overlays - mobile */
    .product-image-container {
        min-height: 180px;
    }

    .product-badge-overlay {
        padding: 6px 10px;
        gap: 6px;
        font-size: 10px;
        border-radius: 30px;
    }

    .badge-top-left,
    .badge-top-right {
        top: 5px;
    }

    .badge-bottom-left,
    .badge-bottom-right {
        bottom: 5px;
    }

    .badge-top-left,
    .badge-bottom-left {
        left: 5px;
    }

    .badge-top-right,
    .badge-bottom-right {
        right: 5px;
    }

    .product-badge-overlay .badge-icon {
        font-size: 16px;
    }

    .product-badge-overlay .badge-label {
        font-size: 7px;
    }

    .product-badge-overlay .badge-value {
        font-size: 12px;
    }

    .highlight-badge {
        width: 55px;
        height: 55px;
    }

    .highlight-icon {
        font-size: 16px;
    }

    .highlight-text {
        font-size: 8px;
    }

    .price-current {
        font-size: 28px;
    }

    .price-big {
        font-size: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .reminder-box {
        padding: 30px 20px;
    }

    .payment-icons {
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* ================================================
   UTILITY ANIMATIONS
   ================================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--ton-green);
    color: var(--white);
}

/* ================================================
   MODAL DE PLANOS
   ================================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s ease;
    z-index: 10001;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gray-200);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--red);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 2px solid var(--gray-100);
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 18px;
    color: var(--ton-green);
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.modal-question {
    text-align: center;
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 30px;
    font-weight: 500;
}

.plan-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.plan-option {
    background: var(--white);
    border: 3px solid var(--gray-200);
    border-radius: 16px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-option:hover {
    border-color: var(--ton-green);
    background: linear-gradient(135deg, rgba(0, 217, 89, 0.05), rgba(0, 217, 89, 0.02));
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.plan-description {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Modal mobile */
@media (max-width: 640px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 30px 20px 15px;
    }

    .modal-header h3 {
        font-size: 24px;
    }

    .modal-body {
        padding: 20px;
    }

    .plan-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .plan-option {
        padding: 25px 15px;
    }

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

    .plan-title {
        font-size: 18px;
    }
}
