﻿@charset "UTF-8";

/* =====================================================
   CLUBE
===================================================== */
.clube-section {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.clube-section h2 {
    margin: 40px 0 15px;
    color: var(--green-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.clube-section p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.clube-valores ul {
    margin-top: 15px;
    padding-left: 20px;
    list-style: none;
}

.clube-valores li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    color: var(--text-gray);
}

.clube-valores li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

.clube-missao {
    background: linear-gradient(to right, #000, rgba(10, 92, 58, 0.1), #000);
    padding: 40px 20px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.clube-missao h3 {
    color: var(--green-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.clube-missao p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsividade */
@media (max-width: 768px) {
    .clube-section {
        padding: 15px;
    }

    .clube-missao {
        padding: 30px 15px;
    }

    .clube-missao h3 {
        font-size: 1.3rem;
    }
}
