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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: #1a1a1a;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #c10000;
    margin: 15px auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: #c10000;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 0, 0, 0.4);
}

.cta-button:hover {
    background-color: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(193, 0, 0, 0.6);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Discover Section */
.discover {
    background-color: #fff;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.discover-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.discover-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.discover-icon {
    font-size: 2.5rem;
    color: #c10000;
    margin-bottom: 20px;
}

.discover-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.discover-item p {
    color: #666;
}

/* Impact Section */
.impact {
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 0;
}

.impact-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.impact-quote blockquote {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 40px;
}

.impact-quote i {
    font-size: 2rem;
    color: #c10000;
    position: absolute;
}

.impact-quote i.fa-quote-left {
    top: 0;
    left: 0;
}

.impact-quote i.fa-quote-right {
    bottom: 0;
    right: 0;
}

/* Social Proof Section */
.social-proof {
    background-color: #f9f9f9;
}

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

.testimonial {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

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

.testimonial-content {
    padding: 25px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-content h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Urgency Section */
.urgency {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/urgency-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button-large {
    display: inline-block;
    background-color: #c10000;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 0, 0, 0.4);
}

.cta-button-large:hover {
    background-color: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(193, 0, 0, 0.6);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .impact-quote blockquote {
        font-size: 1.8rem;
    }
    
    .urgency-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .impact-quote blockquote {
        font-size: 1.5rem;
    }
    
    .cta-button-large {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .impact-quote blockquote {
        font-size: 1.3rem;
    }
    
    .urgency-content h2 {
        font-size: 1.6rem;
    }
    
    .urgency-content p {
        font-size: 1.1rem;
    }
}
