/* ============================================
   LANDING PAGE - PRIMO CONTINGÊNCIA
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0B0F1F;
    color: white;
    overflow-x: hidden;
}

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

/* ============================================
   HEADER
   ============================================ */

.header {
    background: rgba(11, 15, 31, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

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

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

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #FF6B00, #FF8C2E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text p {
    color: #8B92B0;
    font-size: 0.65rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #A5AAC7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #FF8C2E;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login {
    background: transparent;
    border: 1px solid #FF6B00;
    color: #FF8C2E;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-login:hover {
    background: #FF6B00;
    color: white;
}

.btn-signup {
    background: linear-gradient(135deg, #FF6B00, #FF8C2E);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.btn-signup:hover {
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1), transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B00, #FF8C2E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #A5AAC7;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.btn-primary {
    background: linear-gradient(135deg, #FF6B00, #FF8C2E);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #2A2F4A;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: #FF6B00;
    background: rgba(255, 107, 0, 0.1);
}

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

.stat h3 {
    font-size: 2rem;
    color: #FF8C2E;
}

.stat p {
    color: #A5AAC7;
    font-size: 0.85rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(18, 22, 48, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.2);
    max-width: 300px;
}

.hero-card i {
    font-size: 3rem;
    color: #FF8C2E;
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: #A5AAC7;
    font-size: 0.9rem;
}

/* ============================================
   QUICK BENEFITS
   ============================================ */

.quick-benefits {
    padding: 3rem 0;
    background: rgba(18, 22, 48, 0.5);
}

.quick-benefits .container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.benefit-card i {
    font-size: 2rem;
    color: #FF8C2E;
    margin-bottom: 0.5rem;
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.benefit-card p {
    color: #A5AAC7;
    font-size: 0.8rem;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */

.solutions {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #A5AAC7;
    max-width: 600px;
    margin: 0 auto;
}

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

.solution-card {
    background: #0F122E;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #2A2F4A;
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B00;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.solution-icon i {
    font-size: 1.8rem;
    color: #FF8C2E;
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: #8B92B0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.solution-link {
    color: #FF8C2E;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.solution-link:hover {
    gap: 10px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
    padding: 5rem 0;
    background: rgba(18, 22, 48, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #FF8C2E;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #8B92B0;
    font-size: 0.85rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 46, 0.05));
}

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #A5AAC7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0A0E1A;
    padding: 3rem 0 1rem;
    border-top: 1px solid #1A1F35;
}

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

.footer-brand h3 {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.footer-brand p {
    color: #8B92B0;
    font-size: 0.8rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #FF8C2E;
}

.footer-links a {
    display: block;
    color: #8B92B0;
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FF8C2E;
}

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

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C2E;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons a:hover {
    background: #FF6B00;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1A1F35;
}

.footer-bottom p {
    color: #4A4F6E;
    font-size: 0.7rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 968px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}