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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #e62e2e;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' width='800' height='800' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 0,400 C 100,300 200,300 300,400 S 500,500 600,400 S 800,300 900,400' stroke='%23d42828' stroke-width='3' fill='none'/%3E%3Cpath d='M 0,500 C 100,400 200,400 300,500 S 500,600 600,500 S 800,400 900,500' stroke='%23d42828' stroke-width='3' fill='none'/%3E%3Cpath d='M 0,600 C 100,500 200,500 300,600 S 500,700 600,600 S 800,500 900,600' stroke='%23d42828' stroke-width='3' fill='none'/%3E%3Cpath d='M 0,300 C 100,200 200,200 300,300 S 500,400 600,300 S 800,200 900,300' stroke='%23d42828' stroke-width='3' fill='none'/%3E%3Cpath d='M 0,200 C 100,100 200,100 300,200 S 500,300 600,200 S 800,100 900,200' stroke='%23d42828' stroke-width='3' fill='none'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23pattern)'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Header */
header {
    background-color: rgba(212, 40, 40, 0.9);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background-color: #fff;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pulsating {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

/* Hero Section */
.hero {
    background-color: rgba(212, 40, 40, 0.8);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

.hero h2.highlight {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #fff;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #e62e2e;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 10px 0;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Pain Points Section */
.pain-points {
    background-color: rgba(212, 40, 40, 0.7);
    padding: 60px 0;
}

.pain-points h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.pain-points-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-point {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon {
    background-color: #fff;
    color: #e62e2e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 20px;
}

/* Highlight Section */
.highlight-section {
    background-color: rgba(212, 40, 40, 0.9);
    padding: 60px 0;
    text-align: center;
}

.highlight-section h2 {
    font-size: 36px;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.highlight-section span {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
}

/* Features Section */
.features {
    background-color: rgba(212, 40, 40, 0.8);
    padding: 60px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-image {
    flex: 0 0 40%;
    padding-right: 40px;
}

.feature-content {
    flex: 0 0 60%;
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

/* Testimonials Intro */
.testimonials-intro {
    background-color: rgba(212, 40, 40, 0.9);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.testimonials-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonials-intro span {
    font-weight: 800;
    text-decoration: underline;
}

.testimonials-intro p {
    font-size: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: rgba(212, 40, 40, 0.8);
    color: #fff;
    padding: 0 0 60px;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonials span {
    font-weight: 800;
    text-decoration: underline;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 15px;
}

.author {
    font-weight: 700;
    margin-top: 20px;
}

/* Pricing Section */
.pricing {
    background-color: rgba(212, 40, 40, 0.7);
    padding: 60px 0;
    text-align: center;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.pricing span {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
}

.pricing p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    color: #fff;
}

.pricing-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

.pricing-features {
    flex: 0 0 48%;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.pricing-feature .icon {
    background-color: transparent;
    margin-right: 15px;
}

.pricing-feature .icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.pricing-box {
    flex: 0 0 48%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pricing-box h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.pricing-note {
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    font-size: 72px;
    font-weight: 900;
    margin: 10px auto;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.5);
    animation: pulse-price 2s infinite;
    display: inline-block;
    background-color: rgba(255, 0, 0, 0.3);
    padding: 5px 20px;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    line-height: 1;
    letter-spacing: -1px;
}

@keyframes pulse-price {
    0% {
        transform: scale(1);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.6);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.trial {
    font-size: 16px;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq {
    background-color: rgba(212, 40, 40, 0.8);
    padding: 60px 0;
}

.faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    background-color: rgba(212, 40, 40, 0.9);
    padding: 60px 0;
}

.contact .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info, .social-media {
    flex: 0 0 48%;
}

.contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    font-weight: 600;
    animation: pulse 3s infinite;
    animation-delay: calc(var(--n, 0) * 0.3s);
}

.social-link:nth-child(1) { --n: 1; }
.social-link:nth-child(2) { --n: 2; }
.social-link:nth-child(3) { --n: 3; }
.social-link:nth-child(4) { --n: 4; }
.social-link:nth-child(5) { --n: 5; }
.social-link:nth-child(6) { --n: 6; }
.social-link:nth-child(7) { --n: 7; }
.social-link:nth-child(8) { --n: 8; }

.social-link:hover {
    background-color: #fff;
    color: #e62e2e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .feature {
        flex-direction: column;
    }
    
    .feature-image {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .feature-content {
        flex: 0 0 100%;
    }
    
    .pricing-details {
        flex-direction: column;
    }
    
    .pricing-features, .pricing-box {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .contact .container {
        flex-direction: column;
    }
    
    .contact-info, .social-media {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2.highlight {
        font-size: 36px;
    }
    
    .highlight-section h2, 
    .testimonials-intro h2, 
    .testimonials h2, 
    .pricing h2, 
    .faq h2 {
        font-size: 28px;
    }
    
    .pain-points-list, 
    .testimonials-grid, 
    .features-grid {
        grid-template-columns: 1fr;
    }
}
