.elementor-91 .elementor-element.elementor-element-eb5e810{--display:flex;}.elementor-91 .elementor-element.elementor-element-eb5e810.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-91 .elementor-element.elementor-element-a4501ff{width:100%;max-width:100%;}@media(min-width:768px){.elementor-91 .elementor-element.elementor-element-eb5e810{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-a4501ff *//* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: #111;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4d4d, #f9644e);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Efeito de pulso para CTA principal */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 77, 77, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('https://via.placeholder.com/1920x1080?text=Background') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.badge i {
    color: #ff4d4d;
    margin-right: 8px;
    font-size: 18px;
}

/* Benefits Section */
.benefits-section {
    background-color: white;
    text-align: center;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff4d4d, #f9644e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.testimonial-content {
    padding: 25px;
}

.stars {
    color: #ffb900;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-content span {
    color: #ff4d4d;
    font-weight: 500;
    font-size: 14px;
}

/* How It Works Section */
.how-it-works-section {
    background-color: white;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    text-align: left;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff4d4d, #f9644e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 80px 0;
}

.form-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #333;
}

.form-header {
    background: linear-gradient(45deg, #ff4d4d, #f9644e);
    padding: 30px;
    color: white;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-content {
    padding: 40px;
}

.form-placeholder {
    text-align: center;
    padding: 40px;
    border: 2px dashed #ddd;
    border-radius: 10px;
}

.form-placeholder p {
    margin-bottom: 30px;
    color: #777;
}

.form-benefits {
    color: white;
}

.form-benefits h3 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.form-benefits h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff4d4d;
}

.form-benefits ul {
    margin-bottom: 30px;
}

.form-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.form-benefits li i {
    color: #ff4d4d;
    margin-right: 10px;
    font-size: 18px;
}

.guarantee {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.guarantee-icon {
    font-size: 40px;
    color: #ffb900;
    margin-right: 20px;
}

.guarantee-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.guarantee-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
    text-align: center;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
}

.faq-toggle {
    color: #ff4d4d;
    font-size: 18px;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff4d4d;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff4d4d;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: #ff4d4d;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff4d4d;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .form-section .container {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        order: -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content .subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .form-content {
        padding: 20px;
    }
}/* End custom CSS */