/* ============================================
   VARIÁVEIS E RESET
   ============================================ */

:root {
    --primary-dark: #0f2a3d;
    --primary-blue: #1a3a52;
    --accent-gold: #c9a961;
    --accent-light: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content .tagline {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
    font-weight: 600;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   EMPRESAS DESTAQUE
   ============================================ */

.empresas-destaque {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.empresas-destaque h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

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

.empresa-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    cursor: pointer;
}

.empresa-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.empresa-icon {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empresa-icon img {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
}

.empresa-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.empresa-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.empresa-card .cta {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.empresa-card:hover .cta {
    color: var(--accent-light);
    transform: translateX(5px);
}

/* ============================================
   HISTÓRIA
   ============================================ */

.historia {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.historia h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.historia-text {
    max-width: 900px;
    margin: 0 auto;
}

.historia-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify;
}

.historia-text p:first-letter {
    font-weight: 600;
    color: var(--accent-gold);
}

/* ============================================
   CORRETORAS
   ============================================ */

.corretoras {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.corretoras h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

.corretoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
}

.corretora-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.corretora-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.corretora-item img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

/* ============================================
   SÓCIOS
   ============================================ */

.socios {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.socios h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

.socios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.socio-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.socio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.socio-foto {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.socio-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.socio-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    padding: 20px 20px 5px;
    margin: 0;
}

.socio-card .empresa {
    color: var(--accent-gold);
    font-weight: 600;
    padding: 0 20px;
    font-size: 0.9rem;
}

.socio-card .cargo {
    color: var(--text-light);
    padding: 5px 20px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.socio-card .formacao {
    padding: 15px 20px 20px;
    background-color: var(--bg-light);
}

.socio-card .formacao p {
    font-size: 0.85rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.socio-card .formacao ul {
    list-style: none;
    padding-left: 0;
}

.socio-card .formacao li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.socio-card .formacao li:before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.3rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .empresas-destaque h2,
    .historia h2,
    .corretoras h2,
    .socios h2 {
        font-size: 2rem;
    }

    .historia-text p {
        text-align: left;
    }

    .socios-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .socio-foto {
        height: 200px;
    }

    .socio-card h3 {
        font-size: 1.1rem;
    }

    .footer-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 10px;
        font-size: 0.8rem;
    }

    .navbar-content {
        flex-wrap: wrap;
    }

    .empresas-grid,
    .socios-grid {
        grid-template-columns: 1fr;
    }

    .empresas-destaque h2,
    .historia h2,
    .corretoras h2,
    .socios h2 {
        font-size: 1.5rem;
    }

    .socio-foto {
        height: 150px;
    }

    .socio-card .formacao li {
        font-size: 0.8rem;
    }
}
