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

:root {
    --primary-color: #00ff41;
    --primary-dark: #00cc33;
    --secondary-color: #39ff14;
    --accent-color: #00ff88;
    --danger-color: #ff0040;
    --success-color: #00ff41;
    --warning-color: #ffff00;
    
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-light: #808080;
    
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-dark: #000000;
    --bg-matrix: #001100;
    
    --border-color: #00ff41;
    --border-light: #004400;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 255 65 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 255 65 / 0.2), 0 2px 4px -2px rgb(0 255 65 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 255 65 / 0.3), 0 4px 6px -4px rgb(0 255 65 / 0.2);
    --shadow-xl: 0 20px 25px -5px rgb(0 255 65 / 0.4), 0 8px 10px -6px rgb(0 255 65 / 0.3);
    
    --gradient-primary: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
    --gradient-secondary: linear-gradient(135deg, #00ff88 0%, #00ff41 100%);
    --gradient-success: linear-gradient(135deg, #39ff14 0%, #00ff88 100%);
    --gradient-matrix: linear-gradient(135deg, #000000 0%, #001100 50%, #000000 100%);
    --teste: #48bb40;

    --font-family: 'Inter', 'Courier New', monospace;
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 255, 65, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 2rem;
}

.nav-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--teste);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-matrix);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(57, 255, 20, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(57, 255, 20, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: matrixRain 20s linear infinite;
}

@keyframes matrixRain {
    0% { 
        transform: translateY(-100px);
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh);
        opacity: 0;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    text-shadow: none;
}

.cta-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.cta-primary2 { 
    height: 100px;
    width: 100px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 1px rgba(0, 255, 65, 0.4);
    text-shadow: none;
}

.cta-primary2:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.cta-secondary:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-image {
    position: relative;
}

.dashboard-mockup {
    position: relative;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.dashboard-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    border: 1px solid var(--border-color);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--primary-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

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

/* Section Styles */
section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Credibility Section */
.credibility {
    background: var(--bg-secondary);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.credibility-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.credibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--bg-primary);
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.credibility-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.credibility-card p {
    color: var(--text-secondary);
}

/* Problems Section */
.problems {
    background: var(--gradient-matrix);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.problems .container {
    position: relative;
    z-index: 2;
}

.problems-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problems h2 {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
    margin-bottom: 2rem;
}

.problem-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--danger-color);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.2);
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.problem-header i {
    color: var(--danger-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
}

.problem-header h3 {
    color: var(--text-primary);
    margin: 0;
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 0, 64, 0.5);
}

.solution-highlight {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--success-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.solution-highlight h3 {
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.solution-highlight p {
    color: var(--text-primary);
}

.problems-visual {
    display: flex;
    justify-content: center;
}

.cost-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cost-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 280px;
    transition: var(--transition);
}

.cost-card.expensive {
    border-color: var(--danger-color);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
}

.cost-card.affordable {
    border-color: var(--success-color);
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
}

.cost-card:hover {
    transform: translateY(-5px);
}

.cost-amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    text-shadow: 0 0 10px currentColor;
}

.cost-card.expensive .cost-amount {
    color: var(--danger-color);
}

.cost-card.affordable .cost-amount {
    color: var(--success-color);
}

.cost-period {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.cost-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-bad {
    color: var(--danger-color);
    text-shadow: 0 0 5px rgba(255, 0, 64, 0.3);
}

.feature-good {
    color: var(--success-color);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.vs-divider {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--warning-color);
    padding: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

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

.feature-card {
    background: #0b1006;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--teste);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    background: #252b26;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: #001100;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.recommended {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.competitor {
    opacity: 0.8;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.pricing-badge.expensive {
    background: var(--danger-color);
    color: white;
}

.pricing-badge.recommended-badge {
    background: var(--teste);
    color: white;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-details {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-included i {
    color: var(--success-color);
}

.feature-limited i {
    color: var(--danger-color);
}

.pricing-cta {
    width: 100%;
    background: var(--teste);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.roi-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.roi-section h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.roi-stat {
    text-align: center;
}

.roi-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.roi-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Technical Credibility */
.tech-credibility {
    background: var(--bg-secondary);
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tech-stat {
    background: #001100;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.tech-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--teste);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tech-stack {
    background: #001100;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.tech-stack h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-item span {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-item small {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Use Cases */
.use-cases {
    background: #1d2424;
}

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

.case-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: var(--teste);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.case-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.case-card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.case-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    background: var(--teste);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Support Section */
.support {
    background: var(--bg-secondary);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-category {
    background: #001100;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.support-category h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.support-category h3 i {
    font-size: 1.5rem;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.support-list li:last-child {
    border-bottom: none;
}

.support-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.guarantees {
    background: #001100;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.guarantees h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.guarantee-item i {
    color: var(--success-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: white;
}

.offer-highlight {
    background: rgba(34, 197, 94, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--success-color);
    margin-bottom: 2rem;
}

.offer-highlight h3 {
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.contact-methods h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: white;
}

.contact-item span {
    opacity: 0.9;
}

.urgency-banner {
    background: var(--gradient-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.urgency-banner i {
    font-size: 1.5rem;
    color: white;
}

.urgency-banner div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.urgency-banner strong {
    color: white;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--teste);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
}

.form-submit {
    width: 100%;
    background: var(--teste);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .problems-content {
        grid-template-columns: 1fr;
    }
    
    .cost-comparison {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .credibility-grid,
    .cases-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

