/* ========== EQUIPE.CSS - Team Page ========== */

:root {
  --primary: #0066ff;
  --secondary: #00d4ff;
  --dark: #0a0e27;
  --darker: #050812;
  --text: #e8eef7;
  --text-muted: #a0aec0;
  --border: #1a2042;
  --success: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: linear-gradient(135deg, var(--darker) 0%, #0f1438 100%); color: var(--text); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.header { background: rgba(10, 14, 39, 0.95); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5em; font-weight: 800; text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo-img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.3)); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 1em; font-weight: 800; line-height: 1.2; }
.logo-tagline { font-size: 0.65em; color: var(--text-muted); font-weight: 300; line-height: 1.2; }

.nav { display: flex; gap: 30px; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 0.95em; transition: all 0.3s ease; }
.nav a.active { color: var(--secondary); }
.nav a:hover { color: var(--secondary); }

.page-intro { padding: 80px 0; text-align: center; background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05)); }
.page-intro h1 { font-size: 3em; font-weight: 800; margin-bottom: 20px; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.intro-text { font-size: 1.2em; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

.team-section, .install-section, .join-section { padding: 80px 0; animation: fadeInUp 0.8s ease-out; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.team-section h2, .install-section h2, .join-section h2 { font-size: 2.2em; margin-bottom: 10px; }
.section-subtitle, .section-intro { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05em; }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 25px; }
.team-card { background: rgba(26, 32, 66, 0.85); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; padding: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35); }
.team-avatar { width: 100%; height: 260px; object-fit: cover; display: block; border-radius: 12px; margin-bottom: 15px; }
.team-name { font-size: 1.25em; margin-bottom: 8px; color: #fff; }
.team-role { color: #8fbdec; margin-bottom: 8px; font-weight: 600; }
.team-bio { color: var(--text-muted); font-size: 0.95em; line-height: 1.6; }
.team-social { margin-top: 14px; }
.team-social a { color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 8px 12px; border-radius: 8px; text-decoration: none; transition: background 0.3s ease, color 0.3s ease; }
.team-social a:hover { background: var(--secondary); color: #070d2a; }

.photo-grid { display: grid; grid-template-columns: repeat(3, minmax(200px, 1fr)); gap: 12px; }
.photo-item img { width: 100%; height: 220px; object-fit: contain; border-radius: 12px; border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.photo-item img:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3); }

.video-gallery { display: grid; grid-template-columns: repeat(2, minmax(250px, 1fr)); gap: 20px; }
.video-item { background: rgba(12, 18, 43, 0.85); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.video-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); }
.video-wrapper { position: relative; width: 100%; overflow: hidden; }
.video-wrapper video { width: 100%; height: 240px; object-fit: contain; background: #000; transition: transform 0.3s ease; }
.video-wrapper video:hover { transform: scale(1.02); }
.video-info { padding: 16px; }
.video-info h4 { margin: 0 0 8px; color: var(--secondary); }
.video-info p { color: var(--text-muted); margin: 0; }

.join-section .join-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 8px; text-decoration: none; border: 1px solid transparent; font-weight: 700; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text-muted); }
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }

.site-footer { background: var(--dark); padding: 30px 0; text-align: center; border-top: 1px solid var(--border); }
.site-footer p { color: var(--text-muted); margin-bottom: 15px; }
.social-links { display: flex; justify-content: center; gap: 15px; }
.social-links a { color: var(--text-muted); font-size: 1.2rem; transition: color 0.3s ease; }
.social-links a:hover { color: var(--secondary); }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 20px rgba(37, 211, 102, 0.3); z-index: 999; text-decoration: none; }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .video-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header .container { flex-direction: column; gap: 14px; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .team-grid, .photo-grid { grid-template-columns: 1fr; }
}
