/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #005284;
    --secondary-color: #033751;
    --footer-bg: #282828;
    --text-black: #333333;
    --text-white: #ffffff;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-black);
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.full-width { width: 100%; display: block; }

/* Navbar */
.navbar {
    background-color: var(--text-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section.dark-blue {
    background-color: var(--primary-color);
}

.section.dark-blue h1 {
    color: var(--text-white);
}

.title-divider {
    margin-bottom: 40px;
    max-width: 200px;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: justify;
}

/* Hero */
.hero-img {
    width: 100%;
    margin-top: 0;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--secondary-color);
    padding: 40px 30px;
    color: var(--text-white);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.parceria-msg {
    margin-top: 60px;
}

/* Socios */
.socio-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    text-align: left;
}

.socio-row.reverse {
    flex-direction: row-reverse;
}

.socio-text {
    flex: 1;
}

.socio-text p {
    margin-bottom: 15px;
    font-size: 17px;
}

.socio-img {
    flex: 0 0 400px;
}

.socio-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.divider-dotted {
    border-top: 5px dotted var(--text-black);
    width: 80%;
    margin: 40px auto;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-white);
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.footer-img img {
    width: 100%;
    border-radius: 5px;
}

.footer-info h1 {
    margin-bottom: 30px;
    font-size: 32px;
}

.footer-info p {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-info a {
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-info a:hover {
    opacity: 0.8;
}

.btn-whatsapp {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white) !important;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: var(--text-white);
    color: var(--footer-bg) !important;
}

.btn-whatsapp i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .socio-row, .socio-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    .socio-img {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--text-white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 0;
        padding: 15px 20px;
        border-top: 1px solid #eee;
    }
    .section h1 {
        font-size: 28px;
    }
}
