/* 
  CredoBots — Premium Styling Sheet
  Aesthetic: Futuristic Industrial Automation (Premium Dark Cinematic Theme)
*/

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300..900;1,300..900&family=Inter:wght@300;400;500;600;700;800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400;600;700;900&display=swap');

:root {
  /* Color Palette — Premium Cinematic Dark Theme */
  --bg-dark: #000015;
  /* Deep cold technical navy/black background */
  --bg-dark-accent: #000028;
  /* Grounded dark navy for inner cards/blocks */
  --blue-navy: #00004D;
  /* Brand navy for depth and gradients */
  --yellow-gold: #FFD700;
  /* Brand Gold for highlights and telemetry focus */
  --cyan-tech: #00AEEF;
  /* Brand Cyan for technical details and accent lines */
  --cyan-glow: rgba(0, 174, 239, 0.08);
  --yellow-glow: rgba(255, 215, 0, 0.08);
  --white: #FFFFFF;
  --text-primary: #FFFFFF;
  /* Pure white for high-contrast reading */
  --text-secondary: #CBD5E1;
  /* Slate 300 for readable technical copy */
  --text-muted: #64748B;
  /* Slate 500 for secondary technical markers */

  /* Gradients */
  --grad-navy-dark: linear-gradient(135deg, #000028 0%, #00000C 100%);
  --grad-cyan-gold: linear-gradient(90deg, var(--cyan-tech) 0%, var(--yellow-gold) 100%);
  --grad-card: linear-gradient(135deg, rgba(0, 0, 40, 0.7) 0%, rgba(0, 0, 15, 0.9) 100%);
  --grad-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --grad-cyan: linear-gradient(135deg, #00AEEF 0%, #0077B6 100%);

  /* UI Tokens & Typography */
  --font-title: 'Exo 2', sans-serif;
  /* Clean technical mechatronics title */
  --font-display: 'Orbitron', sans-serif;
  /* Display font for digital numbers & accents */
  --font-body: 'Inter', sans-serif;
  /* Clean comfortable body typography */
  --font-support: 'Montserrat', sans-serif;
  /* Highly polished support text */

  --border-glow: 1px solid rgba(0, 174, 239, 0.15);
  --border-gold-glow: 1px solid rgba(255, 215, 0, 0.15);
  --radius-lg: 16px;
  --radius-md: 8px;
  --shadow-cyber: 0 10px 30px rgba(0, 0, 0, 0.5);
  --glow-cyan-shadow: 0 0 15px rgba(0, 174, 239, 0.12);
  --glow-yellow-shadow: 0 0 15px rgba(255, 215, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Resets & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  overflow-x: hidden;
  line-height: 1.6;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 77, 0.4) 0%, transparent 50%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button,
input,
textarea,
select {
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(0, 174, 239, 0.2);
  border-radius: var(--radius-md);
  border: 2px solid var(--bg-dark);
  transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-tech);
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  letter-spacing: 0.5px;
  color: var(--white);
}

h1 {
  font-weight: 900;
  text-transform: uppercase;
}

.text-gradient {
  background: var(--grad-cyan-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.btn-primary {
  background: var(--cyan-tech);
  color: var(--bg-dark);
  border: 1px solid var(--cyan-tech);
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.2);
}

.btn-primary:hover {
  background: transparent;
  color: var(--cyan-tech);
  box-shadow: 0 8px 25px rgba(0, 174, 239, 0.35);
  border-color: var(--cyan-tech);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--yellow-gold);
  color: var(--yellow-gold);
  box-shadow: var(--glow-yellow-shadow);
}

.btn-outline-cyan {
  background: transparent;
  color: var(--cyan-tech);
  border: 1.5px solid var(--cyan-tech);
}

.btn-outline-cyan:hover {
  background: rgba(0, 174, 239, 0.05);
  box-shadow: var(--glow-cyan-shadow);
}

.section-padding {
  padding: 80px 0;
}

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

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

/* Grid layout generator */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Glassmorphic card base */
.glass-card {
  background: var(--grad-card);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cyber);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(0, 174, 239, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 174, 239, 0.08);
}

/* ==========================================================================
   Header & Mobile Navigation Menu
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 21, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 174, 239, 0.15);
  transition: var(--transition-normal);
}

header .navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 5%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
}

.logo span {
  color: var(--cyan-tech);
  text-shadow: 0 2px 10px rgba(0, 174, 239, 0.1);
}

.logo-icon {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0px 2px 5px rgba(0, 174, 239, 0.2));
}

.logo-img {
  height: 150px;
  width: auto;
  margin-right: 5px;
  transition: var(--transition-normal);
  filter: drop-shadow(0 2px 5px rgba(0, 174, 239, 0.15));
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 4px 10px rgba(0, 174, 239, 0.35)) drop-shadow(0 0 5px rgba(0, 174, 239, 0.2));
}

.footer-logo-img {
  height: 80px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.logo:hover .footer-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 0 12px rgba(0, 174, 239, 0.4));
}

nav ul {
  display: flex;
  gap: 25px;
}

nav ul li a {
  font-family: var(--font-support);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  position: relative;
  color: var(--text-secondary);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan-tech);
  box-shadow: var(--glow-cyan-shadow);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

nav ul li a:hover {
  color: var(--cyan-tech);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 80%;
}

nav ul li a.active {
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 174, 239, 0.3);
}

/* Mobile burger menu trigger */
.burger-menu {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  padding: 5px;
}

/* ==========================================================================
   Footer (Grounded Premium Dark Navy Footer)
   ========================================================================== */
footer {
  background: #000015;
  /* Grounded Dark Navy Footer for Premium feel */
  border-top: 1px solid rgba(0, 174, 239, 0.15);
  padding: 60px 0 30px;
  font-size: 0.9rem;
  color: #B0B0D0;
}

footer h4,
footer .logo,
footer .logo span {
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin: 15px 0 20px;
  font-size: 0.95rem;
  color: #B0B0D0;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-left: 3px solid var(--cyan-tech);
  padding-left: 10px;
}

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

.footer-links li a:hover {
  color: var(--cyan-tech);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 174, 239, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  background: rgba(0, 0, 77, 0.15);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: #B0B0D0;
  transition: var(--transition-normal);
}

.social-btn:hover {
  border-color: var(--yellow-gold);
  box-shadow: var(--glow-yellow-shadow);
  transform: translateY(-3px);
}

.social-btn:hover svg {
  fill: var(--yellow-gold);
}

.footer-newsletter p {
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(0, 0, 48, 0.6);
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: var(--radius-md);
  padding: 10px 15px;
  color: #FFFFFF;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--cyan-tech);
  box-shadow: var(--glow-cyan-shadow);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: #656588;
}

/* ==========================================================================
   Main Content Transitions
   ========================================================================== */
#app-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 400px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: var(--bg-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 5;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 174, 239, 0.06);
  border: var(--border-glow);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.8rem;
  color: var(--cyan-tech);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-tag span {
  width: 8px;
  height: 8px;
  background: var(--yellow-gold);
  border-radius: 50%;
  animation: pulse-glow 1.5s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--blue-navy);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
}

/* Animated Robot Graphic */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-circle-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(0, 174, 239, 0.12);
  border-radius: 50%;
  animation: rotate-clockwise 40s linear infinite;
}

.tech-circle-bg-inner {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  animation: rotate-counter-clockwise 25s linear infinite;
}

.hero-brand-emblem-container {
  width: 100%;
  max-width: 330px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-brand-emblem {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0, 174, 239, 0.22)) drop-shadow(0 0 15px rgba(0, 174, 239, 0.15));
  transition: var(--transition-normal);
}

.hero-brand-emblem:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 12px 35px rgba(255, 215, 0, 0.35)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.25));
}

/* Metrics Section */
.metrics-section {
  padding: 40px 0;
  position: relative;
  z-index: 10;
  transform: translateY(-40px);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.metric-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-cyber);
}

.metric-number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue-navy);
  text-shadow: 0 2px 10px rgba(0, 0, 77, 0.05);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-family: var(--font-title);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Mission Section */
.mission-section {
  background: linear-gradient(180deg, rgba(0, 174, 239, 0) 0%, rgba(0, 174, 239, 0.03) 50%, rgba(0, 174, 239, 0) 100%);
  padding: 100px 0;
  position: relative;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-tag {
  color: var(--blue-navy);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.mission-quote {
  font-family: var(--font-title);
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--blue-navy);
  text-shadow: 0 2px 20px rgba(0, 174, 239, 0.08);
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-subtitle {
  color: var(--cyan-tech);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 900;
}

/* News Section Home */
.home-news-grid {
  margin-bottom: 40px;
}

/* Partners Slider / Carousel */
.partners-slider-container {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  width: 100%;
}

.partners-slider-container::before,
.partners-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-slider-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.partners-slider-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark) 0%, transparent 100%);
}

.partners-track {
  display: flex;
  width: calc(250px * 12);
  animation: slide-scroll 25s linear infinite;
  gap: 40px;
}

.partner-logo-box {
  width: 220px;
  height: 80px;
  background: #FFFFFF;
  padding: 10px;
  border: var(--border-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: bold;
  font-size: 0.95rem;
  color: var(--blue-navy);
  transition: var(--transition-normal);
  cursor: pointer;
  box-shadow: var(--shadow-cyber);
}

.partner-logo-box:hover {
  border-color: var(--cyan-tech);
  color: var(--cyan-tech);
  box-shadow: var(--glow-cyan-shadow);
  transform: scale(1.05);
}

/* Home CTA time */
.home-cta-time-section {
  text-align: center;
  padding: 80px 0;
  background: radial-gradient(circle at center, rgba(0, 174, 239, 0.04) 0%, transparent 60%);
}

.home-cta-time-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.home-cta-time-section p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Sub-Navigation e Abas (Tabs)
   ========================================================================== */
.sub-nav-container {
  background: rgba(0, 0, 20, 0.4);
  border-bottom: 1px solid rgba(0, 174, 239, 0.15);
  margin-bottom: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sub-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sub-nav-btn {
  padding: 18px 25px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
  transition: var(--transition-fast);
  letter-spacing: 1px;
}

.sub-nav-btn:hover {
  color: var(--cyan-tech);
}

.sub-nav-btn.active {
  color: var(--white);
  border-color: var(--cyan-tech);
  text-shadow: 0 0 10px rgba(0, 174, 239, 0.4);
}

/* ==========================================================================
   SOBRE PAGE
   ========================================================================== */

.about-shield-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.about-shield-badge {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 174, 239, 0.12));
  transition: var(--transition-normal);
  animation: float 6s ease-in-out infinite;
}

.about-shield-badge:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 20px rgba(0, 174, 239, 0.25));
}

/* Timeline (História) */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue-navy) 0%, var(--cyan-tech) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  clear: both;
}

.timeline-item.left {
  float: left;
  text-align: right;
}

.timeline-item.right {
  float: right;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--blue-navy);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 77, 0.15);
}

.timeline-item.left .timeline-badge {
  right: -10px;
}

.timeline-item.right .timeline-badge {
  left: -10px;
  border-color: var(--cyan-tech);
  box-shadow: var(--glow-cyan-shadow);
}

.timeline-date {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
}

.timeline-item.right .timeline-date {
  color: var(--cyan-tech);
}

.timeline-card {
  background: var(--grad-card);
  border: var(--border-glow);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cyber);
}

.timeline-item.right .timeline-card {
  border-color: rgba(0, 174, 239, 0.25);
}

.timeline-card h4 {
  margin-bottom: 10px;
  color: var(--white);
}

.timeline-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.timeline-clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Missão, Visão, Valores */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.mvv-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(0, 174, 239, 0.08);
  border: var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: var(--glow-cyan-shadow);
}

.mvv-icon-box svg {
  width: 32px;
  height: 32px;
  fill: var(--cyan-tech);
}

.mvv-card.vision .mvv-icon-box {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--glow-yellow-shadow);
}

.mvv-card.vision .mvv-icon-box svg {
  fill: var(--yellow-gold);
}

.mvv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.mvv-card p {
  color: var(--text-secondary);
}

/* O Time */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.9);
  border: var(--border-glow);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-cyber);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue-navy);
  color: var(--white);
  border-color: var(--blue-navy);
  box-shadow: 0 4px 15px rgba(0, 0, 77, 0.15);
}

.member-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

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

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

.member-card:hover .member-img {
  transform: scale(1.1) rotate(2deg);
}

.member-info {
  padding: 25px;
}

.member-name {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 5px;
}

.member-role {
  color: var(--cyan-tech);
  font-family: var(--font-title);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.member-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.member-area-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.member-area-badge.gestão {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--yellow-gold);
}

.member-area-badge.programação {
  border-color: rgba(0, 174, 239, 0.4);
  color: var(--cyan-tech);
}

.member-area-badge.mecânica {
  border-color: #ff5252;
  color: #ff5252;
}

.member-area-badge.elétrica {
  border-color: #00aa66;
  color: #00aa66;
}

/* ==========================================================================
   ROBÔS PAGE
   ========================================================================== */

/* Robô Atual (Blueprint Estilo de Engenharia — Clean Light Blueprint) */
.blueprint-card {
  background: radial-gradient(circle at center, rgba(0, 0, 30, 0.98) 0%, rgba(0, 0, 10, 0.98) 100%),
    linear-gradient(rgba(0, 174, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  border: 1.5px solid var(--cyan-tech);
  box-shadow: 0 10px 40px rgba(0, 174, 239, 0.2);
}

.blueprint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.blueprint-header {
  margin-bottom: 25px;
}

.blueprint-title {
  font-size: 2.5rem;
  color: var(--white);
  text-transform: uppercase;
}

.blueprint-category {
  color: var(--yellow-gold);
  font-family: var(--font-title);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.blueprint-status-badge {
  display: inline-block;
  background: rgba(0, 170, 102, 0.08);
  border: 1px solid #00aa66;
  color: #00aa66;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--font-title);
  margin-bottom: 15px;
}

.blueprint-image-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.2);
}

.blueprint-image {
  width: 100%;
  display: block;
  filter: contrast(1.05) brightness(1.0);
}

.blueprint-overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 174, 239, 0.08) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(0, 174, 239, 0.08) 1px, transparent 1px) 0 0 / 40px 40px;
}

.blueprint-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 30px;
}

.specs-title {
  font-size: 1.2rem;
  color: var(--cyan-tech);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.25);
  padding-bottom: 5px;
  text-transform: uppercase;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(0, 174, 239, 0.15);
  padding-bottom: 8px;
  font-size: 0.9rem;
}

.spec-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.spec-val {
  color: var(--white);
  text-align: right;
  font-weight: 500;
}

/* Innovations Section */
.innovations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.innovation-card {
  position: relative;
}

.innovation-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 174, 239, 0.1);
  line-height: 1;
  position: absolute;
  top: 15px;
  right: 25px;
}

.innovation-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--blue-navy);
  max-width: 80%;
}

.innovation-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 174, 239, 0.15);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-badge {
  width: 60px;
  height: 60px;
  background: var(--bg-dark-accent);
  border: var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-title);
  font-weight: bold;
  color: var(--cyan-tech);
  box-shadow: var(--shadow-cyber);
}

.process-step:hover .process-badge {
  border-color: var(--blue-navy);
  color: var(--blue-navy);
  box-shadow: 0 4px 12px rgba(0, 0, 77, 0.08);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Robôs Histórico */
.historical-robot-card {
  padding: 0;
  overflow: hidden;
}

.historical-robot-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: var(--border-glow);
}

.historical-info {
  padding: 25px;
}

.historical-tag-year {
  display: inline-block;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--yellow-gold);
  color: var(--yellow-gold);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: var(--font-title);
  margin-bottom: 12px;
}

.historical-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--white);
}

.historical-info .achievements {
  color: var(--cyan-tech);
  font-family: var(--font-title);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.historical-info .specs {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   COMPETIÇÕES PAGE
   ========================================================================== */

/* Calendário */
.comp-table-card {
  padding: 0;
  overflow-x: auto;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th,
.comp-table td {
  padding: 20px 25px;
}

.comp-table th {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1.5px solid rgba(0, 174, 239, 0.2);
  background: rgba(0, 174, 239, 0.05);
}

.comp-table td {
  border-bottom: 1px solid rgba(0, 174, 239, 0.15);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table tr:hover {
  background: rgba(0, 174, 239, 0.05);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.status-badge.confirmado {
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid var(--cyan-tech);
  color: var(--cyan-tech);
}

.status-badge.em-breve {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--yellow-gold);
  color: var(--yellow-gold);
}

.status-badge.encerrado {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

/* Resultados */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.result-card {
  text-align: center;
  position: relative;
}

.trophy-box {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--yellow-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.trophy-box svg {
  width: 38px;
  height: 38px;
  fill: var(--yellow-gold);
}

.result-card:nth-child(2) .trophy-box {
  background: rgba(148, 163, 184, 0.08);
  border-color: #94a3b8;
  box-shadow: 0 4px 12px rgba(148, 163, 184, 0.15);
}

.result-card:nth-child(2) .trophy-box svg {
  fill: #94a3b8;
}

.result-card:nth-child(3) .trophy-box {
  background: rgba(180, 83, 9, 0.08);
  border-color: #b45309;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.15);
}

.result-card:nth-child(3) .trophy-box svg {
  fill: #b45309;
}

.result-pos {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--yellow-gold);
  margin-bottom: 5px;
  font-weight: bold;
}

.result-card:nth-child(2) .result-pos {
  color: #64748b;
}

.result-card:nth-child(3) .result-pos {
  color: #b45309;
}

.result-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--white);
}

.result-category {
  font-size: 0.85rem;
  color: var(--cyan-tech);
  font-family: var(--font-title);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.result-prize {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Galeria de Eventos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: var(--border-glow);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 77, 0.95) 0%, transparent 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition-normal);
  height: 60%;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card-title {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.gallery-card-type {
  color: var(--cyan-tech);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: var(--font-title);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 40, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border: 2px solid var(--cyan-tech);
  box-shadow: 0 0 40px rgba(0, 174, 239, 0.2);
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--cyan-tech);
}

.lightbox-title {
  color: var(--white);
  font-family: var(--font-title);
  margin-top: 15px;
  text-align: center;
  font-size: 1.1rem;
}

/* ==========================================================================
   PROJETOS PAGE
   ========================================================================== */
.project-card {
  padding: 0;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: var(--border-glow);
}

.project-body {
  padding: 25px;
}

.project-tag {
  color: var(--cyan-tech);
  font-family: var(--font-title);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
}

.project-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 80px;
}

.project-footer {
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   NOVIDADES PAGE (BLOG)
   ========================================================================== */
.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.blog-search-box {
  position: relative;
  max-width: 350px;
  width: 100%;
}

.blog-search-box input {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: var(--border-glow);
  border-radius: 50px;
  padding: 10px 20px;
  padding-right: 40px;
  color: var(--text-primary);
  outline: none;
  font-size: 0.9rem;
  box-shadow: var(--shadow-cyber);
}

.blog-search-box input:focus {
  border-color: var(--blue-navy);
  box-shadow: 0 4px 15px rgba(0, 0, 77, 0.08);
}

.blog-search-box svg {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-title);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-category {
  color: var(--cyan-tech);
}

.blog-date {
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.3;
}

.blog-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Blog Article Modal */
.blog-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 40, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.blog-modal.active {
  display: flex;
  opacity: 1;
}

.blog-modal-content {
  background: var(--bg-dark-accent);
  border: var(--border-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-width: 750px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.blog-modal-close:hover {
  color: var(--cyan-tech);
}

.blog-modal-meta {
  display: flex;
  gap: 20px;
  font-family: var(--font-title);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--cyan-tech);
}

.blog-modal-date {
  color: var(--text-muted);
}

.blog-modal-title {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--white);
  line-height: 1.2;
}

.blog-modal-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Imprensa (Media Clippings) */
.media-clipping-card {
  border-left: 3px solid var(--cyan-tech);
  transition: var(--transition-normal);
}

.media-clipping-card:hover {
  border-left-color: var(--cyan-tech);
}

.media-source {
  font-family: var(--font-title);
  color: var(--cyan-tech);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.media-clipping-card h3 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  color: var(--white);
}

.media-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.media-arrow {
  color: var(--cyan-tech);
  font-family: var(--font-title);
  font-weight: bold;
}

.media-arrow:hover {
  color: var(--cyan-tech);
}

/* ==========================================================================
   PARCEIROS PAGE
   ========================================================================== */
.sponsors-tier-section {
  margin-bottom: 60px;
}

.tier-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.tier-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
}

.sponsors-tier-section.gold .tier-title {
  color: var(--yellow-gold);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.sponsors-tier-section.gold .tier-title::after {
  background: var(--yellow-gold);
}

.sponsors-tier-section.silver .tier-title {
  color: #64748b;
  text-shadow: 0 2px 8px rgba(100, 116, 139, 0.1);
}

.sponsors-tier-section.silver .tier-title::after {
  background: #64748b;
}

.sponsors-tier-section.bronze .tier-title {
  color: #b45309;
  text-shadow: 0 2px 8px rgba(180, 83, 9, 0.1);
}

.sponsors-tier-section.bronze .tier-title::after {
  background: #b45309;
}

.sponsors-tier-section.support .tier-title {
  color: var(--cyan-tech);
  text-shadow: var(--glow-cyan-shadow);
}

.sponsors-tier-section.support .tier-title::after {
  background: var(--cyan-tech);
}

.sponsors-grid {
  display: grid;
  gap: 30px;
}

.sponsors-grid.all-sponsors-grid {
  grid-template-columns: repeat(2, 1fr);
}

.sponsor-card-detail {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sponsor-logo-detail {
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  padding: 15px;
  border: var(--border-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 900;
  text-align: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-cyber);
}

.sponsors-tier-section.gold .sponsor-logo-detail {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--glow-yellow-shadow);
}

.sponsor-content-detail h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--white);
}

.sponsor-content-detail p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.sponsors-cta-banner {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.05) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cyber);
}

.sponsors-cta-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--white);
}

.sponsors-cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

/* ==========================================================================
   PATROCÍNIO PAGE
   ========================================================================== */

/* Benefits Matrix (Table) */
.benefits-table-wrapper {
  overflow-x: auto;
  margin: 50px 0;
}

.benefits-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.benefits-table th,
.benefits-table td {
  padding: 15px 20px;
  border: 1px solid rgba(0, 174, 239, 0.15);
}

.benefits-table th {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.benefits-table th.benefit-col {
  text-align: left;
  background: rgba(0, 174, 239, 0.05);
  color: var(--white);
}

.benefits-table th.gold-col {
  color: var(--yellow-gold);
  background: rgba(255, 215, 0, 0.05);
}

.benefits-table th.silver-col {
  color: #E2E8F0;
  background: rgba(226, 232, 240, 0.05);
}

.benefits-table th.bronze-col {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.05);
}

.benefits-table td.benefit-col {
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
}

.check-icon {
  color: #00aa66;
  font-weight: bold;
  font-size: 1.2rem;
}

.dash-icon {
  color: var(--text-muted);
}

/* Contact / Sponsor Form */
.cyber-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

.form-label {
  font-family: var(--font-title);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--cyan-tech);
  letter-spacing: 1px;
}

.form-control {
  background: rgba(0, 0, 30, 0.6);
  border: var(--border-glow);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
  border-color: var(--cyan-tech);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.25);
}

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

/* Form success animation container */
.form-success-message {
  display: none;
  text-align: center;
  padding: 30px;
  background: rgba(0, 170, 102, 0.06);
  border: 1px solid #00aa66;
  border-radius: var(--radius-lg);
  color: var(--text-primary);
}

.form-success-message.active {
  display: block;
}

.success-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(0, 170, 102, 0.1);
  border: 2px solid #00aa66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon-circle svg {
  width: 32px;
  height: 32px;
  fill: #00aa66;
}

/* ==========================================================================
   CONTATO PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(0, 174, 239, 0.06);
  border: var(--border-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-cyan-shadow);
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
  fill: var(--cyan-tech);
}

.contact-details h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.contact-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Virtual Map / Cybernetic Map Placeholder */
.cyber-map-placeholder {
  height: 260px;
  border-radius: var(--radius-lg);
  border: var(--border-glow);
  background-color: #000018;
  background-image:
    radial-gradient(var(--cyan-tech) 1.5px, transparent 1.5px),
    linear-gradient(rgba(0, 174, 239, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.06) 1px, transparent 1px);
  background-size: 20px 20px, 40px 40px, 40px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cyber);
}

.map-radar-pulse {
  position: absolute;
  width: 25px;
  height: 25px;
  background: rgba(0, 174, 239, 0.2);
  border: 2px solid var(--cyan-tech);
  border-radius: 50%;
  z-index: 5;
  box-shadow: var(--glow-cyan-shadow);
}

.map-radar-pulse::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  border: 1px solid var(--cyan-tech);
  animation: radar-pulse 3s infinite linear;
}

.map-location-tag {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--blue-navy);
  padding: 8px 15px;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-size: 0.75rem;
  color: var(--blue-navy);
  text-transform: uppercase;
  transform: translateY(45px);
  box-shadow: 0 4px 12px rgba(0, 0, 77, 0.08);
}

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes rotate-clockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-counter-clockwise {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  70% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }

  100% {
    transform: scale(0.9);
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes radar-pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes slide-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 6));
  }

  /* Adjust for number of logos */
}

/* ==========================================================================
   Media Queries (Responsive Layouts)
   ========================================================================== */
@media (max-width: 1250px) {
  nav ul {
    gap: 12px;
    /* Espaçamento menor para caber em telas intermediárias */
  }

  nav ul li a {
    font-size: 0.78rem;
    /* Fonte ligeiramente menor */
    padding: 6px 8px;
    /* Padding otimizado */
    letter-spacing: 0.5px;
  }
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Ativar o menu hambúrguer a partir de 1024px (telas de tablet / iPad) */
  .burger-menu {
    display: block;
  }

  nav {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 20, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: var(--border-glow);
    transition: var(--transition-normal);
    z-index: 1000;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 30px;
  }

  nav ul li a {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-graphic {
    margin-top: 40px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }

  .timeline-badge {
    left: 10px !important;
    right: auto !important;
  }

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

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

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-timeline::before {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-search-box {
    max-width: 100%;
  }

  .filter-tabs {
    flex-wrap: wrap;
  }

  .sponsors-grid.all-sponsors-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card-detail {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

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

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

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* ==========================================================================
   GALERIA DE BASTIDORES & FOTOS DA EQUIPE
   ========================================================================== */
.team-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-photo-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 174, 239, 0.15);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-photo-card:hover .team-photo {
  transform: scale(1.05);
}

.team-photo-hud {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.team-photo-hud .hud-tag {
  background: rgba(0, 0, 20, 0.75);
  border: 1px solid var(--cyan-tech);
  color: var(--cyan-tech);
  padding: 3px 8px;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.team-photo-hud .hud-telemetry {
  font-family: var(--font-title);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.team-photo-caption {
  padding: 20px 25px;
}

.team-photo-caption h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.team-photo-caption p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}