
/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #131313;
  background: linear-gradient(135deg, #E6F8F5 0%, #00DF81 100%);
  min-height: 100vh;
}

/* Página principal */
.main-page {
  background: linear-gradient(135deg, #E6F8F5 0%, #00DF81 100%);
  position: relative;
  overflow-x: hidden;
}

.main-page::before {
  content: '';
  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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Header */
header {
  position: relative;
  z-index: 2;
}

.logo-container {
  position: relative;
  display: inline-block;
}

.main-icon {
  width: 80px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

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

header h1 {
  color: #03624C;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  font-weight: 700;
}

header .lead {
  color: rgba(3, 98, 76, 0.8);
  font-size: 1.1rem;
}

/* Grid de membros da equipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-member-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 223, 129, 0.2);
  box-shadow: 0 8px 32px rgba(0, 223, 129, 0.1);
  position: relative;
  overflow: hidden;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 223, 129, 0.2), transparent);
  transition: left 0.5s;
}

.team-member-card:hover::before {
  left: 100%;
}

.team-member-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 223, 129, 0.3);
  background: rgba(255, 255, 255, 1);
  border-color: #00DF81;
}

.member-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #00DF81, #03624C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-member-card:hover .member-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 223, 129, 0.4);
}

.member-avatar i {
  font-size: 2rem;
  color: white;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #718684;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #00DF81;
  font-weight: 500;
  transition: all 0.3s ease;
}

.team-member-card:hover .card-footer {
  color: #03624C;
}

/* Título da seção */
h2 {
  color: #03624C;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

/* Footer */
footer {
  position: relative;
  z-index: 2;
  color: rgba(3, 98, 76, 0.8);
}

footer .text-muted {
  color: rgba(3, 98, 76, 0.7) !important;
}

footer .text-danger {
  color: #00DF81 !important;
}

/* Páginas de agenda */
.agenda-page {
  background: linear-gradient(135deg, #F4F6F6 0%, #E6F8F5 100%);
  min-height: 100vh;
  padding: 0;
}

.agenda-container {
  max-width: none;
  padding: 0;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.agenda-header {
  background: linear-gradient(135deg, #00DF81 0%, #03624C 100%);
  color: white;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 223, 129, 0.2);
  position: relative;
  z-index: 10;
}

.agenda-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.back-button {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-button:hover {
  color: white;
  transform: translateX(-3px);
}

.iframe-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 12px 12px 0 0;
  margin: 0 1rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 223, 129, 0.1);
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px 12px 0 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .team-member-card {
    padding: 1.5rem;
  }

  .main-icon {
    font-size: 3rem;
  }

  header h1 {
    font-size: 2rem;
  }

  .agenda-header {
    padding: 1rem;
  }

  .iframe-container {
    margin: 0 0.5rem 0.5rem;
    border-radius: 8px 8px 0 0;
  }
}

@media (max-width: 480px) {
  .member-avatar {
    width: 60px;
    height: 60px;
  }

  .member-avatar i {
    font-size: 1.5rem;
  }

  .member-name {
    font-size: 1.3rem;
  }
}
