/* ===== PÁGINA LEO CLUBE ÔMEGA ===== */

/* Hero Section */
.leo-hero-section {
    background: linear-gradient(135deg, var(--primary-dark, #003d66), var(--primary, #0054a4));
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.leo-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

.leo-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.leo-hero-text {
    flex: 1;
}

.leo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.leo-badge i {
    color: var(--accent, #ffc72c);
}

.leo-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.leo-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.leo-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.leo-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent, #ffc72c);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção do Presidente Atual */
.current-president-section {
    padding: 80px 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.president-container {
    max-width: 1100px;
    margin: 0 auto;
}

.president-card {
    display: flex;
    gap: 50px;
    background: var(--surface);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    transition: all 0.4s ease;
}

.president-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px var(--shadow);
}

.president-photo {
    position: relative;
    flex: 0 0 320px;
    overflow: hidden;
}

.president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.president-card:hover .president-photo img {
    transform: scale(1.05);
}

.president-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.president-info {
    flex: 1;
    padding: 40px 40px 40px 0;
}

.president-name {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.president-title {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.president-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--secondary);
    width: 20px;
}

.president-description p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.president-quote {
    background: rgba(0, 84, 164, 0.05);
    border-left: 4px solid var(--secondary);
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: 25px;
    position: relative;
}

[data-theme="dark"] .president-quote {
    background: rgba(255, 255, 255, 0.05);
}

.president-quote i:first-child {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--secondary);
    font-size: 1.2rem;
    opacity: 0.6;
}

.president-quote i:last-child {
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: var(--secondary);
    font-size: 1.2rem;
    opacity: 0.6;
}

.president-quote blockquote {
    margin: 0;
    font-style: italic;
    line-height: 1.6;
    color: var(--text);
    padding: 0 25px;
}

/* ===== CAROUSEL DE ATIVIDADES (Igual ao da Home) ===== */
.leo-activities-carousel {
    padding: 80px 0;
    background-color: var(--surface);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 40px auto 50px;
    max-width: 1200px;
    border-radius: 12px;
    background-color: var(--surface);
    padding: 20px 0;
}

[data-theme="dark"] .carousel-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 20px 10px;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 420px;
    border: 1px solid var(--border);
}

.carousel-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--secondary);
}

.carousel-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.carousel-img {
    width: 100%;
    height: 100%;
    border-bottom: 2px solid var(--secondary);
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-card:hover .carousel-img {
    transform: scale(1.05);
}

.carousel-content {
    padding: 25px;
    background-color: var(--light);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.carousel-content h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.carousel-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.carousel-card:hover .carousel-content h4::after {
    width: 70px;
}

.carousel-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1rem;
}

.cause-link {
    width: fit-content;
    margin-top: auto;
    padding: 8px 18px;
    border: 2px solid var(--secondary);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cause-link i {
    transition: transform 0.3s ease;
}

.cause-link:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.cause-link:hover i {
    transform: translateX(5px);
}

/* Controles do Carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--light);
    color: var(--primary);
    border: 2px solid var(--background);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.carousel-btn:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 20px var(--shadow);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:disabled {
    background-color: var(--border);
    border-color: var(--border);
    color: var(--text-light);
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-btn:disabled:hover {
    background-color: var(--border);
    color: var(--text-light);
    transform: translateY(-50%);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Indicadores do Carousel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 10px 0;
}

.carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--border);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    background-color: var(--secondary);
    transform: scale(1.3);
    border-color: var(--background);
}

.carousel-indicator:hover {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* Seção de Governadores LEO */
.leo-governors-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--surface) 100%);
    position: relative;
}

.section-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.governors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.governor-card-leo {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 35px var(--shadow);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.governor-card-leo:nth-child(1) { animation-delay: 0.1s; }
.governor-card-leo:nth-child(2) { animation-delay: 0.2s; }
.governor-card-leo:nth-child(3) { animation-delay: 0.3s; }
.governor-card-leo:nth-child(4) { animation-delay: 0.4s; }

.governor-card-leo:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.governor-card-leo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.governor-card-leo:hover::before {
    transform: scaleX(1);
}

.governor-photo-leo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s ease;
}

.governor-card-leo:hover .governor-photo-leo {
    transform: scale(1.1);
    border-color: var(--secondary);
}

.governor-photo-leo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.governor-card-leo:hover .governor-photo-leo img {
    transform: scale(1.1);
}

.governor-name-leo {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.governor-title-leo {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 15px auto;
}

.governor-period-leo {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    background: rgba(0, 84, 164, 0.05);
    padding: 6px 16px;
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.governor-period-leo i {
    color: var(--secondary);
}

.governor-achievement-leo {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 2px solid var(--border);
    margin-top: 15px;
    font-style: italic;
}

.governor-achievement-leo i {
    color: var(--secondary);
    margin-right: 8px;
}

.governor-badge-leo {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.historical-note {
    max-width: 1000px;
    margin: 60px auto 0;
    background: var(--surface);
    border-radius: 15px;
    padding: 25px 30px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 10px 25px var(--shadow);
}

.note-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.note-content i {
    color: var(--secondary);
    font-size: 2rem;
    flex-shrink: 0;
}

.note-content p {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Timeline de Presidentes LEO */
.leo-timeline-section {
    padding: 80px 0;
    background-color: var(--light);
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: rgba(0, 84, 164, 0.1);
    transform: translateX(-50%);
    border-radius: 2px;
    overflow: hidden;
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--secondary), var(--accent));
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 50%;
    padding-left: 20px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 50%;
    padding-right: 20px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.marker-dot {
    width: 24px;
    height: 24px;
    background-color: var(--light);
    border: 4px solid var(--border);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.animated .marker-dot {
    border-color: var(--secondary);
    box-shadow: 0 0 0 8px rgba(255, 199, 44, 0.1);
    animation: pulseDot 2s infinite;
}

.marker-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.timeline-item.animated .marker-dot::after {
    transform: translate(-50%, -50%) scale(1);
}

.marker-year {
    margin-top: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px var(--shadow);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.timeline-item.animated .marker-year {
    transform: translateY(0);
    opacity: 1;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(255, 199, 44, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(255, 199, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 199, 44, 0); }
}

.timeline-card {
    background-color: var(--surface);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px var(--shadow);
    width: 100%;
    max-width: 450px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 20px;
    align-items: center;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: 30px;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 20px;
    height: 20px;
    background-color: var(--surface);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-card::before {
    right: -10px;
    border-right: 2px solid var(--secondary);
    border-top: 2px solid var(--secondary);
}

.timeline-item:nth-child(even) .timeline-card::before {
    left: -10px;
    border-left: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

.president-photo-timeline {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
}

.president-photo-timeline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.president-info-timeline {
    flex: 1;
}

.president-name-timeline {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.president-period-timeline {
    display: inline-block;
    background: rgba(0, 84, 164, 0.1);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.president-quote-timeline {
    color: var(--text);
    font-style: italic;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    padding-left: 15px;
    border-left: 3px solid var(--secondary);
}

/* Seção Como Participar */
.leo-join-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, #003d66));
    color: white;
    position: relative;
    overflow: hidden;
}

.leo-join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.join-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.join-info {
    flex: 1;
}

.join-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.join-info > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.join-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

.join-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: white;
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.join-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.join-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.join-image:hover img {
    transform: scale(1.05);
}

/* FAQ Section */
.leo-faq-section {
    padding: 80px 0;
    background-color: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 15px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--surface);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 25px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 84, 164, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1rem;
    color: var(--secondary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 20px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text);
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .governors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .carousel-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .carousel-wrapper {
        padding: 0 55px;
    }
}

@media (max-width: 992px) {
    .leo-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .leo-hero-buttons {
        justify-content: center;
    }

    .leo-hero-stats {
        justify-content: center;
    }

    .president-card {
        flex-direction: column;
    }

    .president-photo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        border-radius: 30px 30px 0 0;
    }

    .president-info {
        padding: 30px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 20px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-card {
        max-width: 100%;
    }

    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        margin: 0;
    }

    .timeline-card::before {
        left: -10px !important;
        right: auto !important;
        border-left: 2px solid var(--secondary) !important;
        border-bottom: 2px solid var(--secondary) !important;
        border-right: none !important;
        border-top: none !important;
    }

    .join-content {
        flex-direction: column;
        text-align: center;
    }

    .join-features {
        justify-content: center;
    }

    .join-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .leo-hero-section {
        padding: 100px 0 60px;
    }

    .leo-hero-text h1 {
        font-size: 2.2rem;
    }

    .leo-hero-text p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .president-name {
        font-size: 1.6rem;
    }

    .governors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }

    .governor-photo-leo {
        width: 130px;
        height: 130px;
    }

    .join-features {
        grid-template-columns: 1fr;
    }
    
    .carousel-card {
        flex: 0 0 calc(100% - 10px);
        min-height: 420px;
    }
    
    .carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .carousel-img-container {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .leo-hero-text h1 {
        font-size: 1.8rem;
    }

    .stat-card {
        padding: 20px 15px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .president-quote blockquote {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .timeline-card {
        flex-direction: column;
        text-align: center;
    }

    .president-quote-timeline {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--secondary);
        padding-top: 10px;
        margin-top: 10px;
    }

    .note-content {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-card {
        min-height: 400px;
    }
    
    .carousel-img-container {
        height: 180px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .carousel-indicators {
        gap: 10px;
        margin-top: 25px;
    }
    
    .carousel-indicator {
        width: 12px;
        height: 12px;
    }
}