
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 5%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    transition: transform 0.3s;
    object-fit: cover;
}
.logo:hover {
    transform: scale(1.05);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #2e7d32;
}
.nav-links a.active {
    color: #2e7d32;
    border-bottom: 3px solid #2e7d32;
    padding-bottom: 5px;
}
.social-icons-nav a {
    color: #555;
    font-size: 20px;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons-nav a:hover {
    color: #2e7d32;
}
main {
    padding: 60px 5%;
    min-height: 60vh;
}
.page-section {
    max-width: 1200px;
    margin: 0 auto;
}
.page-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.page-container h1 {
    color: #2e7d32;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.page-container p {
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}
footer {
    background-color: #1a1a1a;
    color: #bfbfbf;
    padding-top: 50px;
    margin-top: 50px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #2e7d32;
}
.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.footer-col p i {
    color: #2e7d32;
    margin-right: 10px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #bfbfbf;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: #2e7d32;
    padding-left: 5px;
}
.footer-socials {
    margin-top: 15px;
}
.footer-socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s, transform 0.3s;
}
.footer-socials a:hover {
    background-color: #2e7d32;
    transform: translateY(-3px);
}
.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}
@media screen and (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .page-container {
        padding: 20px;
    }
    .page-container h1 {
        font-size: 2rem;
    }
}
.contact-page-bg {
    background-color: #e8e9ea;
    padding-bottom: 40px;
    min-height: 80vh;
}
.container-contact-layout {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 5%;
}
.contact-dark-bar {
    background-color: #1a1a1a;
    height: 90px;
    position: relative;
    border-bottom: 5px solid #000;
}
.contact-title-tab {
    background-color: #3498db; 
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    padding: 20px 40px;
    display: inline-block;
    margin-top: 15px; 
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.3fr 1fr; 
    gap: 40px; 
    margin-top: 40px;
    align-items: start;
}
.white-panel {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.panel-title-light {
    font-weight: 300;
    font-size: 2rem;
    color: #444;
    margin-bottom: 15px;
}
.panel-subtitle {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.custom-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}
.input-wrap {
    display: flex;
    flex-direction: column;
}
.input-wrap label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}
.input-wrap input, .input-wrap textarea {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    color: #555;
    outline: none;
    transition: border 0.3s;
}
.input-wrap input:focus, .input-wrap textarea:focus {
    border-color: #3498db;
}
.input-wrap textarea {
    height: 100%;
    resize: none;
}
.field-nome { grid-column: 1; grid-row: 1; }
.field-assunto { grid-column: 2; grid-row: 1; }
.field-email { grid-column: 1; grid-row: 2; }
.field-telefone { grid-column: 1; grid-row: 3; }
.field-mensagem { grid-column: 2; grid-row: 2 / span 2; } 
.field-submit { grid-column: 1; grid-row: 4; margin-top: 10px; }
.btn-blue {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-blue:hover {
    background-color: #2980b9;
}
.info-panel {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.blue-header-box {
    background-color: #3498db;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    padding: 20px 25px;
}
.info-content-list {
    padding: 10px 25px 30px 25px;
}
.info-item {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc; 
}
.info-item.no-border {
    border-bottom: none;
}
.info-label {
    color: #3498db;
    font-size: 0.85rem;
    margin-bottom: 3px;
}
.info-value {
    color: #555;
    font-size: 0.95rem;
}
.contact-sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 30px; 
}
.widget-box {
    padding: 30px 20px;
}
.blue-bg {
    background-color: #3498db;
    color: #fff;
    text-align: center;
}
.location-box i {
    font-size: 4rem;
    margin-bottom: 10px;
}
.location-box h3 {
    font-weight: 300;
    font-size: 1.5rem;
}
 .widget-socials-grid {
    display: flex;
    justify-content: space-between;
    gap: 10px; 
    flex-wrap: wrap; 
}
.widget-socials-grid a {
    width: 45px; 
    height: 45px; 
    background-color: #111;
    color: #fff;
    display: flex;
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.3s; 
}
.widget-socials-grid a:hover {
    background-color: #3498db; 
    transform: translateY(-5px); 
}
.newsletter-box {
    text-align: left;
    padding: 20px;
}
.news-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.newsletter-box input {
    width: 100%;
    padding: 12px;
    border: none;
    margin-bottom: 10px;
    color: #333;
    outline: none;
}
.newsletter-box p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}
@media screen and (max-width: 1100px) {
    .contact-main-grid {
        grid-template-columns: 1fr 1fr; 
    }
    
    .contact-sidebar-right {
        grid-column: span 2; 
        flex-direction: row; 
    }
    .widget-box, .widget-socials-grid {
        flex: 1;
    }
}
@media screen and (max-width: 768px) {
    .contact-title-tab {
        margin-top: 20px;
        font-size: 1.5rem;
    }
    .contact-main-grid {
        grid-template-columns: 1fr; 
    }
    
    .contact-sidebar-right {
        grid-column: span 1;
        flex-direction: column; 
    }
    
    .custom-form-grid {
        grid-template-columns: 1fr;
    }
    .field-nome, .field-assunto, .field-email, .field-telefone, .field-mensagem, .field-submit {
        grid-column: 1;
        grid-row: auto;
    }
    .input-wrap textarea {
        height: 150px;
    }
}
