/* ============================================
   SITE CSS - Laudo Técnico BR
   Landing Page de Marketing
   ============================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .display-2 {
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero-section .lead {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero-cta .btn-outline-light {
    border-width: 2px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* How It Works - Steps */
.steps-section {
    background: #f8f9fa;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Templates Showcase */
.template-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.template-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.template-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.template-preview {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.template-info {
    padding: 1.5rem;
}

.template-info h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.template-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing Cards */
.card-plan {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.card-plan .card-header {
    padding: 40px 20px 30px;
    text-align: center;
    border-bottom: none;
}

.card-plan .price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.card-plan.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.card-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-plan .card-body {
    padding: 30px;
}

.card-plan ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-plan ul li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonial-section {
    background: white;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #495057;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: #212529;
}

.testimonial-card .company {
    font-size: 0.9rem;
    color: #6c757d;
}

/* FAQ Section */
.faq-section .accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-section .accordion-button {
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 202, 240, 0.1));
    color: var(--primary-color);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 1.5rem;
    color: #6c757d;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trust-badge:hover {
    opacity: 1;
}

.trust-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.trust-badge span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

/* Auth Cards */
.auth-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.auth-card .card-body {
    padding: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section .display-2 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .card-plan.featured {
        transform: none;
    }
    
    .card-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .trust-badges {
        gap: 1.5rem;
    }
}
