/* =========================================
   ROTARY LINDÓIA - DESIGN SYSTEM & STYLES
   ========================================= */

:root {
    /* Rotary Official Colors */
    --rotary-blue: #17458f;
    --rotary-gold: #f7a81b;
    --rotary-light-blue: #00a2e0;

    /* Neutral Colors */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Fraunces', Georgia, serif;

    /* Spacing Scale */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 5rem;

    /* Radius */
    --radius-sm: 10px;
    --radius-lg: 18px;
    --border-radius: 12px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-premium: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows (tinted with Rotary navy for a more designed feel) */
    --shadow-sm: 0 4px 14px rgba(16, 42, 67, 0.06);
    --shadow-md: 0 12px 30px rgba(16, 42, 67, 0.09);
    --shadow-lg: 0 22px 50px rgba(16, 42, 67, 0.13);
    --box-shadow: var(--shadow-md);
    --box-shadow-premium: var(--shadow-lg);
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--rotary-blue), var(--rotary-light-blue));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rotary-gold);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Compensa o header fixo ao navegar por âncoras */
section[id],
footer[id] {
    scroll-margin-top: 110px;
}

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

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--bg-light);
    background-image: radial-gradient(rgba(23, 69, 143, 0.045) 1px, transparent 1px);
    background-size: 22px 22px;
}

.box-shadow {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
}

.hidden {
    display: none !important;
}

/* Conteúdo previsto para uma próxima etapa: basta remover esta classe para reexibi-lo. */
.is-hidden-for-future {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: var(--transition-premium);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background: linear-gradient(135deg, var(--rotary-gold), #e09612);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 168, 27, 0.45);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--rotary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 12px 28px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text {
    color: var(--rotary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    color: var(--rotary-light-blue);
    gap: 10px;
}

/* Titles */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--rotary-blue);
    margin-bottom: 1rem;
}

/* Fonte de display nos títulos principais para dar autoridade e contraste */
h1,
h2 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

h3,
h4 {
    text-wrap: balance;
}

h2 {
    font-size: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Selo de engrenagem — assinatura Rotary acima de cada título */
.section-title h2::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 0.9rem auto;
    background-image: url('../assets/images/logo-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--rotary-gold), rgba(247, 168, 27, 0.25));
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.tag {
    background-color: var(--rotary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Marca-d'água gigante e suave ao fundo de seções-chave */
.about-section,
.projects-section,
.join-us-section,
.satellite-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-section::before,
.projects-section::before,
.join-us-section::before,
.satellite-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url('../assets/images/logo-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

.projects-section::before,
.satellite-section::before {
    right: auto;
    left: -10%;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

header.is-scrolled {
    height: 88px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header.is-scrolled .logo-img {
    height: 66px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 76px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: var(--transition-premium);
}

.logo-img:hover {
    transform: scale(1.03);
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--rotary-blue);
    margin: 0;
}

.logo span {
    color: var(--rotary-gold);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--rotary-blue);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rotary-gold);
    transition: var(--transition-premium);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--rotary-blue);
}

/* Dropdown Menu Styles (Desktop) */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background-color: var(--white);
    min-width: 210px;
    box-shadow: var(--box-shadow-premium);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    transition: var(--transition-premium);
    z-index: 100;
}

/* Ponte invisível para evitar fechamento do menu ao passar o mouse */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: var(--rotary-blue);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background-color: rgba(23, 69, 143, 0.06);
    color: var(--rotary-blue);
    padding-left: 24px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--rotary-blue);
    cursor: pointer;
}

/* =========================================
   HERO / HOME
   ========================================= */
.hero {
    margin-top: 80px;
    position: relative;
    background: #fff;
}

.hero-slider {
    overflow: hidden;
}

.slide {
    min-height: 820px;
    height: auto;
    padding: 100px 0 140px 0;
    background-color: #0b3773;
    background-image:
        radial-gradient(circle at 83% 24%, rgba(247, 168, 27, 0.22) 0 4px, transparent 5px),
        radial-gradient(circle at 72% 73%, rgba(255, 255, 255, 0.16) 0 3px, transparent 4px),
        radial-gradient(circle at 94% 66%, rgba(0, 162, 224, 0.3) 0 5px, transparent 6px),
        linear-gradient(118deg, #062756 0%, #17458f 56%, #0870a9 100%);
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 620px;
    height: 620px;
    top: 50%;
    right: -110px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    transform: translateY(-52%);
    box-shadow:
        0 0 0 82px rgba(255, 255, 255, 0.045),
        0 0 0 164px rgba(255, 255, 255, 0.025);
}

.slide::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 1px;
    right: 70px;
    top: 36%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), rgba(247, 168, 27, 0.7));
    transform: rotate(-32deg);
    transform-origin: right center;
}

.slide-content {
    color: var(--white);
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.slide-content h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 3.8vw, 3rem);
    line-height: 1.18;
    margin-bottom: 1.5rem;
    letter-spacing: -0.035em;
    text-shadow: none;
    max-width: 820px;
}

.slide-content p {
    font-size: 1.08rem;
    margin-bottom: 1.35rem;
    line-height: 1.6;
    text-shadow: none;
}

.hero-text-side>p {
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 36px;
}

/* Editorial manifesto card */
.manifesto-card {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 36px;
    background: linear-gradient(135deg, rgba(23, 69, 143, 0.28) 0%, rgba(3, 27, 65, 0.46) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--rotary-gold);
    padding: 26px 30px;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(3, 25, 58, 0.2);
    color: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
}

.manifesto-card::before {
    display: none;
}

.manifesto-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 54px rgba(3, 25, 58, 0.27);
}

.manifesto-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.manifesto-quote-icon {
    font-size: 1.8rem;
    color: var(--rotary-gold);
    text-shadow: 0 2px 10px rgba(247, 168, 27, 0.3);
}

.manifesto-card h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.manifesto-card p {
    font-size: 0.94rem;
    line-height: 1.62;
    margin-bottom: 0;
    text-shadow: none;
    opacity: 1;
    color: rgba(255, 255, 255, 0.84);
}

.manifesto-card .manifesto-highlight {
    color: var(--rotary-gold);
    border-left: 3px solid var(--rotary-gold);
    padding-left: 20px;
    margin-top: 0;
    opacity: 1;
    font-size: 0.94rem;
    line-height: 1.65;
}

.hero-model-side {
    min-width: 0;
    position: relative;
}

.hero-model-stage {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
    transform: translate3d(0, var(--model-scroll-y, 0), 0);
    animation: hero-model-entrance 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
    will-change: transform;
}

.hero-model-stage::after {
    content: '';
    position: absolute;
    z-index: 0;
    width: min(29vw, 350px);
    height: 32px;
    left: 50%;
    bottom: 72px;
    border-radius: 50%;
    background: rgba(2, 18, 45, 0.34);
    filter: blur(9px);
    transform: translateX(-50%);
    pointer-events: none;
    animation: hero-shadow-float 4s ease-in-out infinite;
}

.hero-model-halo,
.hero-model-halo::before,
.hero-model-halo::after {
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-model-halo {
    width: min(39vw, 470px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(247, 168, 27, 0.17) 0%, rgba(0, 162, 224, 0.08) 44%, transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.03), 0 0 90px rgba(0, 162, 224, 0.15);
}

.hero-model-halo::before,
.hero-model-halo::after {
    content: '';
    width: 78%;
    aspect-ratio: 1;
    border: 1px dashed rgba(247, 168, 27, 0.28);
}

.hero-model-halo::after {
    width: 42%;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.14);
}

.hero-model-rotator {
    width: min(100%, 550px);
    aspect-ratio: 1;
    z-index: 1;
    animation: hero-model-float 4s ease-in-out infinite;
}

#rotary-emblem-3d {
    width: 100%;
    height: 100%;
    background: transparent;
    --poster-color: transparent;
    cursor: grab;
    touch-action: pan-y;
}

#rotary-emblem-3d:active {
    cursor: grabbing;
}

@keyframes hero-model-entrance {
    from {
        opacity: 0;
        transform: translate3d(26px, 34px, 0) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translate3d(0, var(--model-scroll-y, 0), 0) scale(1);
    }
}

@keyframes hero-model-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes hero-shadow-float {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.34;
        filter: blur(9px);
    }
    50% {
        transform: translateX(-50%) scale(0.85);
        opacity: 0.20;
        filter: blur(13px);
    }
}

.quick-highlights {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(23, 69, 143, 0.1);
    padding: 25px 15px;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(7, 37, 79, 0.16);
    transform: translateY(-50%);
    position: relative;
    z-index: 10;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: var(--rotary-blue);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1;
    padding: 12px 5px;
    border-radius: 12px;
}

.highlight-item:hover {
    transform: translateY(-5px);
    color: var(--rotary-gold);
    background: rgba(255, 255, 255, 0.4);
}

.highlight-item i {
    font-size: 1.8rem;
    transition: transform 0.4s ease;
}

.highlight-item:hover i {
    transform: scale(1.12);
}

.highlight-item span {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

/* =========================================
   FORMULÁRIO JUNTE-SE
   ========================================= */
.join-us-section {
    padding-top: 50px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.join-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
}

.join-form .form-group-full,
.join-form .join-form-submit {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--rotary-light-blue);
    box-shadow: 0 0 0 3px rgba(0, 162, 224, 0.1);
}

/* =========================================
   SOBRE NÓS
   ========================================= */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-content-block+.about-content-block {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(23, 69, 143, 0.14);
}

.about-rotary-block .about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-rotary-block .about-text h3 {
    margin: 0;
}

.about-rotary-block .about-rotary-copy {
    max-width: 860px;
}

.about-rotary-copy p:last-child {
    margin-bottom: 0;
}

.about-rotary-block .causes-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 3rem;
    margin: 2rem 0 0;
}

.about-rotary-block .causes-list li {
    margin-bottom: 0;
}

.about-image {
    max-width: 480px;
    width: 100%;
    justify-self: end;
}

.about-club-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.about-club-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-club-heading h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.15;
    color: var(--rotary-blue);
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-club-heading h3::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 0.9rem auto;
    background-image: url('../assets/images/logo-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

.about-club-heading h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--rotary-gold), rgba(247, 168, 27, 0.25));
}

.about-club-heading .about-connection {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 670px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

/* Texto do conteúdo institucional */
.about-text p {
    color: var(--text-light);
    margin-bottom: .5rem;
}

.rounded-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 40px;
    width: max-content;
    max-width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn.active {
    background: var(--rotary-gold);
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(247, 168, 27, 0.3);
}

.tab-btn:hover:not(.active) {
    color: var(--rotary-blue);
    background: rgba(0, 0, 0, 0.04);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
}

.modern-table th,
.modern-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.modern-table th {
    background-color: var(--rotary-blue);
    color: var(--white);
    font-weight: 600;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--rotary-light-blue), rgba(0, 162, 224, 0.08));
    top: -6rem;
    bottom: 0;
    left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: var(--rotary-gold);
    border-radius: 50%;
    border: 3px solid var(--white);
}

/* =========================================
   PROJETOS
   ========================================= */
.projects-section {
    padding: 100px 0;
}

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

.project-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 3px solid transparent;
    background: var(--white);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 40px rgba(23, 69, 143, 0.12), 0 0 20px rgba(247, 168, 27, 0.15);
    border-color: rgba(247, 168, 27, 0.4);
    border-top-color: var(--rotary-gold);
    z-index: 2;
    position: relative;
}

.project-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.08);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-list-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    grid-column: 1 / -1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.project-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rotary-blue), var(--rotary-light-blue));
}

.project-list-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--rotary-blue);
    font-weight: 700;
}

.project-list-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--rotary-gold);
    border-radius: 3px;
}

.clean-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.clean-list strong {
    color: var(--rotary-blue);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.clean-list .btn-link-inline {
    display: inline-flex;
    align-items: center;
    margin-left: 0;
    margin-top: 15px;
    font-weight: 600;
    color: var(--rotary-light-blue);
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
}

.clean-list .btn-link-inline::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.clean-list .btn-link-inline:hover {
    color: var(--rotary-blue);
}

.clean-list .btn-link-inline:hover::after {
    transform: translateX(4px);
}

.clean-list li {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 24px 24px 24px 75px;
    background: var(--bg-light);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
}

.clean-list li:hover {
    background: var(--white);
    border-color: rgba(247, 168, 27, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(247, 168, 27, 0.08);
    transform: translateY(-5px);
}

.clean-list li:hover strong {
    color: var(--rotary-gold);
}

.clean-list li:hover .btn-link-inline {
    color: var(--rotary-blue);
}

.clean-list li:hover .btn-link-inline::after {
    transform: translateX(4px);
}

.clean-list li i {
    position: absolute;
    left: 20px;
    top: 24px;
    font-size: 1.1rem;
    color: var(--rotary-blue) !important;
    background: rgba(23, 69, 143, 0.08);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.clean-list li:hover i {
    background: var(--rotary-blue);
    color: var(--white) !important;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 10px rgba(23, 69, 143, 0.2);
}

.text-primary {
    color: var(--rotary-blue);
}

/* =========================================
   CLUBE SATÉLITE
   ========================================= */
.satellite-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #0c5699 0%, #002d54 100%);
    color: var(--white);
    position: relative;
}

.satellite-section h2 {
    color: var(--white);
}

.satellite-section p {
    color: rgba(255, 255, 255, 0.9);
}

.satellite-section p.lead {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.satelite-intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-box {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid var(--rotary-gold);
}

.feature-box h4 {
    margin-top: 15px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--rotary-light-blue);
}

/* =========================================
   EVENTOS E NOTÍCIAS
   ========================================= */
.news-events-section {
    padding: 100px 0;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.event-item {
    display: flex;
    margin-bottom: 20px;
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(10px);
}

.event-date {
    background-color: var(--rotary-blue);
    color: var(--white);
    padding: 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-details {
    padding: 20px;
}

.event-details h4 {
    margin-bottom: 5px;
}

.news-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.news-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-content h4 {
    margin: 5px 0;
    font-size: 1.1rem;
}

/* =========================================
   DEPOIMENTOS & PARCEIROS
   ========================================= */
.testimonials-section,
.partners-section {
    padding: 80px 0;
}

.testimonials-section {
    background-color: var(--rotary-blue);
}

.testimonials-section h2,
.testimonials-section .author strong {
    color: var(--rotary-gold);
}

.testimonials-section p {
    color: var(--white);
}

.testimonials-section span {
    color: var(--white);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.author strong {
    display: block;
    color: var(--rotary-blue);
    font-size: 1.1rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.logo-box {
    width: 150px;
    height: 80px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: var(--border-radius);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--rotary-blue);
    color: var(--white);
    padding: 80px 0 20px;
    border-top: 4px solid var(--rotary-gold);
}

.footer h3 {
    color: var(--white);
    border-bottom: 2px solid var(--rotary-gold);
    padding-bottom: 10px;
    display: inline-block;
}

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

.contact-info {
    list-style: none;
    margin-top: 20px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.contact-info i {
    color: var(--rotary-gold);
    margin-top: 5px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--rotary-gold);
}

.links-col ul {
    list-style: none;
}

.links-col ul li {
    margin-bottom: 10px;
}

.links-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.links-col ul li a:hover {
    opacity: 1;
    color: var(--rotary-gold);
    padding-left: 5px;
}

.dark-form input,
.dark-form textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-bottom: 15px;
}

.dark-form input::placeholder,
.dark-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =========================================
   DIRETORIA & PRESIDENTES
   ========================================= */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.director-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    background: var(--white);
    border-left: 4px solid var(--rotary-blue);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.director-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(23, 69, 143, 0.08);
    border-color: var(--rotary-gold);
}

.director-avatar {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: rgba(23, 69, 143, 0.06);
    font-size: 1.6rem;
    color: var(--rotary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.director-card:hover .director-avatar {
    background: var(--rotary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.director-info h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--rotary-gold);
    font-weight: 700;
}

.director-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rotary-blue);
    margin-bottom: 4px !important;
}

.director-period {
    font-size: 0.85rem;
    color: var(--rotary-gold);
    font-style: normal;
    font-weight: 700;
}

.timeline-year {
    font-weight: 700;
    color: var(--rotary-gold);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.timeline-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}



/* =========================================
   CLUBE SATÉLITE PREMIUM
   ========================================= */
.sat-directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.sat-director-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--rotary-gold);
    transition: var(--transition);
}

.sat-director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.sat-director-avatar {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: rgba(247, 168, 27, 0.12);
    font-size: 1.6rem;
    color: var(--rotary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sat-director-info h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
    color: var(--rotary-blue);
}

.sat-director-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px !important;
}

.sat-director-period {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.sat-timeline {
    position: relative;
    padding-left: 30px;
}

.sat-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    top: 0;
    bottom: 0;
    left: 9px;
}

.sat-timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.sat-timeline-dot {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--rotary-gold);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.sat-timeline-content {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.sat-timeline-year {
    font-weight: 700;
    color: var(--rotary-gold);
    font-size: 0.85rem;
}

.sat-timeline-content h4 {
    margin: 5px 0 0 0;
    font-size: 1.05rem;
}

.sat-project-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.sat-project-content {
    padding: 20px;
    text-align: left;
}

/* =========================================
   AGENDA DE EVENTOS & GALERIA
   ========================================= */
.events-agenda {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agenda-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    gap: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.agenda-item:hover {
    transform: translateX(8px);
}

.agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--rotary-blue);
    color: var(--white);
    min-width: 70px;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

.agenda-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.agenda-day {
    font-size: 0.9rem;
    font-weight: 700;
}

.agenda-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.agenda-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.events-gallery-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

.events-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.events-gallery-wrapper:hover .events-gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: var(--white);
    font-weight: 600;
}

/* =========================================
   NOTÍCIAS & DEPOIMENTOS
   ========================================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.news-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-premium);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-premium);
    border-color: rgba(247, 168, 27, 0.2);
}

.news-card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img-wrapper img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-tag {
    background: var(--rotary-blue);
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    width: max-content;
}

.news-card-content h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--rotary-blue);
}

.news-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: auto;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.08), transparent);
    margin: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-premium);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-premium);
    border-color: rgba(247, 168, 27, 0.2);
}

.testimonial-quote-icon {
    font-size: 3.5rem;
    color: var(--rotary-gold);
    opacity: 0.08;
    position: absolute;
    top: 15px;
    right: 20px;
    pointer-events: none;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rotary-blue), var(--rotary-light-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(23, 69, 143, 0.2);
}

.author-avatar.gold {
    background: linear-gradient(135deg, var(--rotary-gold), #e09612);
    box-shadow: 0 4px 10px rgba(247, 168, 27, 0.2);
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-meta strong {
    font-size: 0.95rem;
    color: var(--rotary-blue);
}

.author-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* =========================================
   CHECKBOX LGPD
   ========================================= */
.form-group-checkbox {
    margin: 15px 0;
    text-align: left;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.checkbox-label input {
    margin-top: 3px;
}

/* =========================================
   PARCEIROS LOGOS GRID
   ========================================= */
.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.partner-logo {
    background: var(--white);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #999;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.partner-logo:hover span {
    color: var(--rotary-blue);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition);
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* =========================================
   MAP WRAPPER & GLASS HEADER
   ========================================= */
.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    line-height: 0;
}

.map-wrapper iframe {
    display: block;
}

header {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 992px) {
    .row {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        justify-self: center;
        max-width: 400px;
    }

    /* Diretoria: 2x2 no tablet em vez de 3+1 */
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .slide {
        height: auto;
        min-height: 650px;
        padding: 76px 0 60px 0;
    }

    .manifesto-card {
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
    }

    .manifesto-card .manifesto-highlight {
        text-align: left;
    }

    .hero-model-stage {
        min-height: 430px;
        margin-top: 24px;
    }

    .hero-model-halo {
        width: min(66vw, 430px);
    }

    #rotary-emblem-3d {
        height: 100%;
    }
}

@media (max-width: 1064px) {

    /* Navegação colapsa para o menu hambúrguer */
    .nav-links {
        display: none;
        position: absolute;
        top: 96px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    header.is-scrolled .nav-links {
        top: 88px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .cta-header {
        display: none;
    }

    /* Dropdown vira acordeão no menu mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown::after {
        display: none;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-bottom: 4px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin-top: 10px;
        display: none;
        width: 100%;
        min-width: unset;
        z-index: 1;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 10px 0 10px 20px;
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        padding-left: 24px;
        background-color: transparent;
    }
}

@media (max-width: 768px) {
    header {
        height: 82px;
    }

    header.is-scrolled {
        height: 76px;
    }

    .logo-img {
        height: 60px;
    }

    header.is-scrolled .logo-img {
        height: 60px;
    }

    .nav-links,
    header.is-scrolled .nav-links {
        top: 82px;
    }

    header.is-scrolled .nav-links {
        top: 76px;
    }

    .join-form {
        grid-template-columns: 1fr;
    }

    .manifesto-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-model-stage {
        min-height: 360px;
        margin-top: 24px;
    }

    .hero-model-halo {
        width: min(78vw, 360px);
    }

    #rotary-emblem-3d {
        height: 100%;
    }

    .about-content-block+.about-content-block {
        margin-top: 3.5rem;
        padding-top: 3.5rem;
    }

    .about-rotary-block .causes-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .about-club-heading h3 {
        font-size: 2rem;
    }

    .quick-highlights {
        flex-wrap: wrap;
        transform: translateY(0);
        box-shadow: none;
        padding: 20px 0;
    }

    .highlight-item {
        flex-basis: 33.33%;
        margin-bottom: 20px;
    }

    /* Espaçamento vertical das seções reduzido no mobile */
    .about-section,
    .projects-section,
    .join-us-section,
    .satellite-section,
    .news-events-section,
    .events-section,
    .news-testimonials-section,
    .how-to-participate-section {
        padding: 60px 0;
    }

    .partners-section {
        padding: 50px 0;
    }

    /* Tipografia de títulos */
    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Containers de formulário/abas com padding menor */
    .form-container {
        padding: 30px 24px;
    }

    .action-tabs-container {
        padding: 30px 20px;
    }

    /* Modais */
    .modal-box {
        padding: 32px 24px;
    }

    .modal-header h2 {
        font-size: 1.75rem;
        padding-right: 44px;
    }

    .modal-body p,
    .modal-highlight-p {
        font-size: 1rem;
    }

    .modal-highlight-p {
        padding: 16px 18px;
    }

    .close-modal-btn {
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    header {
        height: 76px;
    }

    header.is-scrolled {
        height: 70px;
    }

    .logo-img {
        height: 48px;
    }

    header.is-scrolled .logo-img {
        height: 48px;
    }

    .nav-links {
        top: 76px;
    }

    header.is-scrolled .nav-links {
        top: 70px;
    }

    /* Evita títulos grandes estourando em telas estreitas */
    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.05rem;
    }

    .slide {
        padding-top: 58px;
        padding-bottom: 50px;
        min-height: 500px;
    }

    .manifesto-card {
        padding: 18px;
    }

    .manifesto-card p {
        font-size: 0.9rem;
    }

    .hero-model-stage {
        min-height: 300px;
        margin-top: 20px;
    }

    #rotary-emblem-3d {
        height: 100%;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    /* Destaques rápidos: 2 por linha para não espremer ícones/labels */
    .highlight-item {
        flex-basis: 50%;
    }

    /* Botões de ação empilhados para não estourar a largura */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .modal-box {
        padding: 28px 18px;
    }

    /* Diretoria empilhada no celular */
    .directors-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-model-stage {
        animation: none;
        transform: none;
    }
}

/* =========================================
   ADDITIONAL STYLES - ROTARY LINDÓIA RESTRUCTURE
   ========================================= */

/* Aba do Hero Formulário */
.action-tabs-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    margin: 30px auto 0 auto;
    max-width: 600px;
    /* Constrain width to look compact and centered */
}

.action-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 40px;
    width: max-content;
    max-width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.action-tab-btn {
    background: none;
    border: none;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-tab-btn.active {
    background: var(--rotary-blue);
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(23, 69, 143, 0.3);
}

.action-tab-btn:hover:not(.active) {
    color: var(--rotary-blue);
    background: rgba(0, 0, 0, 0.04);
}

.action-tab-content {
    display: none;
}

.action-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

/* Link de encaminhamento "Descubra nossos destaques" um pouco maior */
.highlights-nav-link p {
    font-size: 1.2rem;
}

.highlights-nav-link .btn-text {
    font-size: 1.2rem;
}

/* Duas fotos lado a lado como capa (Programa dos Lacres) */
.modal-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.modal-image-stack .modal-img:last-child {
    object-position: center 82%;
}

/* Manifesto da seção "Como Participar" em linhas distintas */
.participate-manifesto {
    line-height: 1.9;
}

/* Inline Link Button in List Card */
.btn-link-inline {
    background: none;
    border: none;
    color: var(--rotary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    text-decoration: underline;
    transition: var(--transition);
    display: inline-block;
}

.btn-link-inline:hover {
    color: var(--rotary-gold);
}

/* Image Placeholders (With Premium Gradients) */
.image-placeholder-square {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--rotary-blue), var(--rotary-light-blue));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 12px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.image-placeholder-square::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
    pointer-events: none;
}

.image-placeholder-square i {
    font-size: 3rem;
    color: var(--rotary-gold);
}

.image-placeholder-square span {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0.9;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--rotary-blue), var(--rotary-light-blue));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 15px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
    pointer-events: none;
}

.image-placeholder i {
    font-size: 3.5rem;
    color: var(--rotary-gold);
}

.image-placeholder span {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Dialog Modal */
dialog.project-modal {
    border: none;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
    max-width: 900px;
    width: 92%;
    max-height: 90vh;
    padding: 0;
    background: var(--white);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

dialog.project-modal::backdrop {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
}

dialog.project-modal[open] {
    animation: modalFadeIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -46%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-box {
    padding: 48px;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
}

.close-modal-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(241, 243, 245, 0.8);
    backdrop-filter: blur(4px);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.close-modal-btn:hover {
    background: var(--rotary-blue);
    color: var(--white);
    transform: rotate(90deg) scale(1.05);
}

.modal-header {
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
}

.modal-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--rotary-blue);
    margin-bottom: 0;
    padding-right: 50px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.modal-text-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-text-content .mt-3 {
    margin-top: 0;
}

.modal-highlight-p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, rgba(23, 69, 143, 0.04), rgba(247, 168, 27, 0.04));
    border-left: 4px solid var(--rotary-blue);
    padding: 20px 24px;
    border-radius: 4px 16px 16px 4px;
    margin-bottom: 5px;
}

.modal-body p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.modal-list {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.modal-list li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.modal-list li:hover {
    background: #f1f5f9;
    border-color: var(--rotary-light-blue);
    transform: translateY(-1px);
}

.modal-list li i {
    color: var(--rotary-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.modal-placeholder-box {
    width: 100%;
    height: 180px;
    background-color: #f1f3f5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.modal-placeholder-box i {
    font-size: 2rem;
    color: var(--rotary-light-blue);
}

.quantities-alert {
    background: linear-gradient(135deg, rgba(247, 168, 27, 0.08), rgba(247, 168, 27, 0.02));
    border: 1px solid rgba(247, 168, 27, 0.2);
    border-left: 4px solid var(--rotary-gold);
    padding: 18px 24px;
    border-radius: 4px 16px 16px 4px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(247, 168, 27, 0.03);
}

.quantities-alert i {
    color: var(--rotary-gold);
    font-size: 1.4rem;
}

.modal-image-container {
    order: -1;
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-image-container.modal-image-uncropped {
    height: auto;
}

.modal-image-uncropped .modal-img {
    height: auto;
    object-fit: contain;
    display: block;
}

.modal-image-container:hover .modal-img {
    transform: scale(1.04);
}

@media (max-width: 600px) {
    .modal-image-container {
        height: 200px;
    }
}

/* Clube Satélite */
.tag-satelite {
    background-color: var(--rotary-gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.satelite-intro-text {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.satelite-motto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 3.5rem auto 0 auto;
}

.motto-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.motto-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--rotary-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.motto-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rotary-gold), #e09612);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 15px rgba(247, 168, 27, 0.3);
}

.motto-card h3 {
    color: var(--white) !important;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.motto-card p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.satellite-tabs-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.satelite-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px;
    border-radius: 40px;
    width: max-content;
    max-width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sat-tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sat-tab-btn.active {
    background: var(--rotary-gold);
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(247, 168, 27, 0.3);
}

.sat-tab-btn:hover:not(.active) {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.sat-tab-content {
    display: none;
}

.sat-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.sat-info-card {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 8px;
    border-bottom: 4px solid var(--rotary-gold);
    box-shadow: var(--box-shadow);
}

.sat-info-card h3 {
    color: var(--rotary-blue) !important;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.sat-info-card p {
    color: var(--text-light) !important;
    margin-bottom: 15px;
}

.placeholder-text-sat {
    color: var(--rotary-gold) !important;
    font-weight: 600;
    font-style: italic;
}

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

.sat-project-box {
    background: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid var(--rotary-gold);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
}

.sat-project-box h4 {
    color: var(--rotary-blue);
    font-size: 1.2rem;
    margin: 15px 0 10px 0;
}

.sat-project-box p {
    color: var(--text-light) !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sat-proj-icon {
    font-size: 2.5rem;
    color: var(--rotary-gold);
}

.placeholder-span {
    color: var(--rotary-gold);
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 600;
    display: block;
    margin-top: auto;
}

.satellite-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Eventos & Agenda */
.events-section {
    padding: 100px 0;
}

.events-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.events-info p.lead-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.agenda-placeholder {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    border-left: 5px solid var(--rotary-blue);
}

.agenda-placeholder i {
    font-size: 2.2rem;
    color: var(--rotary-blue);
    margin-bottom: 15px;
}

.agenda-placeholder h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.placeholder-text-inline {
    color: var(--rotary-gold);
    font-weight: 600;
    font-style: italic;
}

/* Seções de Notícias & Depoimentos */
.news-testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.block-intro {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.opportunity-card {
    background: #f8f9fa;
    border: 1px dashed var(--border-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
    font-style: italic;
}

.icon-news {
    font-size: 2rem;
    color: var(--rotary-blue);
    margin-bottom: 10px;
    display: block;
}

.testimonial-slider {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    border-left: 5px solid var(--rotary-gold);
}

.quote-testimonial-icon {
    font-size: 1.8rem;
    color: var(--rotary-gold);
    margin-bottom: 15px;
    opacity: 0.3;
    display: block;
}

/* Como Participar */
.how-to-participate-section {
    padding: 100px 0;
}

.form-title {
    margin-bottom: 25px;
}

.placeholder-info-text {
    font-style: italic;
    font-weight: 600;
}

/* Patrocinadores Box */
.partners-images-box {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    border: 1px dashed var(--border-color);
    color: var(--rotary-gold);
    font-weight: 600;
    font-style: italic;
}

.partners-box-icon {
    font-size: 3rem;
    color: var(--rotary-blue);
    margin-bottom: 15px;
    display: block;
}

/* Mapa e Footer */
.footer-map-container {
    width: 100%;
    margin-bottom: 40px;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    height: 250px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--rotary-gold);
    font-weight: 600;
    font-style: italic;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--white);
}

.footer-slogan {
    font-style: italic;
    opacity: 0.8;
    margin-top: 10px;
}

.footer-link {
    color: var(--rotary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    text-decoration: underline;
}

.form-intro-footer {
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.lema-box {
    background: rgba(247, 168, 27, 0.04);
    border: 1px solid rgba(247, 168, 27, 0.12);
    border-left: 5px solid var(--rotary-gold);
    padding: 30px;
    border-radius: 0 16px 16px 0;
    position: relative;
    overflow: hidden;
}

.lema-icon {
    position: absolute;
    right: 20px;
    bottom: -15px;
    font-size: 6.5rem;
    color: var(--rotary-gold);
    opacity: 0.08;
    margin: 0;
    display: block;
    pointer-events: none;
}

.lema-text {
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 700;
    color: var(--rotary-blue);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.lema-box span {
    font-size: 0.85rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.causes-list {
    list-style: none;
    margin-top: 20px;
}

.causes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.causes-list li i {
    color: var(--rotary-blue);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.image-caption {
    text-align: center;
    font-weight: 600;
    color: var(--rotary-gold);
    margin-top: 10px;
    font-style: italic;
}

.tab-intro-card {
    position: relative;
    z-index: 1;
    padding: 30px 40px;
    background: var(--white);
    border-left: 4px solid var(--rotary-gold);
    border-radius: 12px;
    color: var(--text-light);
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    font-size: 1rem;
    line-height: 1.7;
}

/* Linha do tempo da galeria de presidentes */
.presidents-timeline {
    position: relative;
    max-width: 1020px;
    margin: 4rem auto 0;
}

.presidents-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(23, 69, 143, 0.12), var(--rotary-light-blue), rgba(23, 69, 143, 0.12));
    transform: translateX(-50%);
}

.president-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    align-items: center;
    min-height: 80px;
}

.president-timeline-card {
    grid-row: 1;
    width: min(100%, 260px);
    padding: 0.35rem 0;
}

.president-timeline-item:nth-child(odd) .president-timeline-card {
    grid-column: 1;
    justify-self: end;
    text-align: right;
}

.president-timeline-item:nth-child(even) .president-timeline-card {
    grid-column: 3;
    justify-self: start;
}

.president-timeline-marker {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 16px;
    height: 16px;
    background: var(--rotary-gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(247, 168, 27, 0.16);
    z-index: 1;
}

.president-timeline-year {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--rotary-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.president-timeline-card h4 {
    margin: 0;
    color: var(--rotary-blue);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.2;
}

/* Responsividade de Mídia */
@media (max-width: 992px) {
    .events-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .order-mobile-1 {
        order: 1;
    }

    .order-mobile-2 {
        order: 2;
    }

    .action-tab-buttons,
    .satelite-tab-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        border-radius: 12px;
    }

    .sat-tab-btn,
    .action-tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: center;
        border-radius: 8px;
    }

    .sat-tab-btn.active {
        border-left-color: var(--rotary-gold);
    }

    .action-tab-btn.active {
        border-left-color: var(--rotary-blue);
    }

    .presidents-timeline {
        margin-top: 3rem;
        padding-left: 2rem;
    }

    .presidents-timeline::before {
        left: 8px;
        transform: none;
    }

    .president-timeline-item {
        grid-template-columns: 16px minmax(0, 1fr);
        column-gap: 1rem;
        min-height: 94px;
    }

    .president-timeline-card,
    .president-timeline-item:nth-child(odd) .president-timeline-card,
    .president-timeline-item:nth-child(even) .president-timeline-card {
        grid-column: 2;
        justify-self: stretch;
        width: auto;
        padding: 0.35rem 0;
        text-align: left;
    }

    .president-timeline-marker {
        grid-column: 1;
    }
}

/* =========================================
   ANIMAÇÕES MODERNAS (SCROLL E MICRO-INTERAÇÕES)
   ========================================= */
@supports (animation-timeline: view()) {

    .project-card,
    .feature-box,
    .about-text,
    .about-image {
        animation: fade-up-scroll linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 50%;
    }

    @keyframes fade-up-scroll {
        from {
            opacity: 0;
            transform: translateY(60px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* =========================================
   CUSTOM MAP PIN (LEAFLET)
   ========================================= */
.custom-rotary-pin {
    background: none;
    border: none;
}

.pin-marker {
    width: 46px;
    height: 46px;
    background-color: var(--rotary-blue);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.pin-marker img {
    width: 26px;
    height: 26px;
    transform: rotate(45deg);
    border-radius: 50%;
    background: white;
    padding: 2px;
}
