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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h2 {
    margin: 0;
}

.logo h2 img {
    max-width: 180px;
    height: auto;
    display: block;
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
}

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

.nav a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #1e3a8a;
}

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

.btn-primary, .btn-secondary, .btn-outline, .btn-form, .btn-pricing {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #10b981;
    color: white;
}

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

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-outline {
    background: transparent;
    color: #d5d5d5;
    border: 2px solid #d5d5d5;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

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

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

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: #10b981;
}

.btn-form {
    background: #10b981;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.btn-form:hover {
    background: #059669;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
}

.form-disclaimer a {
    color: #1e3a8a;
    text-decoration: none;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f9fafb;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.benefit-card h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-content {
    display: flex;
    flex-direction: column;
}

.team-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.team-text {
    order: 1;
}

.team-text > p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.team-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature i {
    font-size: 1.5rem;
    color: #4a6ee0;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.team-image {
    order: 2;
    margin-top: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .team-image {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .team-image {
        max-width: 70%;
    }
}

.image-placeholder {
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.7;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: #f9fafb;
}

.solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 1.5rem;
    color: white;
}

.solution-card h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.solution-card ul {
    list-style: none;
}

.solution-card li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.solution-card li:before {
    content: "•";
    color: #10b981;
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #10b981;
    transform: scale(1.05);
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .pricing-card.featured {
        width: 200px;
        transform: scale(1.02);
    }
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border-color: #10b981;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

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

.currency {
    font-size: 1.2rem;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .pricing-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pricing-features,
    .pricing-card .hero-form {
        flex: 0 0 100%;
        order: 0;
        width: 100%;
    }
    
    .pricing-features {
        margin-top: 0;
        width: 100%;
    }
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.pricing-features i {
    color: #10b981;
}

.btn-pricing {
    background: #1e3a8a;
    color: white;
    width: 40%;
}

.btn-pricing:hover {
    background: #1e40af;
}

.featured .btn-pricing {
    background: #10b981;
}

.featured .btn-pricing:hover {
    background: #059669;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Trial Section */
.trial {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

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

.trial h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trial-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trial-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.trial-steps {
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trial-steps h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.trial-steps ol {
    padding-left: 1.5rem;
}

.trial-steps li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.footer-section h3 span {
    color: white;
}

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

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10b981;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #10b981;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #10b981;
    width: 20px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .nav-buttons a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .team-content {
    display: flex;
    flex-direction: column;
    }
    
    .benefits-grid,
    .solutions-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .trial-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card .hero-form {
    margin: 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    }

    .pricing-card .hero-form .form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    }

    .pricing-card .hero-form .form-header h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    }

    .pricing-card .hero-form .form-header p {
    font-size: 1rem;
    color: #4b5563;
    }

    /* Ajuste para o layout com formulário e features lado a lado */
    .pricing-features {
    margin: 0;
    }

    .pricing-content .pricing-features {
    flex: 0 0 55%; /* Aumenta a largura das features */
    font-size: 0.9rem; /* Reduz um pouco o texto das features */
    }

    .pricing-content .pricing-features li {
    margin-bottom: 0.1rem; /* Reduz espaçamento entre itens */
    font-size: 0.75rem;
    }

    .pricing-card .contact-form input[type="text"],
    .pricing-card .contact-form input[type="email"],
    .pricing-card .contact-form input[type="tel"] {
    background-color: #f9fafb; /* Fundo mais claro para os inputs */
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #374151;
    }
    
    .pricing-card .contact-form input[type="text"]:focus,
    .pricing-card .contact-form input[type="email"]:focus,
    .pricing-card .contact-form input[type="tel"]:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    outline: none;
    }

    .pricing-card .contact-form .btn-form {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #10b981;
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .pricing-card .contact-form .btn-form:hover {
    background-color: #059669;
    transform: translateY(-2px);
    }

    pricing-card .form-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
    text-align: center;
    }

    .pricing-card .form-disclaimer a {
    color: #10b981;
    text-decoration: none;
    }

    .pricing-card .form-disclaimer a:hover {
    text-decoration: underline;
    }

    /* Remover o estilo de fundo e blur do formulário quando dentro do pricing-card */
    .pricing-card #whatsappFormBI.contact-form {
    background: none;
    backdrop-filter: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .benefits,
    .team,
    .solutions,
    .pricing,
    .testimonials,
    .trial {
        padding: 60px 0;
    }
    
    .benefits h2,
    .solutions h2,
    .pricing h2,
    .testimonials h2,
    .trial h2 {
        font-size: 2rem;
    }
    
    .team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.benefit-card,
.solution-card,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

