/* Basic Reset & Body Styles */
body {
    font-family: sans-serif; /* Choose a clean, modern font later */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header Styles */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #457B9D; /* Example color - adjust based on logo/preference */
    font-weight: bold;
}

header nav ul li a:hover {
    color: #1D3557; /* Darker shade for hover */
}

/* Main Content Styles */
main {
    padding: 40px 0;
}

/* Hero Section (Homepage) */
.hero {
    background-color: #A8DADC; /* Light blue/green - adjust */
    color: #1D3557; /* Dark blue text */
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-buttons .btn-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
}

.cta-buttons .btn-whatsapp:hover {
    background-color: #128C7E;
}

.cta-buttons .btn {
    background-color: #457B9D; /* Primary color */
    color: #fff;
}

.cta-buttons .btn:hover {
    background-color: #1D3557; /* Darker primary */
}

/* Info Bar (Homepage) */
.info-bar {
    background-color: #f1faee; /* Very light green/off-white */
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.info-bar span {
    margin: 0 15px;
    color: #1D3557;
}

/* General Page Title Section */
.page-title {
    background-color: #e0e0e0; /* Light grey */
    padding: 20px 0;
    margin-bottom: 30px;
}

.page-title h1 {
    margin: 0;
    color: #1D3557;
}

/* General Content Section */
.content-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #457B9D;
    margin-top: 0;
}

/* Service List (servicos.html) */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.service-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-list h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #1D3557;
}

/* Contact Page Styles */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

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

#map {
    height: 350px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Footer Styles */
footer {
    background-color: #1D3557; /* Dark blue */
    color: #f1faee; /* Light text */
    padding: 30px 0;
    margin-top: 40px;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.9em;
}

.social-links a {
    margin-left: 10px;
}

.social-links img {
    transition: opacity 0.3s ease;
}

.social-links a:hover img {
    opacity: 0.8;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    border-top: 1px solid #457B9D; /* Lighter blue separator */
    padding-top: 15px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul {
        margin-top: 15px;
        justify-content: center;
    }

    header nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .info-bar {
        font-size: 0.9em;
    }
    
    .info-bar span {
        display: block;
        margin: 5px 0;
    }

    .contact-details {
        flex-direction: column;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 15px;
    }
}



/* Updated WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 50%; /* Make it circular */
    padding: 8px; /* Add some padding around the icon */
    display: inline-flex; /* Helps center the SVG */
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Add a subtle shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float svg {
    width: 34px; /* Adjust size as needed */
    height: 34px;
    fill: #fff; /* White icon */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E; /* Darker green on hover */
}

