/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #1a252f;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c3e50;
}

/* Hero Banner */
.hero-banner {
    background: url('../images/banner.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Highlights */
.highlights {
    padding: 60px 0;
    background: #f9f9f9;
}

.highlights .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.highlight-box {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.highlight-box:hover {
    transform: translateY(-10px);
}

.highlight-box i {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.highlight-box h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.highlight-box a {
    display: inline-block;
    margin-top: 15px;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
}

/* About Section */
.about-section {
    padding: 60px 0;
    text-align: center;
}

.about-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* News Section */
.news-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.news-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-item {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    padding: 15px;
    color: #2c3e50;
}

.news-item p {
    padding: 0 15px 15px;
}

.news-item a {
    display: inline-block;
    padding: 0 15px 15px;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial h4 {
    color: #2c3e50;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 15px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #3498db;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-banner {
        height: 60vh;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
}