:root {
    --primary: #2C7BE5; /* Azul confiável */
    --secondary: #4ECDC4; /* Verde calmo */
    --accent: #FF6B6B; /* Coral para CTAs */
    --dark: #333F48; /* Quase preto */
    --light: #F9F9F9; /* Quase branco */
    --gray: #EDF1F2; /* Cinza leve */
}


.logo-container {
    margin-bottom: 1.5rem;
}

.logo-container img {
    max-width: 200px;
    height: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-gray {
    background-color: var(--gray) !important;
}

.btn-primary {
    background-color: #0144F5;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 50px;
}

.btn-primary:hover{
    background-color: #013de2;
}

.dark{
    color: #444 !important;
}


.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 120px;
    background-color: #2C7BE5;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.5rem;
    line-height: 1.3em;
    margin-bottom: 30px;
    color: #fff;
}

.hero-form {
    background: white;
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-form h3 {
    margin-bottom: 1em;
    text-align: center;
}

/* Feature Section */
.features {
    padding: 120px 0px;
    background-color: #EEF3FF;
}

.feature-box {
    padding: 30px 25px;
    border-radius: 10px;
    background: white;
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Main Features */
.main-features {
    padding: 80px 0;
    background-color: var(--gray);
}

.feature-item {
    margin-bottom: 8em;
    margin-top: 8em;
}

.feature-item img {
    border-radius: 10px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.highlighted {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.price {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.feature-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary);
    margin-right: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #EEF3FF;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial-title {
    color: #777;
    font-size: 0.9rem;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background: #2C7BE5;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-light {
    background-color: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-light:hover {
    background-color: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 500;
    padding: 20px;
    background-color: white;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: white;
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    background-color: white;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: var(--gray);
}

.contact-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.social-icons a {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.fade-in-delay-1 {
    animation: fadeIn 0.5s ease-in 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.5s ease-in 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.5s ease-in 0.6s forwards;
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero-form {
        margin-top: 40px;
    }
    
    .price-card.highlighted {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .feature-item {
        text-align: center;
    }
    
    .feature-item img {
        margin-bottom: 20px;
    }
}

#form-alert {
    margin-bottom: 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.text-success {
    color: #198754 !important;
    animation: fadeIn 0.5s ease-in-out;
}

.text-danger {
    color: #dc3545 !important;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Adições para melhorar a responsividade */
@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 4em;
        margin-top: 4em;
    }
    
    .feature-item img {
        max-width: 200px;
        height: auto;
        margin: 0 auto 20px;
    }
    
    .feature-item h3 {
        text-align: center;
    }
    
    .feature-item ul {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .feature-item img {
        max-width: 160px;
    }
    
    .feature-item {
        margin-bottom: 3em;
        margin-top: 3em;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }
    
    .fs-2 {
        font-size: 1.5rem !important;
    }
}

p#statusMessage {
    font-size: 1.2em;
}