/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #00C4EF;
    font-weight: 700;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2rem;
    color: #032D60;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #032D60;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(3, 45, 96, 0.85) 0%, rgba(27, 58, 92, 0.85) 50%, rgba(46, 90, 138, 0.80) 100%),
        url('../images/hero-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 120px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.metric {
    text-align: center;
    padding: 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #032D60 0%, #0176D3 50%, #00C4EF 100%);
    border-radius: 14px 14px 0 0;
    opacity: 0.8;
}

.metric-value {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #032D60 0%, #0176D3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    letter-spacing: 0.2px;
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cta-section {
    margin-top: 3rem;
}

.cta-button {
    background: #0176D3;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(1, 118, 211, 0.3);
}

.cta-button:hover {
    background: #014F86;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 118, 211, 0.4);
}

.cta-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
}

.problem h2 {
    color: white;
}

.problem-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-top: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.problems-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00C4EF 0%, #3b9eff 50%, #5cf861 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 196, 239, 0.2);
    border-color: rgba(0, 196, 239, 0.3);
}

.problem-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.problem-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00C4EF 0%, #5cf861 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 196, 239, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00C4EF;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 196, 239, 0.3);
}

.problem-icon svg {
    width: 24px;
    height: 24px;
}

.problem-card:hover .problem-icon {
    transform: rotate(5deg) scale(1.05);
    background: rgba(0, 196, 239, 0.25);
    color: #5cf861;
    border-color: rgba(92, 248, 97, 0.5);
}

.problem-card h3 {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.problem-pain,
.problem-solution {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    position: relative;
}

.problem-pain {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
}

.problem-solution {
    background: rgba(92, 248, 97, 0.1);
    border-left: 3px solid #5cf861;
    margin-bottom: 0;
}

.label-dor,
.label-solucao {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.label-dor {
    background: #ef4444;
    color: white;
}

.label-solucao {
    background: #5cf861;
    color: #0f172a;
}

.problem-pain p,
.problem-solution p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.85rem;
}

/* Dashboard Demo Section */
.dashboard-demo {
    padding: 100px 0;
    background: #f8fafc;
}

.dashboard-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.dashboard-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #032D60 0%, #1B3A5C 100%);
    color: white;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 10px;
}

.dashboard-title h3 {
    margin: 0;
    font-size: 1.5rem;
}

.last-update {
    font-size: 0.9rem;
    opacity: 0.8;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #032D60 0%, #0176D3 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.negative {
    color: #ef4444;
}

.dashboard-charts {
    padding: 2rem;
}

.chart-section {
    margin-bottom: 2.5rem;
}

.chart-section h4 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.2rem;
}

.rfv-segments {
    margin-bottom: 1rem;
}

.segment-bar {
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.segment-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    padding: 0.25rem;
    transition: all 0.3s ease;
}

.segment-item:hover {
    filter: brightness(1.1);
    z-index: 1;
    transform: scale(1.05);
}

.segment-item.champions {
    background: #059669;
    color: white;
}

.segment-item.loyal {
    background: #2563eb;
    color: white;
}

.segment-item.active {
    background: #7c3aed;
    color: white;
}

.segment-item.risk {
    background: #d97706;
    color: white;
}

.segment-item.hibernating {
    background: #dc2626;
    color: white;
}

.segment-label {
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.segment-value {
    font-weight: 700;
}

.ai-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #032D60;
}

.action-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-content {
    flex: 1;
}

.action-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.action-desc {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 400;
}

.action-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.action-status.active {
    background: #dcfce7;
    color: #166534;
}

.action-status.completed {
    background: #dbeafe;
    color: #1e40af;
}

.action-status.scheduled {
    background: #fef3c7;
    color: #92400e;
}

.dashboard-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.integration-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.integration-label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
}

.integration-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.integration-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.integration-badge.vtex {
    background: #ff6b35;
}

.integration-badge.shopify {
    background: #95bf47;
}

.integration-badge.nuvemshop {
    background: #3d4ed8;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.solution-category {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border-left: 4px solid #032D60;
}

.solution-category h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.solution-category ul {
    list-style: none;
}

.solution-category li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.solution-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #032D60;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #032D60 0%, #1B3A5C 50%, #2E5A8A 100%);
    color: white;
}

.benefits h2 {
    color: white;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00D4AA;
    min-width: 80px;
}

.benefit-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-text p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Differential Section */
.differential {
    padding: 100px 0;
    background: linear-gradient(135deg, #032D60 0%, #1B3A5C 50%, #2E5A8A 100%);
    color: white;
}

.differential-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

/* Differential Blocks Grid */
.differential-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.differential-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.differential-block h3 {
    color: #00C4EF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.differential-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.differential-block .feature {
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.differential-block .feature:last-of-type {
    margin-bottom: 1.5rem;
}

.differential-block .result {
    color: #5cf861;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 2px solid rgba(92, 248, 97, 0.5);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Legacy comparison styles (can be removed if not used elsewhere) */
.differential-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-side {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.others {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.others::before {
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.ours {
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
    border: 1px solid #bae6fd;
}

.ours::before {
    background: linear-gradient(90deg, #032D60 0%, #0176D3 100%);
}

.comparison-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.comparison-side h3 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
}

.comparison-side ul {
    list-style: none;
    text-align: left;
}

.comparison-side li {
    padding: 1rem 0;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.others li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.ours li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0176D3;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Final Section */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Two column layout for contact section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Benefits column styling */
.benefits-column {
    text-align: left;
    padding: 2rem;
}

.benefits-column h3 {
    color: #00C4EF;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #00C4EF;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 196, 239, 0.2);
}

.benefit-item svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefit-item strong {
    color: #5cf861;
    font-size: 1.1rem;
}

.benefit-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-text {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Form column styling */
.form-column {
    padding: 0;
}

.demo-form {
    max-width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field-full {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.demo-form input,
.demo-form select {
    padding: 0.65rem 0.85rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    transition: all 0.3s ease;
    font-weight: 500;
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: #0176D3;
    background: white;
    box-shadow: 0 0 0 3px rgba(1, 118, 211, 0.1);
    transform: translateY(-1px);
}

.demo-form input::placeholder {
    color: #64748b;
    font-weight: 400;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #0176D3 0%, #032D60 100%);
    color: white;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(1, 118, 211, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #014F86 0%, #032D60 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(1, 118, 211, 0.4);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

/* Anti-bot protection styles */
.honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}

.captcha-field {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.captcha-label {
    font-weight: 400;
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}

.captcha-field input {
    width: 173px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #1e293b;
    color: white;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    color: #032D60;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.footer p {
    opacity: 0.7;
    margin: 0;
}

.footer p a {
    color: #0176D3;
    text-decoration: none;
    opacity: 1;
    transition: color 0.3s ease;
}

.footer p a:hover {
    color: #00D4AA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 140px 0 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Dashboard responsivo */
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .dashboard-charts {
        padding: 1.5rem;
    }
    
    .segment-item {
        font-size: 0.7rem;
        padding: 0.5rem 0.25rem;
    }
    
    .segment-label {
        font-size: 0.6rem;
    }
    
    .action-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .integration-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .demo-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-field,
    .form-field-full {
        margin-bottom: 1rem;
    }
    
    .captcha-field {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .captcha-label {
        font-size: 0.85rem;
        white-space: normal;
    }
    
    .differential-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    /* Problem cards responsive */
    .problems-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-number {
        font-size: 2rem;
    }

    .problem-icon {
        width: 50px;
        height: 50px;
    }

    .problem-icon svg {
        width: 24px;
        height: 24px;
    }

    .problem-card h3 {
        font-size: 1.1rem;
    }

    .problem-pain,
    .problem-solution {
        padding: 1rem;
    }

    .problem-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .problem, .solution, .benefits, .differential, .cta-final {
        padding: 60px 0;
    }

    /* Problem cards - 1 column on mobile */
    .problems-cards {
        grid-template-columns: 1fr;
    }
}

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

.problem-item,
.solution-category,
.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Integrations Carousel */
.integrations-carousel {
    margin-top: 40px;
    text-align: center;
}

.integrations-carousel h3 {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    font-weight: 600;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200% + 40px);
}

.carousel-item {
    flex: none;
    padding: 15px 30px;
    margin: 0 10px;
    background: transparent;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-2px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .integrations-carousel h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .carousel-item {
        padding: 12px 20px;
        font-size: 1rem;
        margin: 0 5px;
    }
    
    .carousel-track {
        animation-duration: 25s;
    }
}

/* Header Navigation */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #0176D3;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0176D3;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #334155;
    transition: 0.3s;
}

/* Footer Navigation */
.footer-nav {
    margin: 2rem 0;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #00D4AA;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 1.5rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #00C4EF;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 196, 239, 0.3);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Dashboard Carousel */
.dashboard-carousel {
    background: white;
    padding: 2rem;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.carousel-indicator {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    background: transparent;
    border-radius: 6px;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #0176D3;
    color: white;
    border-color: #0176D3;
}

.carousel-indicator:hover:not(.active) {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.carousel-controls {
    display: flex;
    gap: 0.5rem;
}

.carousel-control {
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

#mainCarouselSlides {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

#mainCarouselSlides .carousel-slide {
    width: 33.333%;
    flex-shrink: 0;
}

.carousel-slide.active {
    /* Slide ativo */
}

/* Dashboard Charts Grid (dentro do carrossel) */
.dashboard-charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.chart-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Carousel Responsive */
@media (max-width: 768px) {
    .carousel-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .carousel-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .carousel-indicator {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .dashboard-carousel {
        padding: 1.5rem;
    }
    
    .dashboard-charts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.chart-card-wide {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.vertical-bar-chart-large {
    display: flex;
    align-items: flex-end;
    height: 400px;
    position: relative;
    margin: 1rem 0;
    padding-bottom: 4rem;
    overflow: visible;
}

.chart-card h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
}

/* Donut Charts */
.donut-chart {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: conic-gradient(
        #22c55e 0deg 65deg,
        #3b82f6 65deg 155deg,
        #f59e0b 155deg 211deg,
        #ef4444 211deg 269deg,
        #6b7280 269deg 360deg
    );
    position: relative;
}

.donut-chart::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.chart-center-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #374151;
}

.chart-center-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}

/* Churn Chart */
#churnChart {
    background: conic-gradient(
        #22c55e 0deg 266deg,
        #ef4444 266deg 360deg
    );
}

/* Chart Legend */
.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.champions { background: #22c55e; }
.legend-color.loyal { background: #3b82f6; }
.legend-color.active { background: #f59e0b; }
.legend-color.risk { background: #ef4444; }
.legend-color.hibernating { background: #6b7280; }
.legend-color.low-risk { background: #22c55e; }
.legend-color.high-risk { background: #ef4444; }

/* Vertical Bar Chart */
.vertical-bar-chart {
    display: flex;
    align-items: flex-end;
    height: 280px;
    position: relative;
    margin: 1rem 0;
    padding-bottom: 2rem;
    overflow: visible;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-right: 1rem;
    min-width: 30px;
}

.y-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: right;
    line-height: 1;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    height: 100%;
    flex: 1;
    gap: 1rem;
    position: relative;
}

.vertical-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    height: 100%;
    position: relative;
}

.vertical-bar {
    width: 100%;
    max-width: 60px;
    border-radius: 4px 4px 0 0;
    transition: height 0.8s ease;
    position: relative;
    min-height: 8px;
    order: 1;
}

.vertical-bar-chart-large .vertical-bar {
    max-width: 80px;
    min-height: 12px;
}

.bar-label-vertical {
    font-size: 0.7rem;
    color: #374151;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
    margin-top: 1.5rem;
    transform: rotate(-45deg);
    transform-origin: center;
    order: 2;
}

.chart-y-axis-label {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: center;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
    white-space: nowrap;
}

/* Hover effects for vertical bars */
.vertical-bar:hover {
    transform: scaleY(1.05);
    transform-origin: bottom;
}

.vertical-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #374151;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-bar:hover::after {
    opacity: 1;
}

/* Responsive Charts */
@media (max-width: 1024px) {
    .dashboard-charts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .vertical-bar-chart-large {
        height: 350px;
        padding-bottom: 3.5rem;
    }
    
    .vertical-bar-chart-large .vertical-bar {
        max-width: 70px;
    }
}

@media (max-width: 768px) {
    .dashboard-charts-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .dashboard-bottom-chart {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .chart-card-wide {
        padding: 1.5rem;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .donut-chart {
        width: 120px;
        height: 120px;
    }
    
    .donut-chart::before {
        top: 25px;
        left: 25px;
        width: 70px;
        height: 70px;
    }
    
    .chart-center-value {
        font-size: 1rem;
    }
    
    .vertical-bar-chart-large {
        height: 300px;
        padding-bottom: 3rem;
    }
    
    .chart-bars {
        gap: 0.5rem;
    }
    
    .vertical-bar-chart-large .vertical-bar {
        max-width: 50px;
    }
    
    .bar-label-vertical {
        font-size: 0.65rem;
        margin-top: 1rem;
    }
}

/* Segment Details Table */
.segment-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.segment-details h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    color: #374151;
    font-weight: 600;
}

.segment-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.segment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.segment-table th {
    background: #f8fafc;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: left;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    letter-spacing: 0.05em;
}

.segment-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-weight: 500;
}

.segment-table tbody tr:hover {
    background: #f9fafb;
}

.segment-table tbody tr:last-child td {
    border-bottom: none;
}

/* Segment Badges */
.segment-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.segment-badge.champions {
    background: #dcfce7;
    color: #15803d;
}

.segment-badge.leais {
    background: #dbeafe;
    color: #1d4ed8;
}

.segment-badge.novos {
    background: #fef3c7;
    color: #d97706;
}

.segment-badge.recem {
    background: #fef3c7;
    color: #d97706;
}

.segment-badge.one-timer {
    background: #fee2e2;
    color: #dc2626;
}

.segment-badge.one-timer-baixo {
    background: #fee2e2;
    color: #dc2626;
}

.segment-badge.hibernando {
    background: #f3f4f6;
    color: #6b7280;
}

.segment-badge.perdidos {
    background: #fce8e6;
    color: #991b1b;
}

/* Responsive Table */
@media (max-width: 768px) {
    .segment-details {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .segment-table {
        font-size: 0.8rem;
    }
    
    .segment-table th,
    .segment-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .segment-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Segment Color Legend */
.segment-color-legend {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.legend-bar {
    display: flex;
    height: 30px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legend-color-segment {
    flex: 1;
    transition: all 0.3s ease;
}

.legend-color-segment:hover {
    transform: scaleY(1.1);
    z-index: 1;
}

.legend-color-segment.champions {
    background: #22c55e;
}

.legend-color-segment.leais {
    background: #3b82f6;
}

.legend-color-segment.novos {
    background: #f59e0b;
}

.legend-color-segment.reativados {
    background: #ef4444;
}

.legend-color-segment.one-timer {
    background: #6b7280;
}

.legend-color-segment.one-timer-baixo {
    background: #dc2626;
}

.legend-color-segment.hibernando {
    background: #7c3aed;
}

.legend-color-segment.perdidos {
    background: #06b6d4;
}

.legend-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.legend-labels span {
    flex: 1;
    text-align: center;
    transform: rotate(-35deg);
    transform-origin: center bottom;
    padding: 0.25rem 0;
    line-height: 1;
}

/* Responsive adjustments for legend */
@media (max-width: 768px) {
    .legend-labels {
        font-size: 0.65rem;
    }
    
    .legend-labels span {
        transform: rotate(-45deg);
    }
}

/* Matriz RFV */
.rfv-matrix {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, minmax(100px, auto));
    gap: 0.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.rfv-cell {
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rfv-cell:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.rfv-cell-title {
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.rfv-cell-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.rfv-cell-percent {
    font-size: 0.8rem;
    opacity: 0.95;
}

/* Cores dos segmentos da matriz */
.rfv-cell.perdidos {
    background: linear-gradient(135deg, #8b92a7 0%, #6b7280 100%);
}

.rfv-cell.regulares {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.rfv-cell.fieis {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.rfv-cell.nao-perder {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.rfv-cell.promissores {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.rfv-cell.risco {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.rfv-cell.campeoes {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.rfv-cell.potenciais {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.rfv-cell.recem {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.rfv-cell.crescimento {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Responsive Matriz RFV */
@media (max-width: 768px) {
    .rfv-matrix {
        padding: 1rem;
        grid-template-rows: repeat(4, 100px);
        gap: 0.4rem;
    }

    .rfv-cell {
        padding: 0.75rem 0.5rem;
    }

    .rfv-cell-title {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }

    .rfv-cell-value {
        font-size: 1.2rem;
        margin-bottom: 0.15rem;
    }

    .rfv-cell-percent {
        font-size: 0.7rem;
    }
}

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

/* AI Assistant Section */
.ai-assistant-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.ai-assistant-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem 3rem 3rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ai-assistant-card > .ai-assistant-image {
    padding-top: 40px;
}

.ai-assistant-content h2 {
    font-size: 2.5rem;
    color: #032D60;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ai-assistant-content p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ai-assistant-content p:last-child {
    margin-bottom: 0;
}

.ai-assistant-image {
    position: relative;
}

.ai-assistant-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #032D60 0%, #0176D3 100%);
    border-radius: 12px 12px 0 0;
    z-index: 1;
}

.ai-assistant-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 20px 0 0 #f59e0b, 40px 0 0 #10b981;
    z-index: 2;
}

.ai-assistant-image img {
    width: 100%;
    height: auto;
    border-radius: 0 0 12px 12px;
    box-shadow:
        0 20px 60px rgba(3, 45, 96, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(3, 45, 96, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.ai-assistant-image img:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 80px rgba(3, 45, 96, 0.35),
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(3, 45, 96, 0.1);
}

/* Responsive AI Assistant */
@media (max-width: 968px) {
    .ai-assistant-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-column {
        padding: 1rem;
    }

    .benefits-column h3 {
        font-size: 1.5rem;
    }

    .ai-assistant-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .ai-assistant-content p {
        text-align: center;
    }

    .differential-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Back to Top Link */
.back-to-top {
    font-weight: 600;
    color: #3b9eff;
}

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 0;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease-out;
}

#cookie-banner.show {
    display: block;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #0176D3;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-content a:hover {
    color: #032D60;
}

#accept-cookies {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

#accept-cookies:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        text-align: center;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    #accept-cookies {
        width: 100%;
        padding: 1rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* WhatsApp Float Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
