:root {
    --primary-blue: #0c4a93;
    --dark-blue: #062c5c;
    --light-blue: #f0f6fc;
    --accent-orange: #fff8ee;
    --detail-orange: #f3a123;
    --infra-green: #2e7d32;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-blue);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1ebd58;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

section {
    padding: 80px 0;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 95px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* --- HERO SECTION --- */
#home {
    padding-top: 145px;
    background: linear-gradient(135deg, var(--bg-white) 60%, var(--accent-orange) 100%);
    overflow: hidden;
}

#home .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(12, 74, 147, 0.15);
    border: 8px solid var(--bg-white);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background-color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 5px solid var(--detail-orange);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge i {
    color: var(--primary-blue);
    font-size: 24px;
}

.hero-badge span {
    font-weight: 700;
    display: block;
    color: var(--dark-blue);
}

/* --- INSTITUCIONAL & MVV --- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--detail-orange);
    border-radius: 2px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background-color: var(--bg-white);
    border: 1px solid #f1f5f9;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border-top: 4px solid var(--primary-blue);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(12, 74, 147, 0.05);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--primary-blue);
    font-size: 28px;
}

.vantagem-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--infra-green);
    font-size: 28px;
}

.mvv-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.mvv-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* --- INFRAESTRUTURA --- */
#infraestrutura {
    background-color: var(--light-blue);
}
#infraestrutura .mvv-card {
    border-top: 4px solid var(--infra-green);
}

/* --- EMPREENDIMENTOS (PRODUTOS) --- */
#empreendimentos {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--accent-orange) 100%);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.produto-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.produto-card:hover {
    transform: translateY(-5px);
}

.produto-img {
    height: 180px;
    overflow: hidden;
    background-color: #f8fafc;
    /* background-color: transparent; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produto-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tag-destaque {
    background-color: var(--detail-orange);
    color: var(--dark-blue);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.produto-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.produto-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* --- CONTATO & EQUIPE --- */
#contato {
    background-color: var(--bg-white);
}

.contato-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.equipe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.membro-card {
    background-color: var(--bg-white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.membro-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-blue);
}

.membro-img i {
    font-size: 40px;
    color: var(--primary-blue);
}

.membro-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--dark-blue);
}

.membro-card span {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 20px;
}

.info-canais {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.canal-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.canal-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.canal-text h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.canal-text a, .canal-text p {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
}

.canal-text a:hover {
    color: var(--primary-blue);
}

/* --- FOOTER --- */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

footer p {
    opacity: 0.8;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contato-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    #home .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    .hero-text h1 {
        font-size: 34px;
    }
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        gap: 15px;
        text-align: center;
    }
    nav ul.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    .equipe-grid {
        grid-template-columns: 1fr;
    }
}
