/* FStech UI Design System - Dark Theme */

/* Reset e Base */
:root {
  /* Cores de fundo escuro */
  --dark-900: #050505;
  --dark-800: #0a0a0a;
  --dark-700: #0f0f0f;
  --dark-600: #141414;
  --dark-500: #191919;
  --dark-400: #474747;
  --dark-300: #757575;
  --dark-200: #a3a3a3;
  --dark-100: #d1d1d1;
  
  /* Cores de acento */
  --accent-900: #041533;
  --accent-800: #082b66;
  --accent-700: #0c4099;
  --accent-600: #1056cc;
  --accent-500: #146bff;
  --accent-400: #4389ff;
  --accent-300: #72a6ff;
  --accent-200: #a1c4ff;
  --accent-100: #d0e1ff;
  
  /* Cores secundárias de acento */
  --accent-cyan: #00ccff;
  
  /* Cores de estado */
  --success: #00cc88;
  --warning: #ffaa00;
  --error: #ff4444;
  
  /* Configurações de espaçamento */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  
  /* Configurações de container */
  --container-width: 1280px;
  --container-narrow: 1024px;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem; 
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Tema Escuro */
.tech-dark-theme {
  background: linear-gradient(to bottom, var(--dark-800), var(--dark-900));
  color: white;
  min-height: 100vh;
}

/* Textos com Gradiente */
.tech-text-gradient {
  background: linear-gradient(90deg, var(--accent-500), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Header */
.tech-header {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--spacing-lg);
  height: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-header .logo {
  height: 1.5rem;
}

.tech-header nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.nav-link {
  position: relative;
  color: #f0f0f0;
  padding-bottom: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(20, 107, 255, 0.7), rgba(20, 107, 255, 1), rgba(65, 130, 255, 0.8));
  transition: width 0.3s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: white;
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
  opacity: 1;
  background: linear-gradient(90deg, rgba(20, 107, 255, 0.8), rgba(20, 107, 255, 1), rgba(20, 107, 255, 0.8));
  height: 2.5px;
}

/* Botões */
.tech-button {
  background: linear-gradient(135deg, rgba(20, 107, 255, 0.9), rgba(20, 107, 255, 0.7));
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(20, 107, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.tech-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 120, 255, 1), rgba(20, 107, 255, 0.8));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-button:hover::before {
  opacity: 1;
}

.tech-button-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.tech-button-outline {
  background: transparent;
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 107, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.tech-button-outline:hover {
  border-color: var(--accent-500);
  background: rgba(20, 107, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.95);
  padding: var(--spacing-xl);
  z-index: 99;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: var(--spacing-lg);
}

.mobile-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  padding: var(--spacing-md) 0;
}

.mobile-menu.active {
  display: block;
}

/* Hero Section */
.tech-hero {
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('../images/hero/hero.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(8, 8, 8, 0.85), rgba(0, 0, 0, 0.95));
  z-index: 1;
}

.tech-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.tech-hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.tech-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--spacing-2xl);
  color: rgba(255, 255, 255, 0.8);
}

.tech-hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 60%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 107, 255, 0.25) 0%, rgba(20, 107, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.8;
  animation: float 15s infinite ease-in-out alternate;
  z-index: 1;
}

.tech-dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(20, 107, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* Seções */
.tech-section {
  padding: var(--spacing-4xl) var(--spacing-xl);
  max-width: var(--container-width);
  margin: 0 auto;
}

.tech-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  font-weight: 700;
}

.tech-section-title-small {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

.tech-dark-section {
  background-color: var(--dark-900);
  color: white;
  padding: var(--spacing-4xl) var(--spacing-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tech-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23146bff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
}

.tech-container {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 var(--spacing-lg);
}

.tech-container.narrow {
  max-width: var(--container-narrow);
}

.tech-title-gradient {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.tech-text-lg {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards e Grid de Serviços */
.tech-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.tech-card {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgba(20, 107, 255, 0.3);
  border-color: rgba(20, 107, 255, 0.2);
}

.tech-card .service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tech-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tech-card:hover .service-image img {
  transform: scale(1.05);
}

.tech-card .service-content {
  padding: var(--spacing-xl);
}

.tech-card .service-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.tech-card .service-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-lg);
  font-size: 1rem;
  line-height: 1.5;
}

.tech-card .service-link {
  color: var(--accent-500);
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.tech-card .service-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-cyan));
  transition: width 0.3s ease;
}

.tech-card .service-link:hover::after {
  width: 100%;
}

/* Serviços Detalhados */
.tech-service-detail {
  display: flex;
  align-items: center;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-4xl);
}

.tech-service-detail.reverse {
  flex-direction: row-reverse;
}

.tech-service-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
  position: relative;
  max-width: 500px;
}

.tech-service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tech-service-detail:hover .tech-service-image img {
  transform: scale(1.03);
}

.tech-service-content {
  flex: 1;
}

.tech-service-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-service-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  font-size: 1.125rem;
  line-height: 1.6;
}

.tech-service-features {
  margin: var(--spacing-xl) 0;
}

.tech-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.tech-feature-icon {
  background: linear-gradient(135deg, var(--accent-400), var(--accent-600));
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.tech-feature-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.tech-service-price {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xl);
}

/* Automação Grid */
.tech-automation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

.automation-card {
  padding: var(--spacing-xl);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.tech-automation-icon {
  width: 80px;
  height: 80px;
  background: rgba(20, 107, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  transition: all 0.3s ease;
}

.tech-automation-icon img {
  width: 50%;
  height: auto;
  transition: transform 0.3s ease;
}

.text-gradient-icon {
  font-size: 2rem;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.automation-card:hover .tech-automation-icon {
  background: rgba(20, 107, 255, 0.2);
  transform: scale(1.1);
}

.automation-card:hover .tech-automation-icon img {
  transform: scale(1.1);
}

.automation-card h3 {
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
  font-weight: 600;
}

.automation-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Separador com Gradiente */
.tech-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 107, 255, 0.5), transparent);
  margin: var(--spacing-2xl) 0;
}

/* Call to Action Section */
.tech-cta-section {
  padding: var(--spacing-4xl) var(--spacing-xl);
  text-align: center;
  background-color: var(--dark-800);
  position: relative;
  overflow: hidden;
}

.tech-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tech-cta-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
}

.tech-cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

/* Footer */
.tech-footer {
  background-color: var(--dark-900);
  padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-xl);
  color: rgba(255, 255, 255, 0.7);
}

.tech-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.tech-footer-title {
  color: white;
  margin-bottom: var(--spacing-lg);
  font-size: 1rem;
  font-weight: 600;
}

.tech-footer-links {
  list-style: none;
}

.tech-footer-links li {
  margin-bottom: var(--spacing-md);
}

.tech-footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.tech-footer-link:hover {
  color: white;
}

.tech-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Animações */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(20, 107, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(20, 107, 255, 0.6);
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Página Sobre */
.tech-mission {
  display: flex;
  align-items: center;
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-4xl);
}

.tech-mission-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
  max-width: 500px;
}

.tech-mission-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tech-mission:hover .tech-mission-image img {
  transform: scale(1.03);
}

.tech-mission-content {
  flex: 1;
}

.tech-values {
  margin: var(--spacing-4xl) 0;
}

.tech-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.tech-value-card {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
  height: 100%;
}

.tech-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px -5px rgba(20, 107, 255, 0.3);
  border-color: rgba(20, 107, 255, 0.2);
}

.tech-value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(20, 107, 255, 0.1), rgba(0, 204, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.75rem;
  color: var(--accent-500);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(20, 107, 255, 0.2);
}

.tech-value-card:hover .tech-value-icon {
  background: linear-gradient(135deg, rgba(20, 107, 255, 0.2), rgba(0, 204, 255, 0.2));
  transform: scale(1.1);
}

.tech-value-card h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.tech-value-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tech-team {
  margin: var(--spacing-4xl) 0;
}

.tech-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.tech-team-member {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
}

.tech-team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px -10px rgba(20, 107, 255, 0.2);
  border-color: rgba(20, 107, 255, 0.2);
}

.tech-team-image {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-xl) 0;
}

.tech-profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(20, 107, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tech-team-member:hover .tech-profile-pic {
  border-color: var(--accent-500);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(20, 107, 255, 0.3);
}

.tech-team-info {
  padding: var(--spacing-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tech-team-info h4 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  text-align: center;
}

.tech-team-role {
  color: var(--accent-400);
  font-size: 1rem;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  font-weight: 500;
}

.tech-team-bio {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  flex-grow: 1;
}

.tech-team-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: auto;
}

.tech-social-link {
  width: 40px;
  height: 40px;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(20, 107, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tech-social-link:hover {
  background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
  transform: translateY(-3px);
  color: white;
}

/* Página Contato */
.tech-contact-container {
  display: flex;
  gap: var(--spacing-3xl);
  margin-top: var(--spacing-3xl);
}

.tech-contact-info {
  flex: 1;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.tech-contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  font-size: 1rem;
  line-height: 1.5;
}

.tech-contact-method {
  margin-bottom: var(--spacing-lg);
}

.tech-contact-method h4 {
  font-size: 1rem;
  margin-bottom: var(--spacing-xs);
  color: var(--accent-400);
  font-weight: 600;
}

.tech-contact-method p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.tech-contact-method a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.tech-contact-method a:hover {
  color: var(--accent-500);
}

.tech-contact-form {
  flex: 1.5;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.tech-contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xl);
  font-weight: 600;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-form-group {
  margin-bottom: var(--spacing-lg);
}

.tech-form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.tech-form-group input,
.tech-form-group select,
.tech-form-group textarea {
  width: 100%;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tech-form-group input:focus,
.tech-form-group select:focus,
.tech-form-group textarea:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 2px rgba(20, 107, 255, 0.2);
}

.tech-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Scheduling */
.tech-scheduling {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  margin-top: var(--spacing-4xl);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.tech-scheduling h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-scheduling p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tech-cal-wrapper {
  width: 100%;
  height: 600px;
  overflow: auto;
  border-radius: var(--radius-md);
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsividade */
@media (max-width: 1024px) {
  .tech-hero-title {
    font-size: 3rem;
  }
  
  .tech-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .tech-service-detail, 
  .tech-service-detail.reverse,
  .tech-mission {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .tech-service-image,
  .tech-mission-image {
    max-width: 100%;
  }
  
  .tech-team-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .tech-header nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .tech-hero-title {
    font-size: 2.25rem;
  }
  
  .tech-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .tech-hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .tech-section-title, 
  .tech-title-gradient,
  .tech-cta-title {
    font-size: 2rem;
  }
  
  .tech-section-title-small {
    font-size: 1.75rem;
  }
  
  .tech-service-title {
    font-size: 1.75rem;
  }
  
  .tech-service-description,
  .tech-text-lg {
    font-size: 1rem;
  }
  
  .tech-automation-grid,
  .tech-values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .tech-contact-info h3,
  .tech-contact-form h3,
  .tech-scheduling h2 {
    font-size: 1.5rem;
  }
  
  .tech-scheduling p {
    font-size: 1rem;
  }
  
  .tech-cal-wrapper {
    height: 500px;
  }
}

/* Página Obrigado */
.tech-thank-you-container { 
  max-width: 1000px; 
  margin: 0 auto; 
  padding: var(--spacing-2xl) var(--spacing-md); 
  text-align: center; 
}

/* Página Política de Privacidade */
.tech-privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--spacing-2xl);
}

.tech-privacy-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.tech-privacy-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xl);
}

.tech-privacy-container h2 {
  font-size: 1.5rem;
  margin: var(--spacing-xl) 0 var(--spacing-md);
  color: var(--accent-300);
  font-weight: 600;
}

.tech-privacy-container p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  line-height: 1.6;
}

.tech-privacy-container ul {
  margin: var(--spacing-md) 0 var(--spacing-lg) var(--spacing-xl);
}

.tech-privacy-container li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xs);
  font-size: 1rem;
  line-height: 1.5;
}

.tech-privacy-container a {
  color: var(--accent-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.tech-privacy-container a:hover {
  color: var(--accent-300);
  text-decoration: underline;
}

.tech-thank-you-icon { 
  margin-bottom: var(--spacing-xl); 
  display: flex;
  justify-content: center;
}

.tech-thank-you-message { 
  margin-bottom: var(--spacing-3xl); 
}

.tech-thank-you-message h3 { 
  font-size: 1.75rem; 
  margin-bottom: var(--spacing-lg); 
  color: var(--success);
  font-weight: 600;
}

.tech-thank-you-message p { 
  font-size: 1.125rem; 
  line-height: 1.6; 
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
}

.tech-thank-you-next-steps { 
  margin-bottom: var(--spacing-3xl); 
}

.tech-thank-you-next-steps h3 { 
  font-size: 1.5rem; 
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
}

.tech-next-steps-options { 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  margin-top: var(--spacing-xl); 
  gap: var(--spacing-md);
}

.tech-next-step-item { 
  flex: 1; 
  min-width: 250px;
  padding: var(--spacing-xl); 
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
}

.tech-next-step-item:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 10px 20px -5px rgba(20, 107, 255, 0.3);
  border-color: rgba(20, 107, 255, 0.2);
}

.tech-next-step-item h4 { 
  font-size: 1.25rem; 
  margin-bottom: var(--spacing-md); 
  color: white; 
  font-weight: 600;
}

.tech-next-step-item p { 
  margin-bottom: var(--spacing-lg); 
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.tech-return-home { 
  margin-top: var(--spacing-2xl); 
}

@media (max-width: 480px) {
  .tech-hero-title {
    font-size: 1.75rem;
  }
  
  .tech-hero-subtitle {
    font-size: 1rem;
  }
  
  .tech-section {
    padding: var(--spacing-3xl) var(--spacing-md);
  }
  
  .tech-section-title, 
  .tech-title-gradient,
  .tech-cta-title {
    font-size: 1.75rem;
  }
  
  .tech-text-lg,
  .tech-cta-text {
    font-size: 1rem;
  }
  
  .tech-automation-grid,
  .tech-values-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-next-steps-options {
    flex-direction: column;
  }
  
  .tech-next-step-item {
    margin: var(--spacing-md) 0;
  }
}