/* ========================================
   LANDING PAGE - Geovane Monteiro
   ======================================== */

:root {
  --primary-color: #1e40af;
  --secondary-color: #3b82f6;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* ========================================
   SCROLLBAR PERSONALIZADA
   ======================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 0.75rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* ========================================
   BOTÕES
   ======================================== */

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: var(--gradient-secondary);
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-outline-light {
  border: 3px solid var(--white);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::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 1000 100" fill="white" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
  background-size: cover;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image i {
  font-size: 12rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
  background: var(--white);
  padding: 80px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: 20px 20px 0 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.service-benefits {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.service-benefits h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-benefits ul {
  list-style: none;
  padding: 0;
}

.service-benefits li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
}

.service-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* ========================================
   CNPJ TOOL SECTION
   ======================================== */

.cnpj-highlight-section {
  margin: 60px 0;
}

.cnpj-iframe-box {
  border: 4px solid var(--primary-color);
  border-radius: 18px;
  padding: 0;
  background: var(--bg-light);
  width: 340px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,64,175,0.07);
}

.cnpj-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: filter 0.4s;
  background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
}

.acessar-cnpj-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  font-weight: 600;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(30,64,175,0.13);
}

.cnpj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  display: none;
  z-index: 1;
}

/* ========================================
   DEVOPS TOOLS SECTION
   ======================================== */

.devops-section {
  background: #f4f8ff;
  padding: 80px 0;
}

.devops-tool-card {
  text-align: center;
  padding: 1.5rem;
  height: 100%;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}

.devops-tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tool-hover-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.93);
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
  pointer-events: none;
}

.tool-hover-group:hover .tool-hover-actions {
  opacity: 1;
  pointer-events: auto;
}

.tool-hover-actions .btn {
  pointer-events: auto;
  z-index: 3;
  transition: all 0.3s ease;
}

.tool-hover-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Garantir que os botões sejam clicáveis */
.devops-tool-card {
  position: relative;
  overflow: hidden;
}

.devops-tool-card:hover .tool-hover-actions {
  opacity: 1;
  pointer-events: auto;
}

.tool-hover-group .tool-hover-actions .btn {
  margin-bottom: 0.5rem;
}

.tool-hover-group .tool-hover-actions .btn:last-child {
  margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  padding: 100px 0;
  background: var(--bg-light);
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.testimonial-avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial-company {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.form-control {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-control.is-invalid {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.invalid-feedback {
  display: block;
  color: var(--danger-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.alert {
  border-radius: 12px;
  border: none;
  padding: 1.5rem;
  margin-top: 2rem;
}

.alert-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.alert-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info i {
  width: 20px;
  color: var(--accent-color);
}

.social-links {
  margin-top: 2rem;
}

.social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   NOTIFICATIONS
   ======================================== */

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  animation: slideInRight 0.3s ease-out;
}

.notification-success {
  background: var(--gradient-success);
  color: white;
}

.notification-error {
  background: var(--danger-color);
  color: white;
}

.notification-info {
  background: var(--gradient-secondary);
  color: white;
}

.notification-content {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-content i {
  font-size: 1.2rem;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.notification-close:hover {
  opacity: 1;
}

.notification.fade-out {
  animation: slideOutRight 0.3s ease-in forwards;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* ========================================
   LOADING ANIMATION
   ======================================== */

.loading {
  opacity: 0;
  transform: translateY(20px);
}

.loaded {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cnpj-iframe-box {
    width: 280px;
    height: 200px;
  }

  .devops-tool-card {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

/* ========================================
   MODAIS BOOTSTRAP - FALLBACK
   ======================================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1055;
  background-color: transparent;
}

.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  min-height: 100vh;
}

.modal-dialog {
  margin: 0 !important;
  position: relative;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  max-width: 500px;
  width: 100%;
  z-index: 1060;
  pointer-events: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
}

.modal-open {
  overflow: hidden;
}

.btn-close {
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.btn-close:hover {
  opacity: 1;
}

/* Garantir que modais sejam visíveis */
.modal.show .modal-dialog {
  transform: none !important;
}

.modal.show .modal-content {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Debug: destacar modais */
.modal.show {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

@media (max-width: 600px) {
  .modal-dialog {
    max-width: 95vw;
    width: 95vw;
  }
}

/* Modal customizado DevOps */
.custom-modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 90vw;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(30,64,175,0.18);
  position: relative;
  text-align: left;
}

.custom-modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e40af;
}

.custom-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-modal-close:hover {
  color: #1e40af;
  background: rgba(30, 64, 175, 0.1);
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .custom-modal-content {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}

/* ========================================
   SEÇÃO SOBRE
   ======================================== */

.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.about-image img {
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

.avatar-fallback {
  transition: all 0.3s ease;
  cursor: pointer;
}

.avatar-fallback:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

.about-content {
  padding-left: 2rem;
}

.about-highlight {
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

/* Ícones de tecnologia flutuantes */
.tech-icon {
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-icon:hover {
  transform: scale(1.2) !important;
  z-index: 10;
}

/* Animações diferentes para cada ícone */
.tech-icon-1 { animation-delay: 0s; }
.tech-icon-2 { animation-delay: 0.5s; }
.tech-icon-3 { animation-delay: 1s; }
.tech-icon-4 { animation-delay: 1.5s; }
.tech-icon-5 { animation-delay: 2s; }
.tech-icon-6 { animation-delay: 2.5s; }
.tech-icon-7 { animation-delay: 3s; }
.tech-icon-8 { animation-delay: 3.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Animação especial para ícones centralizados */
.tech-icon-5 {
  animation: floatCenter 4s ease-in-out infinite;
}

.tech-icon-6 {
  animation: floatCenter 4s ease-in-out infinite reverse;
}

@keyframes floatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Animação especial para ícones laterais */
.tech-icon-7 {
  animation: floatRight 3.5s ease-in-out infinite;
}

.tech-icon-8 {
  animation: floatLeft 3.5s ease-in-out infinite;
}

@keyframes floatRight {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50% { transform: translateY(-50%) translateX(8px); }
}

@keyframes floatLeft {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50% { transform: translateY(-50%) translateX(-8px); }
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    text-align: center;
  }
  
  .about-image img {
    width: 200px !important;
    height: 200px !important;
  }
  
  /* Ícones menores no mobile */
  .tech-icon i {
    font-size: 1.5rem !important;
    padding: 6px !important;
  }
} 