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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    background-color: #006241;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #004d33;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0066cc;
    text-align: center;
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #006241;
    margin: 15px auto 0;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 80px;
}

.btn-estimate {
    background-color: #006241;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-estimate:hover {
    background-color: #004d33;
}

.phone-link {
    color: #0066cc;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #004d99;
}

/* Navegação */
nav {
    background-color: #0066cc;
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: center;
    width: 100%;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    color: white;
    padding: 15px 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #0052a3;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #0066cc;
    width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 20px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0066cc;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 200px 0 100px;
    margin-top: 116px; /* Altura do header */
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #0052a3;
}

/* Testimonials Section */
#testimonials {
    background-color: #f0f8ff;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial h4 {
    color: #0066cc;
}

/* Careers Section */
#careers {
    background-color: #0066cc;
    color: white;
}

#careers h2 {
    color: white;
}

#careers h2:after {
    background-color: white;
}

#careers p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

#career-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group input {
    width: auto;
    margin-right: 5px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.faq-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-info h3 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 10px;
}

#contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

/* Map */
.map-container {
    height: 450px;
    width: 100%;
}

/* Footer */
footer {
    background-color: #0066cc;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 80px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: opacity 0.3s;
}

.footer-links ul li a:hover {
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    margin-top: 20px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    background-color: #006241;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-cookie:hover {
    background-color: #004d33;
}

/* Active Class for Navigation */
nav ul li a.active {
    background-color: #0052a3;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
        margin-top: 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cookie-notice {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Página de Serviço */
.page-header {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 116px; /* Altura do header */
}

.page-header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-page {
    padding: 60px 0;
}

.service-intro {
    
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
}

.service-details {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
   
}

.service-column {
    flex: 1;
    min-width: 300px;
}

.service-column h2 {
    color: #0066cc;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: left;
}

.service-column h2:after {
    margin: 15px 0 0;
}

.service-checklist {
    list-style: none;
}

.service-checklist li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.service-checklist li:before {
    content: '✓';
    color: #006241;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-cta {
    background-color: #f0f8ff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-cta h3 {
    color: #0066cc;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.service-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    
}

.service-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-benefits {
    margin: 60px 0;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-testimonial {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.service-testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
}