/* Botão WhatsApp verde exclusivo */
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #fff !important;
}

/* Carrossel de fotos nas instalações */
.card-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.carousel-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
  display: block;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
}

.carousel-btn {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  margin: 0 10px;
}

.card-carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(34, 197, 94, 0.8);
  transform: scale(1.1);
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #22c55e;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Animação de entrada para timeline */
.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Centralizar social-links dentro de membro-info */
.membro-info .social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
/* Variáveis de cores modernas com tons de verde */
:root {
    --azul-marinho: #1a365d;
    --azul-marinho-claro: #2d5a8a;
    --azul-escuro: #0f2a44;
    --verde-principal: #22c55e;
    --verde-escuro: #16a34a;
    --verde-claro: #4ade80;
    --verde-suave: #dcfce7;
    --verde-meio: #86efac;
    --branco: #ffffff;
    --cinza-claro: #f8fafc;
    --cinza: #e2e8f0;
    --cinza-medio: #64748b;
    --cinza-escuro: #1e293b;
    --destaque: #063b7d;
    --destaque-hover: #16a34a;
    --gradiente: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-escuro) 100%);
    --gradiente-misto: linear-gradient(135deg, var(--azul-marinho) 0%, var(--verde-principal) 100%);
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    background-color: var(--branco);
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões modernos */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradiente);
    color: var(--branco);
    box-shadow: 0 4px 14px 0 rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(34, 197, 94, 0.4);
}

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

.btn-outline:hover {
    background: var(--verde-principal);
    color: var(--branco);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Seções gerais */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--verde-suave);
    color: var(--verde-escuro);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--cinza-medio);
    max-width: 600px;
    margin: 0 auto;
}

/* Header moderno */
.header-modern {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(24, 162, 75, 0.98) 0%, rgba(59, 130, 246, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--branco);
}

.brand-icon {
    font-size: 2rem;
    color: var(--destaque);
}

.brand-text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.brand-text span {
    font-size: 0.9rem;
    color: var(--cinza);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-link {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--destaque);
}

/* Hero Section moderna */
.hero-modern {
    min-height: 100vh;
    background: var(--gradiente-misto);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
}

.hero-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--branco);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--destaque);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
    color: #063b7d;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

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

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--destaque);
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-icon {
    font-size: 2.5rem;
    color: var(--verde-claro);
    margin-bottom: 16px;
}

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    color: var(--branco);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Seção Quem Somos moderna */
.sobre-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cinza-claro) 0%, var(--verde-suave) 100%);
}

.historia-container {
    max-width: 1200px;
    margin: 0 auto;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.historia-video {
    order: 1;
}

.historia-text {
    background: var(--branco);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    order: 2;
}

/* Estilos para o vídeo */
.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.sobre-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.video-wrapper:hover .video-overlay {
    opacity: 0.8;
}

.historia-intro, .historia-desenvolvimento {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cinza-escuro);
}

.historia-intro {
    margin-bottom: 24px;
}

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

.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--verde-principal);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: var(--gradiente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.timeline-content {
    background: var(--branco);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.timeline-year {
    color: var(--destaque);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.timeline-content h4 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Seção Instalações moderna */
.instalacoes-modern {
    padding: 100px 0;
}

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

.instalacao-card-modern {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.instalacao-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.2rem;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    color: var(--azul-marinho);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card-content p {
    color: var(--cinza-medio);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--cinza-escuro);
}

.card-features i {
    color: var(--destaque);
}

/* Seção Diretoria moderna */
.diretoria-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--verde-suave) 0%, var(--cinza-claro) 100%);
}

.diretoria-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.membro-card-modern {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.membro-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.membro-photo {
    position: relative;
    overflow: hidden;
}

.membro-photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.membro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.membro-card-modern:hover .membro-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--branco);
    color: var(--azul-marinho);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--destaque);
    color: var(--branco);
}

.membro-info {
    padding: 24px;
    text-align: center;
}

.membro-info h3 {
    color: var(--azul-marinho);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.cargo {
    color: var(--destaque);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

.membro-info p {
    color: var(--cinza-medio);
    line-height: 1.6;
}

/* Seção Eventos moderna */
.eventos-modern {
    padding: 100px 0;
}

.eventos-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.evento-card-modern {
    background: var(--branco);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.evento-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.evento-date {
    background: var(--gradiente);
    color: var(--branco);
    padding: 16px;
    text-align: center;
    position: relative;
}

.date-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.evento-content {
    padding: 24px;
}

.evento-categoria {
    display: inline-block;
    background: var(--cinza-claro);
    color: var(--azul-marinho);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.evento-content h3 {
    color: var(--azul-marinho);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.evento-content p {
    color: var(--cinza-medio);
    margin-bottom: 16px;
    line-height: 1.6;
}

.evento-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.evento-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--cinza-escuro);
}

.evento-details i {
    color: var(--destaque);
    width: 16px;
}

/* Seção Contato moderna */
.contato-modern {
    padding: 100px 0;
    background: var(--cinza-claro);
}

.contato-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-info-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--branco);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--gradiente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: var(--azul-marinho);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: var(--cinza-medio);
    line-height: 1.6;
    margin: 0;
}

.social-section {
    background: var(--branco);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.social-section h4 {
    color: var(--azul-marinho);
    margin-bottom: 16px;
    font-weight: 600;
}

.social-links-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link.facebook {
    background: #dcfce7;
    color: #16a34a;
}

.social-link.instagram {
    background: #fce7f3;
    color: #ec4899;
}

.social-link.whatsapp {
    background: #f0fdf4;
    color: #25d366;
}

.social-link:hover {
    transform: translateX(8px);
}

.contato-form-modern {
    background: var(--branco);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.form-header {
    margin-bottom: 32px;
    text-align: center;
}

.form-header h3 {
    color: var(--azul-marinho);
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-header p {
    color: var(--cinza-medio);
    font-size: 1rem;
    line-height: 1.6;
}

.whatsapp-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
    animation: fadeInUp 0.5s ease;
}

.whatsapp-notice i {
    font-size: 1.2rem;
}

.whatsapp-notice span {
    font-weight: 500;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--azul-marinho);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--cinza-claro);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn.btn-primary.btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradiente);
    color: var(--branco);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Footer moderno */
.footer-modern {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--verde-escuro) 100%);
    color: var(--branco);
    padding: 48px 0 0;
    margin: 0;
    box-sizing: border-box;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer-content-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 18px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* layout padrão */
    /* layout padrão */
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo i {
    font-size: 2rem;
    color: var(--destaque);
}

.brand-text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.brand-text span {
    font-size: 0.9rem;
    color: var(--cinza);
    font-weight: 400;
}

.brand-description {
    color: var(--cinza);
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--destaque);
    font-weight: 700;
}

.stat span {
    font-size: 0.8rem;
    color: var(--cinza);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: var(--branco);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--cinza);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--destaque);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--cinza);
}

.contact-item i {
    color: var(--destaque);
    width: 16px;
}

.footer-newsletter p {
    color: var(--cinza);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

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

.input-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background: var(--branco);
}

.input-group input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 14px;
}

.input-group button {
    background: var(--destaque);
    color: var(--branco);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.input-group button:hover {
    background: var(--destaque-hover);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 2rem;
}
.footer-social a.facebook {
    background: #16a34a;
    color: #fff;
}
.footer-social a.instagram {
    background: #ec4899;
    color: #fff;
}


.footer-social a:hover {
    background: var(--destaque);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    color: var(--cinza);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--cinza);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--branco);
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  transition: background-color .3s;
}
.whatsapp-float a:hover {
  background-color: #1ebe57;
}
.whatsapp-tooltip {
  position: absolute;
  right: 60px;
  background-color: #25d366;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity .3s, transform .3s;
}
.whatsapp-float a:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Botão Voltar ao Topo */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 90px; /* acima do WhatsApp */
  width: 50px;
  height: 50px;
  background: var(--destaque);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 1000;
}
.back-to-top a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    border-radius: 50%;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--destaque-hover);
}
.back-to-top i {
  font-size: 1.2rem;
}
.back-to-top a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Home: seção de atalho da Galeria */
.galeria-modern .galeria-intro {
    max-width: 840px;
    margin: 0 auto 16px auto;
    color: var(--cinza);
    text-align: center;
}
.galeria-modern .galeria-links-rapidos {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0 20px 0;
}
.galeria-modern .galeria-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.galeria-modern .galeria-nota {
    color: var(--cinza);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .contato-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content-modern {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(26, 54, 93, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 16px 0;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 16px 20px;
        font-size: 1.1rem;
        color: white !important;
        text-decoration: none;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: var(--destaque);
        padding-left: 24px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .instalacoes-grid-modern,
    .diretoria-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .eventos-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content-modern {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
}

/* ===========================
   FOOTER MODERNO
   =========================== */

.footer-modern {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    margin-top: auto;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-content {
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-brand-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.footer-brand-text span {
    font-size: 0.9rem;
    color: #cbd5e0;
    font-weight: 400;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    color: #ffffff;
}

.social-link.instagram {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 50%, #f472b6 100%);
    color: #ffffff;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #365b8f, #4a90e2);
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.footer-column ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item i {
    color: #4a90e2;
    font-size: 1rem;
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

.footer-copyright,
.footer-credits {
    font-size: 0.85rem;
    color: #718096;
}

.developer-name {
    color: #4a90e2;
    font-weight: 500;
}

/* Efeitos de hover para melhor interatividade */
.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 4px;
    background: #4a90e2;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-column ul li {
    position: relative;
}

.footer-column ul li a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

/* ===========================
   FOOTER RESPONSIVO TABLET
   =========================== */

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .footer-main {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        padding: 30px 0 0 !important;
    }
    
    .footer-main {
        gap: 30px !important;
    }
    
    .footer-brand-text h3 {
        font-size: 1.3rem !important;
    }
    
    .footer-description {
        font-size: 0.85rem !important;
    }
    
    .social-link {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    
    .footer-bottom {
        padding: 20px 0 !important;
    }
    
    .footer-copyright,
    .footer-credits {
        font-size: 0.75rem !important;
    }
    
    /* Garantir responsividade total */
    .footer-modern {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .footer-main {
        overflow-x: hidden !important;
    }
    
    .footer-brand,
    .footer-column {
        overflow-x: hidden !important;
        word-wrap: break-word !important;
    }
}

/* Remover barra de rolagem lateral de todas as sections */
section {
    overflow-y: hidden !important;
}

section * {
    overflow-y: hidden !important;
}

/* Garantir que containers dentro das sections não tenham scroll */
section .container,
section .instalacoes-grid-modern,
section .diretoria-grid,
section .galeria-grid {
    overflow-y: hidden !important;
}

/* Regra global para forçar remoção de barras de rolagem verticais em todas as sections */
section,
section div,
section article,
section aside,
section nav,
section main {
    overflow-y: hidden !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

section::-webkit-scrollbar,
section div::-webkit-scrollbar,
section article::-webkit-scrollbar {
    display: none !important;
}

/* Modal de Visualização de Imagens */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.modal-close:hover,
.modal-close:focus {
    color: #ccc;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 10px;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .modal-navigation {
        padding: 0 15px;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-image {
        max-width: 95%;
        max-height: 85%;
    }
}