/* ==========================================================================
   CHICO BOLSO - LANDING PAGE STYLES
   Colors: Primary Green (#128C7E / #25D366), Dark Slate (#1F2937), Accent Cream/Gold
   ========================================================================== */

:root {
    --primary: #128C7E;
    --primary-hover: #0d6e63;
    --primary-light: #e8f5e9;
    --accent-green: #25D366;
    --dark-slate: #1f2937;
    --text-main: #374151;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 30px -10px rgba(18, 140, 126, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Settings */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--dark-slate);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-light);
}

.btn-hero {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-hero i {
    font-size: 1.2rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo apenas com Imagem */
.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.chico-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.nav-btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-slate);
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition);
}

.mobile-toggle:hover {
    color: var(--primary);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding-top: 8.5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(37, 211, 102, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(18, 140, 126, 0.08) 0%, transparent 40%);
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(80px);
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(37, 211, 102, 0.15);
    top: 10%;
    left: -5%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(18, 140, 126, 0.12);
    bottom: 5%;
    right: -10%;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-slate);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.badge-icon {
    color: #eab308;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-slate);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.cta-note i {
    color: var(--primary);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.avatars-group {
    display: flex;
    align-items: center;
}

.avatar-user {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: #d1d5db;
    border: 2px solid var(--white);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--white);
}

.avatars-group .avatar-user:first-child {
    margin-left: 0;
    background-color: #60a5fa;
}
.avatars-group .avatar-user:nth-child(2) {
    background-color: #f472b6;
}
.avatars-group .avatar-user:nth-child(3) {
    background-color: #34d399;
}
.avatars-group .avatar-user.extra {
    background-color: var(--dark-slate);
    font-size: 0.75rem;
    font-weight: 700;
}

.proof-text {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.proof-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.proof-text strong {
    color: var(--dark-slate);
}

/* HERO VISUAL / PHONE MOCKUP */
.hero-visual {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 620px;
    background-color: #111827;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 12px #2d3748;
    position: relative;
    z-index: 2;
}

.phone-header {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 10;
}

.speaker {
    width: 50px;
    height: 4px;
    background-color: #374151;
    border-radius: 4px;
}

.camera {
    width: 8px;
    height: 8px;
    background-color: #374151;
    border-radius: 50%;
}

.whatsapp-app {
    width: 100%;
    height: 100%;
    background-color: #efeae2;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wa-header {
    background-color: #075e54;
    color: var(--white);
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.wa-back {
    font-size: 0.9rem;
    opacity: 0.8;
}

.wa-user-avatar {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.wa-user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #25d366;
    border: 2px solid #075e54;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.wa-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.wa-name {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-icon {
    color: #34b7f1;
    font-size: 0.75rem;
}

.wa-status {
    font-size: 0.65rem;
    opacity: 0.85;
}

.wa-actions {
    font-size: 0.9rem;
    opacity: 0.8;
}

.wa-body {
    flex: 1;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    overflow-y: auto;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 12px 12px;
}

.wa-date-divider {
    text-align: center;
    margin: 0.2rem 0;
}

.wa-date-divider span {
    background-color: rgba(225, 245, 254, 0.9);
    color: #546e7a;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.wa-msg {
    max-width: 85%;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.35;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.wa-msg.incoming {
    align-self: flex-start;
    background-color: #ffffff;
    border-top-left-radius: 0;
}

.wa-msg.outgoing {
    align-self: flex-end;
    background-color: #dcf8c6;
    border-top-right-radius: 0;
}

.msg-text {
    word-wrap: break-word;
}

.msg-time {
    display: block;
    text-align: right;
    font-size: 0.6rem;
    color: #8c8c8c;
    margin-top: 2px;
}

.read-check {
    color: #34b7f1;
}

.emoji {
    font-size: 0.9rem;
}

.audio-bubble {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 4px;
}

.audio-play-btn {
    width: 26px;
    height: 26px;
    background-color: #075e54;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
}

.audio-play-btn:hover {
    transform: scale(1.1);
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.audio-waveform span {
    width: 2px;
    background-color: #075e54;
    border-radius: 2px;
    animation: waveform 1.5s ease-in-out infinite;
}

.audio-waveform span:nth-child(1) { height: 8px; animation-delay: 0s; }
.audio-waveform span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.audio-waveform span:nth-child(3) { height: 6px; animation-delay: 0.2s; }
.audio-waveform span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.audio-waveform span:nth-child(5) { height: 12px; animation-delay: 0.4s; }
.audio-waveform span:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.audio-waveform span:nth-child(7) { height: 8px; animation-delay: 0.6s; }
.audio-waveform span:nth-child(8) { height: 10px; animation-delay: 0.7s; }
.audio-waveform span:nth-child(9) { height: 14px; animation-delay: 0.8s; }
.audio-waveform span:nth-child(10) { height: 6px; animation-delay: 0.9s; }
.audio-waveform span:nth-child(11) { height: 12px; animation-delay: 1.0s; }
.audio-waveform span:nth-child(12) { height: 16px; animation-delay: 1.1s; }

@keyframes waveform {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.audio-duration {
    font-size: 0.65rem;
    color: #666;
}

.audio-mic-icon {
    color: #075e54;
    font-size: 0.65rem;
}

.msg-caption {
    font-size: 0.7rem;
    font-style: italic;
    color: #4b5563;
    display: block;
}

.highlight-msg {
    border-left: 3px solid #128C7E;
}

.wa-footer {
    background-color: #f0f0f0;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.wa-input-box {
    flex: 1;
    background-color: #fff;
    border-radius: 20px;
    padding: 0.35rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wa-icon {
    color: #8c8c8c;
    font-size: 0.8rem;
}

.wa-placeholder {
    flex: 1;
    font-size: 0.7rem;
    color: #999;
}

.wa-mic-btn {
    width: 32px;
    height: 32px;
    background-color: #128C7E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.wa-mic-btn:hover {
    transform: scale(1.05);
    background-color: var(--primary-hover);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background-color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.float-card-1 {
    top: 12%;
    left: -20px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 2s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.card-icon.chart {
    background-color: #dcfce7;
    color: #16a34a;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-info strong {
    font-size: 0.85rem;
    color: var(--dark-slate);
}

.card-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   BARRA DE BENEFÍCIOS / PROVA SOCIAL
   ========================================================================== */

.benefits-bar {
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.25);
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-slate);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.benefit-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ==========================================================================
   SEÇÃO COMO FUNCIONA (3 PASSOS)
   ========================================================================== */

.how-it-works {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
}

/* Cabeçalho de Seção Reutilizável */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--dark-slate);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Grid dos Cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Card Individual */
.step-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(18, 140, 126, 0.3);
}

/* Número do Passo */
.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(18, 140, 126, 0.12);
    line-height: 1;
    user-select: none;
}

/* Ícone do Passo */
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.15) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 8px 16px rgba(18, 140, 126, 0.25);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO RECURSOS (FEATURES)
   ========================================================================== */

.features-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-light);
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--white);
    border-color: rgba(18, 140, 126, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(18, 140, 126, 0.25);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 0.6rem;
}

.feature-description {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO DEMONSTRAÇÃO VISUAL (DEMO CHAT)
   ========================================================================== */

.demo-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.demo-chat-container {
    max-width: 780px;
    margin: 0 auto;
    background-color: #efeae2;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.demo-chat-header {
    background-color: #075e54;
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-user-avatar {
    position: relative;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.demo-user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--white);
}

.demo-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.demo-name {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-status {
    font-size: 0.8rem;
    opacity: 0.85;
}

.demo-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.demo-chat-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 14px 14px;
    max-height: 600px;
    overflow-y: auto;
}

.demo-msg {
    max-width: 75%;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.45;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.demo-msg.incoming {
    align-self: flex-start;
    background-color: var(--white);
    border-top-left-radius: 0;
}

.demo-msg.outgoing {
    align-self: flex-end;
    background-color: #dcf8c6;
    border-top-right-radius: 0;
}

.photo-mock {
    background-color: rgba(7, 94, 84, 0.08);
    border: 1px dashed #075e54;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #075e54;
    font-size: 0.85rem;
}

.photo-icon {
    font-size: 1.2rem;
}

.demo-chat-footer {
    background-color: #f0f0f0;
    padding: 1.25rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.demo-cta-btn {
    width: auto;
    display: inline-flex;
}

/* ==========================================================================
   SEÇÃO PLANOS E PREÇOS (PRICING)
   ========================================================================== */

.pricing-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.pricing-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-badge-placeholder {
    height: 26px;
    margin-bottom: 0.5rem;
}

.pricing-card.popular {
    background-color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
}

.popular-badge {
    align-self: flex-start;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 0.4rem;
}

.plan-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    color: var(--dark-slate);
    margin-bottom: 0.2rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.2rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.billing-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
    min-height: 1.2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.feature-check {
    color: var(--accent-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
}

.guarantee-box {
    max-width: 780px;
    margin: 0 auto;
    background-color: var(--primary-light);
    border: 1px solid rgba(18, 140, 126, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.guarantee-text strong {
    font-size: 1rem;
    color: var(--dark-slate);
    display: block;
    margin-bottom: 0.2rem;
}

.guarantee-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   SEÇÃO FAQ (PERGUNTAS FREQUENTES)
   ========================================================================== */

.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(18, 140, 126, 0.4);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
    border-top-color: rgba(0, 0, 0, 0.04);
    padding-top: 1rem;
}

/* ==========================================================================
   SEÇÃO DEPOIMENTOS (TESTIMONIALS)
   ========================================================================== */

.testimonials-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(18, 140, 126, 0.3);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-slate);
    line-height: 1.2;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ==========================================================================
   SEÇÃO BLOG (ARTIGOS E DICAS)
   ========================================================================== */

.blog-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(18, 140, 126, 0.3);
}

.blog-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.blog-meta i {
    color: var(--primary);
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-slate);
    line-height: 1.35;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.blog-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-hover);
    gap: 0.7rem;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */

.main-footer {
    background-color: #0b131f;
    color: #94a3b8;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.footer-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo .highlight {
    color: var(--primary);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-info {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.footer-contact-info i {
    color: var(--primary);
}

.footer-status-badge {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(37, 211, 102, 0.1);
    color: #25d366;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.status-dot-green {
    width: 7px;
    height: 7px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 6px #25d366;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-disclaimer {
    opacity: 0.6;
}

/* ==========================================================================
   RESPONSIVIDADE GLOBAL
   ========================================================================== */

/* Tablets e telas médias */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-cta-group {
        align-items: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .float-card-1 {
        left: 0;
    }

    .float-card-2 {
        right: 0;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .plan-subtitle {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        gap: 1.2rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .demo-chat-container {
        border-radius: var(--radius-md);
    }

    .demo-badge {
        display: none;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

/* Celulares e telas pequenas */
@media (max-width: 640px) {
    .chico-logo-img {
        height: 36px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .btn-hero {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .phone-mockup {
        width: 290px;
        height: 560px;
    }

    .floating-card {
        display: none;
    }

    .benefits-bar {
        padding: 1.5rem 0;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .benefit-item {
        background-color: var(--bg-light);
        padding: 0.85rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
    }

    .features-section {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
    }

    .demo-section {
        padding: 4rem 0;
    }

    .demo-chat-body {
        padding: 1.25rem 0.85rem;
    }

    .demo-msg {
        max-width: 88%;
        font-size: 0.85rem;
    }

    .demo-cta-btn {
        width: 100%;
        font-size: 0.95rem;
    }

    .pricing-section {
        padding: 4rem 0;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.98rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.5rem;
    }

    .blog-section {
        padding: 4rem 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-thumb {
        height: 180px;
    }

    .main-footer {
        padding: 4rem 0 2rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .auth-card {
        padding: 1.75rem 1.25rem;
    }

    .checkout-step {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-tabs {
        grid-template-columns: 1fr;
    }

    .pix-info-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .summary-card {
        padding: 1.5rem;
    }

    .dash-sidebar {
        width: 70px;
        padding: 1rem 0.5rem;
    }

    .dash-sidebar .brand-logo .chico-logo-img {
        height: 30px;
    }

    .dash-sidebar .brand-logo .logo-text,
    .dash-sidebar .sidebar-nav span,
    .dash-sidebar .plan-status-card,
    .dash-sidebar .logout-btn span {
        display: none;
    }

    .dash-main {
        margin-left: 70px;
        padding: 1.5rem 1rem;
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .dash-metrics-grid {
        grid-template-columns: 1fr;
    }

    .dash-content-grid {
        grid-template-columns: 1fr;
    }

    .category-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .category-val {
        width: 100%;
    }

    .sync-stats {
        grid-template-columns: 1fr;
    }

    .table-actions {
        flex-wrap: wrap;
    }

    .btn-sm {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .dash-table {
        font-size: 0.8rem;
    }

    .dash-table th,
    .dash-table td {
        padding: 0.5rem;
    }

    .header-actions {
        flex-wrap: wrap;
        width: 100%;
    }

    .date-picker-box {
        flex: 1;
    }

    .user-profile {
        flex: 1;
    }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .phone-mockup {
        width: 260px;
        height: 500px;
    }

    .container {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .nav-btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}