 
* {
    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;
    }
}
.sobre-bg {
    background-color: #d7dadb; 
    padding: 60px 5%;
}
.magazine-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    background: #ffffff;
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.mag-left, .mag-right {
    padding: 60px;
}
.cyan-text {
    color: #0aa2b5 !important;
}
.mag-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 30px;
}
.mag-title span {
    color: #0aa2b5; 
}
.mag-intro p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}
.mag-img-horizontal {
    width: 100%;
    height: 300px;
    margin-top: 40px;
}
.mag-img-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); 
}
.mag-bottom-split {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.mag-cyan-box {
    background-color: #0aa2b5;
    color: #fff;
    padding: 30px;
    width: 50%;
    margin-top: -60px; 
    position: relative;
    z-index: 2;
}
.quote-mark {
    font-size: 2rem;
    color: rgba(255,255,255,0.4);
    font-family: serif;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}
.mag-cyan-box h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 15px;
}
.mag-cyan-box p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}
.mag-text-beside {
    width: 50%;
    padding-top: 30px; 
}
.mag-text-beside h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.mag-text-beside p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}
.mag-gray-box {
    background-color: #f1f1f1;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.mag-gray-box i {
    color: #0aa2b5;
    font-size: 1.5rem;
}
.mag-gray-box p {
    margin: 0;
    font-size: 0.8rem;
}
.mag-right-top {
    display: flex;
    gap: 30px;
}
.mag-text-col {
    width: 55%;
}
.mag-img-vertical {
    width: 45%;
    height: 450px;
}
.mag-img-vertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); 
}
.mag-block {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.mag-block-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.mag-block-title i {
    font-size: 1.5rem;
}
.mag-block-title h4 {
    font-size: 1.4rem;
    color: #333;
}
.mag-block p {
    font-size: 0.9rem;
    color: #666;
}
.mag-light-quote {
    background-color: #e6f7f8;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #0aa2b5;
}
.quote-flex {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.quote-mark-small {
    color: #0aa2b5;
    font-family: serif;
    font-size: 1.5rem;
    font-weight: bold;
}
.quote-flex p {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.quote-subtext {
    font-size: 0.8rem !important;
    padding-left: 35px;
}
.mag-values-section {
    margin-top: 30px;
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.value-item i {
    font-size: 1.2rem;
    margin-top: 3px;
}
.value-item p {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
}
@media screen and (max-width: 1024px) {
    .magazine-layout {
        grid-template-columns: 1fr; 
    }
    
    .mag-right {
        border-top: 2px solid #0aa2b5; 
    }
}
@media screen and (max-width: 768px) {
    .mag-left, .mag-right {
        padding: 30px 20px;
    }
    .mag-bottom-split, .mag-right-top {
        flex-direction: column; 
        gap: 20px;
    }
    .mag-cyan-box {
        width: 100%;
        margin-top: -20px; 
    }
    .mag-text-beside, .mag-text-col, .mag-img-vertical {
        width: 100%;
    }
    .mag-text-beside {
        padding-top: 0;
    }
    .values-grid {
        grid-template-columns: 1fr; 
    }
}