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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%); /* Gradiente Verde WhatsApp */
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1DA851 0%, #178D41 100%); /* Gradiente Verde WhatsApp mais escuro no hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); /* Sombra verde */
}

.btn-secondary {
    background: transparent;
    color: #25D366; /* Texto verde WhatsApp */
    border: 2px solid #25D366; /* Borda verde WhatsApp */
}

.btn-secondary:hover {
    background: #25D366; /* Fundo verde WhatsApp no hover */
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #8b5cf6;
}

.cta-nav {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%); /* Gradiente Verde WhatsApp */
    color: white !important;
}

.cta-nav:hover {
    background: linear-gradient(135deg, #1DA851 0%, #178D41 100%); /* Gradiente Verde WhatsApp mais escuro no hover */
    transform: translateY(-1px);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 120px 0 80px;
    /* Removendo min-height: 100vh para evitar sobreposição */
    display: flex;
    align-items: center;
    width: 100%; /* Garantir que ocupe a largura total */
    min-height: 80vh; /* Um valor menor para evitar que ocupe a tela inteira e se sobreponha */
}

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

.hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 50px;
}

.highlight {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-item i {
    color: #10b981;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    color: #d1d5db;
    line-height: 1.5;
}

.hero-cta {
    text-align: left;
}

.cta-subtitle {
    margin-top: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
}

/* Problem Section */
.problem-section {
    background: #f9fafb;
    padding: 80px 0;
position: relative; /* Adicionar posição relativa */
z-index: 10; /* Garantir que fique acima da seção anterior */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.problem-title {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 24px;
    font-weight: 700;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
    border-bottom: 1px solid #e5e7eb;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.problem-image {
    text-align: center;
    margin-bottom: 60px;
}

.problem-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.truth-section {
    background: #fef2f2;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #dc2626;
    text-align: center;
}

.truth-title {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.truth-text {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 12px;
}

.truth-subtitle {
    color: #6b7280;
    font-style: italic;
}

/* Solution Section */
.solution-section {
    background: #1f2937;
    color: white;
    padding: 80px 0;
}

.solution-section .section-title {
    color: white;
}

.solution-section .section-subtitle {
    color: #d1d5db;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.solution-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.solution-number {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.solution-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: white;
}

.solution-description {
    color: #d1d5db;
    line-height: 1.6;
}

.solution-cta {
    text-align: center;
}

/* Results Section */
.results-section {
    background: #f9fafb;
    padding: 80px 0;
}

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

.video-testimonial {
    max-width: 600px;
    margin: 0 auto 40px;
}

.video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.video-placeholder img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(139, 92, 246, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(139, 92, 246, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.video-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 12px;
}

.video-description {
    color: #6b7280;
    font-style: italic;
}

/* Team Section */
.team-section {
    background: white;
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro-title {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.team-member {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
    width: 100%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.member-info {
    padding: 24px;
}

.member-name {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.member-role {
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-description {
    color: #6b7280;
    line-height: 1.6;
}

.why-choose-us {
    background: #f3f4f6;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.why-title {
    text-align: center;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 40px;
}

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

.why-item {
    text-align: center;
    padding: 20px;
}

.why-item i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 16px;
}

.why-item h4 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 12px;
}

.why-item p {
    color: #6b7280;
}

.team-cta {
    text-align: center;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
    padding: 80px 0;
}

.process-section .section-title {
    color: white;
}

.process-section .section-subtitle {
    color: #e0e7ff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: white;
}

.step-description {
    color: #e0e7ff;
    line-height: 1.6;
}

.process-image {
    text-align: center;
    margin-bottom: 40px;
}

.process-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-cta {
    text-align: center;
}

/* Urgency Section */
.urgency-section {
    background: #fef3c7;
    padding: 80px 0;
}

.urgency-section .section-title {
    color: #92400e;
}

.urgency-section .section-subtitle {
    color: #78350f;
}

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

.urgency-title {
    font-size: 1.5rem;
    color: #92400e;
    margin-bottom: 24px;
}

.urgency-list {
    list-style: none;
}

.urgency-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: #78350f;
    line-height: 1.6;
}

.urgency-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 20px;
}

.urgency-alert {
    background: #fed7aa;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #f97316;
    text-align: center;
}

.alert-badge {
    background: #ea580c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}

.alert-text {
    font-size: 1.2rem;
    color: #9a3412;
    font-weight: 600;
    margin-bottom: 12px;
}

.alert-subtitle {
    color: #78350f;
}

.urgency-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.2;
}

.cta-problems {
    margin-bottom: 32px;
}

.cta-problems p {
    font-size: 1.2rem;
    color: #f87171;
    margin-bottom: 8px;
    font-weight: 500;
}

.cta-solution {
    font-size: 1.3rem;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 40px;
}

.analysis-benefits {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.benefits-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: #e5e7eb;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.guarantees {
    margin-bottom: 40px;
}

.guarantees-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
}

.guarantee-item i {
    color: #10b981;
    font-size: 20px;
}

.guarantee-item span {
    color: #e5e7eb;
    font-size: 14px;
}

.final-cta {
    margin-bottom: 32px;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #10b981;
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin: 0;
}

.faq-question i {
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: #9ca3af;
    margin-bottom: 4px;
    font-size: 14px;
}

/* Mobile Navigation Styles */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .urgency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .hero-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        gap: 15px;
    }
    
    .stat-card {
        padding: 10px 14px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Improved mobile spacing */
    .hero, .problem-section, .solution-section, .results-section, 
    .team-section, .process-section, .urgency-section, .cta-section, .faq-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Mobile-optimized buttons */
   .btn {
    min-height: 48px;
    padding: 16px 24px;
    font-size: 16px;
}
    
    .btn-large {
    padding: 18px 32px;
    font-size: 17px;
}
    
    .btn-xl {
        padding: 18px 36px;
        font-size: 18px;
    }
    
    /* Mobile typography improvements */
    .feature-item {
        margin-bottom: 20px;
    }
    
    .feature-item span {
        font-size: 15px;
    }
    
    .solution-item, .process-step {
        padding: 24px;
    }
    
    .solution-title, .step-title {
        font-size: 1.2rem;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .why-choose-us {
        padding: 40px 20px;
    }
    
    .why-item {
        padding: 15px;
    }
    
    .why-item i {
        font-size: 2rem;
    }
    
    .analysis-benefits, .urgency-alert {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .btn-xl {
        padding: 16px 32px;
        font-size: 17px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-card {
        padding: 8px 12px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .hero-features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    .solution-item, .process-step {
        padding: 20px;
    }
    
    .solution-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .solution-title, .step-title {
        font-size: 1.1rem;
    }
    
    .solution-description, .step-description {
        font-size: 14px;
    }
    
    .member-image {
        height: 200px;
    }
    
    .member-info {
        padding: 16px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-description {
        font-size: 14px;
    }
    
    .why-choose-us {
        padding: 30px 15px;
    }
    
    .why-item {
        padding: 10px;
    }
    
    .why-item i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .why-item h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .why-item p {
        font-size: 14px;
    }
    
    .analysis-benefits, .urgency-alert {
        padding: 25px 15px;
    }
    
    .benefits-title, .guarantees-title {
        font-size: 1.3rem;
    }
    
    .benefits-list li, .urgency-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .alert-text {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero, .problem-section, .solution-section, .results-section, 
    .team-section, .process-section, .urgency-section, .cta-section, .faq-section {
        padding: 40px 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img, .footer-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
        box-shadow: none;
    }
    
    .solution-item:hover, .team-member:hover, .process-step:hover {
        transform: none;
    }
    
    .faq-question:hover {
        background: white;
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
    
    .mobile-menu-toggle {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .faq-question {
        min-height: 60px;
    }
    
    .play-button {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .btn-xl {
        padding: 16px 32px;
        font-size: 18px;
    }
}

/* Elementor Compatibility Classes */
.elementor-widget-container {
    /* Reset any Elementor default styles that might conflict */
}

.elementor-section {
    /* Ensure sections work properly with Elementor */
}

.elementor-column {
    /* Column compatibility */
}

/* WordPress Compatibility */
.wp-block {
    /* WordPress block compatibility */
}

.alignwide {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

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

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
