/* --- Variáveis de Cores e Configurações --- */
:root {
    --primary: #FF6B00;
    /* Laranja Principal */
    --secondary: #FFC107;
    /* Amarelo/Dourado */
    --dark: #1a1a1a;
    --text-gray: #666;
    --light-bg: #F9F9F9;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* --- Reset Básico --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utilitários --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-padding {
    padding: 50px 0;
}

.badge-pill {
    background-color: #FFF3E0;
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.section-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Highlight específico para Quem Somos conforme referência */
.highlight-success {
    color: #FF6B00;
    font-weight: 700;
}

.highlight-union {
    color: #FFC107;
    font-weight: 700;
}

/* --- Header / Navbar --- */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.logo-svg {
    height: 50px;
    /* Ajuste a altura da sua logo SVG aqui */
    width: auto;
    display: block;
}

.logo-svg2 {
    height: 70px;
    /* Ajuste a altura da sua logo SVG aqui */
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
}

.nav-link:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* --- Hero Section --- */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(to right, #ffffff 55%, #FFF8E1 45%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    /* max-width: 550px; */
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
}

.highlight {
    color: var(--secondary);
}

.highlight-orange {
    color: var(--primary);
}

.hero-text>p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

/* Micro-animação flutuante para dar vida ao site */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat-icon {
    font-size: 1.4rem;
    color: var(--primary);
    background-color: #FFF3E0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-info {
    text-align: left;
}

.hero-stat-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 2px;
}

.hero-stat-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0 !important;
    line-height: 1.1;
}

/* --- Quem Somos --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #FFF9F3;
    /* Fundo levemente creme conforme referência */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #FF6B00;
    /* Ícone laranja sólido conforme referência */
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.icon-box.yellow {
    background: #FFC107;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

/* --- ESTILOS DO QUADRO NOSSA HISTÓRIA (ADICIONADO) --- */
.history-card-container {
    margin-top: 80px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.history-content {
    flex: 1 1 500px;
    background-color: #1a1a1a;
    padding: 60px;
    color: white;
}

.history-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.history-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.history-stats-side {
    flex: 1 1 350px;
    background: linear-gradient(135deg, #FF9100 0%, #FFC107 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.big-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.history-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.small-stats-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.small-stat h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.small-stat span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* --- Diferenciais (Clean) --- */
.diff-section {
    background-color: #fff;
    /* Fundo branco limpo */
}

.diff-card {
    background: transparent;
    text-align: center;
    border: none;
    padding: 20px;
    box-shadow: none;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-card .icon-box {
    width: 90px;
    height: 90px;
    background-color: #FFF0E6;
    /* Tom pastel pêssego/laranja claro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    /* Centralizado horizontalmente */
    color: var(--primary);
    font-size: 2rem;
    box-shadow: none;
}

.diff-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.diff-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    max-width: 320px;
    /* Limita a largura do texto para ficar elegante */
    margin: 0 auto;
}

/* --- Associados / Testimonials (Atualizado conforme referência image_2ea6df.png) --- */

/* Stats Row (4 cards brancos) */
.assoc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.assoc-stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.assoc-stat-card h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.assoc-stat-card p {
    color: #777;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Styles */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
}

.stars {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.quote-icon-outline {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #ffe0b2;
    /* Laranja bem claro outline */
    font-size: 2.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Marcas dos Associados (Configurado para imagens) */
.brands-showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.brand-box {
    background: #fff;
    width: 130px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    /* Borda sólida sutil */
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    /* Garante que a imagem não vaze */
    padding: 10px;
    /* Padding interno para a logo não encostar na borda */
}

.brand-box:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Estilo para as IMAGENS dentro dos boxes */
.brand-box img,
.partner-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Garante que o logo inteiro apareça sem distorcer */
    filter: grayscale(0%);
    /* Alterado: Imagens coloridas por padrão */
    opacity: 1;
    /* Alterado: Opacidade total por padrão */
    transition: var(--transition);
}

.brand-box:hover img,
.partner-box:hover img {
    transform: scale(1.05);
}

/* Fallback para quando não tem imagem (ícone) */
.brand-box i,
.partner-box i {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 5px;
}

.brand-box span,
.partner-box span {
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 500;
}

/* --- Parceiros (Configurado para imagens) --- */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-box {
    background: var(--white);
    width: 160px;
    height: 100px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    padding: 15px;
    /* Padding para o logo */
    overflow: hidden;
}

.partner-box:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* --- CTA Strip --- */
.cta-strip {
    background: var(--primary);
    color: white;
    padding: 50px 0;
    text-align: center;
    border-radius: 0;
}

.cta-strip h2 {
    margin-bottom: 10px;
}

.cta-strip p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-strip .btn {
    background: white;
    color: var(--primary);
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fdfdfd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #FFF3E0;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h5 {
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- Footer --- */
footer {
    background: #111;
    color: white;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.footer-brand p {
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socials a {
    width: 35px;
    height: 35px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.socials a:hover {
    background: var(--primary);
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .hero {
        background: var(--light-bg);
        text-align: center;
    }

    /* Remove gradiente split */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: auto;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        object-fit: cover;
    }

    .hero-stats {
        justify-content: space-around;
        flex-wrap: nowrap;
        gap: 15px;
        margin-top: 30px;
        border-top: 1px solid #f0f0f0;
        padding-top: 20px;
    }

    .hero-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .hero-stat-info {
        text-align: center;
    }

    .hero-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .small-stats-row {
        flex-direction: column;
        gap: 20px;
    }
}