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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
}

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

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

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #16a34a;
    display: block;
    max-width: 100%;
    height: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 0.25rem;
}

.logo-text p {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Buttons */
.cta-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #1e40af;
}

.cta-button.secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%);
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(17, 17, 17, 0.8);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(22, 163, 74, 0.1);
    border-color: #16a34a;
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.25rem;
}

/* Problems Section */
.problems {
    padding: 4rem 2rem;
    background: #000000;
}

.problems-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.highlight-red {
    color: #dc2626;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #f8fafc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-card {
    background: #111111;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #333333;
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-icon.red {
    filter: drop-shadow(0 0 10px #dc2626);
}

.problem-icon.orange {
    filter: drop-shadow(0 0 10px #ea580c);
}

.problem-icon.blue {
    filter: drop-shadow(0 0 10px #3b82f6);
}

.problem-card h3 {
    color: #dc2626;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-card h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #f8fafc;
    line-height: 1.6;
}

/* Unique Value Section */
.unique-value {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #16a34a 0%, #1e40af 100%);
    position: relative;
}

.unique-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.unique-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-title.white {
    color: #ffffff;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.9);
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: #000000;
    text-align: center;
}

.testimonials-content {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    margin-top: 3rem;
    background: #111111;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    border-radius: 12px;
    border: none;
    width: 100%;
    min-height: 480px;
}

@media (max-width: 768px) {
    .video-container iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .video-container iframe {
        min-height: 250px;
    }
    
    .testimonials {
        padding: 2rem 1rem;
    }
}

/* Mentor Section */
.mentor {
    padding: 4rem 2rem;
    background: #000000;
}

.mentor-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.mentor-image {
    text-align: center;
}

.mentor-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    border: 3px solid #16a34a;
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
    display: block;
    height: auto;
    object-fit: cover;
}

.mentor-badge {
    display: inline-block;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mentor-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.mentor-description {
    font-size: 1.125rem;
    color: #f8fafc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #111111;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-number.green { color: #22c55e; }
.stat-number.blue { color: #3b82f6; }
.stat-number.purple { color: #7c3aed; }
.stat-number.orange { color: #ea580c; }

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.credentials {
    margin-bottom: 2rem;
}

.credential-item {
    color: #f8fafc;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%);
    text-align: center;
}

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

.final-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-subtitle {
    font-size: 1.125rem;
    color: #f8fafc;
    margin-bottom: 3rem;
}

.final-benefits {
    background: #111111;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    margin-bottom: 3rem;
    text-align: left;
}

.final-benefits h3 {
    color: #22c55e;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-list {
    display: grid;
    gap: 1rem;
}

.benefit-list .benefit-item {
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    color: #f8fafc;
    font-size: 1rem;
}

.urgency-text {
    color: #ea580c;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-section h3,
.footer-section h4 {
    color: #16a34a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #64748b;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .mentor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .problems,
    .unique-value,
    .mentor,
    .final-cta {
        padding: 2rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(2) { animation-delay: 0.1s; }
.hero-content > *:nth-child(3) { animation-delay: 0.2s; }
.hero-content > *:nth-child(4) { animation-delay: 0.3s; }
.hero-content > *:nth-child(5) { animation-delay: 0.4s; }

