/* ===== PHARMAFORTE STYLES ===== */

/* ===== HEADER STYLES ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
  z-index: 1000;
  padding: 1.25rem 0;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 50%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 0.5rem;
  pointer-events: none;
}

.header-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
  transform: scale(1.05) translateY(-1px);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(220, 38, 38, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.btn-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-header:hover::before {
  left: 100%;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(220, 38, 38, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-header i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-header:hover i {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .logo-img {
    height: 45px;
  }
  
  .btn-header {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    border-radius: 0.5rem;
  }
  
  .btn-header span {
    display: none;
  }
  
  .btn-header i {
    font-size: 1.2rem;
  }
  
  .header {
    padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 0.75rem;
  }
  
  .logo-img {
    height: 38px;
  }
  
  .btn-header {
    padding: 0.625rem 0.875rem;
  }
}

/* Importar fontes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Variáveis CSS */
:root {
  --primary: #DC2626;
  --secondary: #DC2626;
  --navy: #0F172A;
  --neutral-dark: #0F172A;
  --neutral-light: #E2E8F0;
  --surface-light: #F8FAFC;
}

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Noto Sans, sans-serif;
  color: var(--neutral-dark);
  background-color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utility classes */
.rounded-button-important { 
  border-radius: 9999px !important; 
}

.rounded-button { 
  border-radius: 9999px; 
}

/* Glassmorphism helpers */
.glass-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226,232,240,0.7);
}

.glass-input {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(226,232,240,0.8);
  outline: none;
}

.glass-input:focus {
  box-shadow: 0 0 0 4px rgba(220,38,38,0.15);
  border-color: var(--primary);
}

.soft-shadow { 
  box-shadow: 0 10px 30px rgba(2,8,23,0.06); 
}

.timeline-line {
  background: linear-gradient(90deg, rgba(220,38,38,0.2), rgba(217,76,95,0.2));
}

.bg-surface-light { 
  background-color: var(--surface-light); 
}

.bg-navy { 
  background-color: var(--navy); 
}

.text-navy { 
  color: var(--navy); 
}

/* Decorative background for team section */
.modern-bg {
  background:
    radial-gradient(1200px 600px at 100% 0%, rgba(220,38,38,0.07), transparent),
    radial-gradient(800px 400px at 0% 100%, rgba(217,76,95,0.07), transparent);
}

.modern-line {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(220,38,38,0.4), rgba(255,255,255,0));
  filter: blur(0.5px);
}

.modern-line-1 { 
  top: 20%; 
  transform: rotate(2deg); 
}

.modern-line-2 { 
  top: 80%; 
  transform: rotate(-2deg); 
}

/* FAQ animation */
.faq-content { 
  transition: height .3s ease; 
}

/* Navigation */
.navbar {
  width: 100%;
  background-color: rgba(128, 128, 128, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(156, 163, 175, 0.2);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 3rem;
  width: auto;
  max-width: 220px;
}

.nav-links {
  display: none;
}

.nav-links a {
  color: var(--neutral-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
  background-color: rgba(27, 111, 227, 0.08);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 80%;
}

/* Flags styling removed */

.nav-button {
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(27, 111, 227, 0.15);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-button:hover {
  background: linear-gradient(135deg, #991B1B 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.nav-button:hover::before {
  left: 100%;
}

.nav-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(27, 111, 227, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, var(--primary) 0%, #DC2626 100%);
  color: white;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 111, 227, 0.3);
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #B91C1C 0%, var(--primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 111, 227, 0.4);
}

/* Mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 40;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem;
  right: 0;
  width: 16rem;
  background-color: white;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  color: var(--neutral-dark);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(248, 250, 252, 0.95) 25%, 
    rgba(239, 246, 255, 0.9) 50%, 
    rgba(220, 38, 38, 0.05) 75%, 
    rgba(255, 255, 255, 1) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5rem 0;
  margin-top: 100px; /* Compensar header fixo maior */
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.01) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  pointer-events: none;
  opacity: 0.8;
}

.hero-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.metric-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 160px;
}

.metric-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.metric-badge:hover::before {
  left: 100%;
}

.metric-primary {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(27, 111, 227, 0.15) 100%);
  color: var(--primary);
}

.metric-primary:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(27, 111, 227, 0.25) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
}

.metric-primary:hover .metric-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.metric-blue {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
  color: #DC2626;
}

.metric-blue:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.25) 0%, rgba(220, 38, 38, 0.25) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.25);
  border-color: rgba(220, 38, 38, 0.4);
}

.metric-blue:hover .metric-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.metric-icon i {
  font-size: 1.25rem;
  color: currentColor;
}

.metric-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.metric-label {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.metric-badge:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

/* Animações avançadas para hero metrics */
.metric-ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.metric-activated {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.3) !important;
}

.metric-animate-in {
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



/* Hero Content Wrapper */
.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Hero Header */
.hero-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--neutral-dark);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-title-highlight {
  display: block;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Stats Grid Moderno */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(220, 38, 38, 0.1);
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.1), 
    rgba(185, 28, 28, 0.05), 
    rgba(220, 38, 38, 0.1));
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, 
    rgba(220, 38, 38, 0.08), 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.12),
    0 8px 25px rgba(220, 38, 38, 0.15);
}

.hero-stat-card:hover::before {
  opacity: 1;
}

.hero-stat-card:hover::after {
  opacity: 1;
}

.hero-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), #FF4757);
  border-radius: 0.75rem;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.hero-stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  line-height: 1;
  margin: 0;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(15,23,42,0.8);
  line-height: 1.5;
  max-width: 42rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Botões Modernos com Glassmorphism */
.btn {
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  letter-spacing: 0.025em;
  min-height: 3.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Botão Primário */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF4757 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B91C1C 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.5);
}

/* Botão Outline */
.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--neutral-dark);
  border: 2px solid rgba(220, 38, 38, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn-outline:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
  color: var(--primary);
}

.btn-outline:active {
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

/* Botão Navy */
.btn-navy {
  background: linear-gradient(135deg, var(--navy) 0%, #1E293B 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-navy:hover {
  background: linear-gradient(135deg, #1E293B 0%, var(--navy) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-navy:active {
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.5);
}

/* Botões do Hero */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF6B6B 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  max-width: 300px;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #B91C1C 0%, var(--primary) 100%);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:active {
  transform: scale(0.95);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.5);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.15);
  color: var(--neutral-dark);
  border: 2px solid rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  max-width: 300px;
}

.btn-hero-outline:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  color: var(--primary);
}

.btn-hero-outline:active {
  transform: scale(0.95);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

/* Estilos para ícones nos botões */
.btn i {
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.btn:hover i {
  transform: translateX(2px);
}

.btn-hero-primary:hover i {
  transform: translateX(4px);
}

.btn-hero-outline:hover i {
  transform: translateX(2px);
}

/* Botão de Formulário */
.form-submit {
  background: linear-gradient(135deg, var(--primary) 0%, #FF4757 100%);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 3.5rem;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  background: linear-gradient(135deg, #B91C1C 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.form-submit:active {
  transform: scale(0.95);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.5);
}

.form-submit:disabled {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Botão loading states */
.btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn-loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Botão de Navegação */
.nav-button {
  background: linear-gradient(135deg, var(--primary) 0%, #FF4757 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 3.5rem;
}

.nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.nav-button:hover::before {
  left: 100%;
}

.nav-button:hover {
  background: linear-gradient(135deg, #B91C1C 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-button:active {
  transform: scale(0.95);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.5);
}

/* Botão Mobile Menu */
.mobile-menu-toggle {
  background: linear-gradient(135deg, var(--primary) 0%, #FF4757 100%);
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.mobile-menu-toggle:hover::before {
  left: 100%;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #B91C1C 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.5);
}

.hero-image {
  position: relative;
}

.hero-image-container {
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.75rem;
}

.play-button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.play-button:hover {
  background-color: rgba(255,255,255,0.3);
}

/* Selo de verificação */
.verification-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.verification-badge i {
  font-size: 1rem;
  color: white;
}

.verification-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Fund section */
.fund-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, 
    rgba(255,255,255,1) 0%, 
    rgba(255,255,255,0.95) 20%, 
    rgba(255,255,255,0.9) 40%, 
    rgba(255,255,255,0.85) 60%, 
    rgba(255,255,255,0.9) 80%, 
    rgba(255,255,255,0.95) 90%, 
    rgba(255,255,255,1) 100%);
  position: relative;
  overflow: hidden;
}

.fund-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to bottom, 
    rgba(255,255,255,1), 
    rgba(255,255,255,0.8), 
    transparent);
  z-index: 1;
}

.fund-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to top, 
    rgba(255,255,255,1), 
    rgba(255,255,255,0.8), 
    transparent);
  z-index: 1;
}

.fund-bg {
  position: absolute;
  inset: 0;
  background: 
    /* Gradiente principal para transição suave */
    linear-gradient(to bottom, 
      rgba(255,255,255,0.8) 0%, 
      rgba(255,255,255,0.4) 15%, 
      rgba(255,255,255,0.1) 30%, 
      transparent 50%, 
      rgba(255,255,255,0.1) 70%, 
      rgba(255,255,255,0.4) 85%, 
      rgba(255,255,255,0.8) 100%),
    /* Padrão de fundo com vermelho */
    radial-gradient(ellipse 800px 400px at 20% 30%, rgba(220,38,38,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 600px 300px at 80% 70%, rgba(217,76,95,0.06) 0%, transparent 50%),
    radial-gradient(circle 400px at 50% 20%, rgba(220,38,38,0.04) 0%, transparent 50%);
}

.fund-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    /* Linhas decorativas diagonais */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(220,38,38,0.03) 40px,
      rgba(220,38,38,0.03) 42px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(217,76,95,0.02) 60px,
      rgba(217,76,95,0.02) 62px
    );
  opacity: 0.7;
}

.fund-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    /* Elementos geométricos sutis */
    radial-gradient(circle 2px at 15% 25%, rgba(220,38,38,0.15) 0%, transparent 50%),
    radial-gradient(circle 3px at 85% 35%, rgba(217,76,95,0.12) 0%, transparent 50%),
    radial-gradient(circle 2.5px at 25% 75%, rgba(220,38,38,0.1) 0%, transparent 50%),
    radial-gradient(circle 1.5px at 75% 65%, rgba(217,76,95,0.08) 0%, transparent 50%);
  animation: subtle-float 20s ease-in-out infinite;
}

@keyframes subtle-float {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-5px) scale(1.05); 
    opacity: 1;
  }
}

/* Elementos decorativos flutuantes */
.fund-decorative {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.fund-decorative-1 {
  top: 15%;
  left: 8%;
  width: 4rem;
  height: 4rem;
  border: 2px solid rgba(220,38,38,0.1);
  border-radius: 50%;
  transform: rotate(45deg);
  animation: float-1 12s ease-in-out infinite;
}

.fund-decorative-2 {
  top: 25%;
  right: 12%;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(45deg, rgba(217,76,95,0.08), rgba(220,38,38,0.05));
  border-radius: 50%;
  animation: float-2 8s ease-in-out infinite reverse;
}

.fund-decorative-3 {
  bottom: 20%;
  left: 15%;
  width: 2.5rem;
  height: 2.5rem;
  border: 1.5px solid rgba(220,38,38,0.08);
  transform: rotate(30deg);
  animation: float-3 15s ease-in-out infinite;
}

.fund-decorative-4 {
  bottom: 30%;
  right: 20%;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, rgba(217,76,95,0.06), rgba(220,38,38,0.04));
  border-radius: 50%;
  animation: float-4 10s ease-in-out infinite reverse;
}

@keyframes float-1 {
  0%, 100% { transform: rotate(45deg) translateY(0px) scale(1); }
  50% { transform: rotate(45deg) translateY(-15px) scale(1.1); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
  50% { transform: translateY(10px) scale(1.15) rotate(180deg); }
}

@keyframes float-3 {
  0%, 100% { transform: rotate(30deg) translateY(0px) scale(1); }
  50% { transform: rotate(30deg) translateY(-12px) scale(1.05); }
}

@keyframes float-4 {
  0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
  50% { transform: translateY(8px) scale(1.1) rotate(90deg); }
}

.fund-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.fund-header {
  text-align: center;
  margin-bottom: 4rem;
}

.fund-subtitle {
  color: rgba(220,38,38,0.8);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.fund-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.fund-description {
  font-size: 1.125rem;
  color: rgba(15,23,42,0.7);
  max-width: 42rem;
  margin: 0 auto;
}

.fund-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fund-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 240, 240, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 1.5rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(220, 38, 38, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.fund-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.6), 
    rgba(185, 28, 28, 0.4), 
    rgba(220, 38, 38, 0.6));
  border-radius: 1.5rem;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fund-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, 
    rgba(220, 38, 38, 0.2), 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fund-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 240, 240, 0.3);
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 
    0 25px 60px rgba(220, 38, 38, 0.25),
    0 0 0 1px rgba(220, 38, 38, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.fund-card:hover::before {
  opacity: 1;
}

.fund-card:hover::after {
  opacity: 1;
}

.fund-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(220,38,38,0.08), 
    rgba(217,76,95,0.06), 
    rgba(185,28,28,0.04));
  border-radius: 1.5rem;
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fund-card:hover .fund-card-bg {
  opacity: 1;
}

.fund-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.2), 
    rgba(185, 28, 28, 0.15), 
    rgba(220, 38, 38, 0.1));
  border-radius: 1rem;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(220, 38, 38, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.fund-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.4), 
    rgba(255, 255, 255, 0.1));
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fund-icon i {
  font-size: 1.875rem;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.fund-card:hover .fund-icon {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.3), 
    rgba(185, 28, 28, 0.25), 
    rgba(220, 38, 38, 0.2));
  box-shadow: 
    0 15px 35px rgba(220, 38, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(220, 38, 38, 0.5);
}

.fund-card:hover .fund-icon::before {
  opacity: 1;
}

.fund-card:hover .fund-icon i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  color: #991b1b;
}

/* Animação de entrada para os cards */
.fund-card {
  animation: card-enter 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fund-card:nth-child(1) { animation-delay: 0.1s; }
.fund-card:nth-child(2) { animation-delay: 0.2s; }
.fund-card:nth-child(3) { animation-delay: 0.3s; }
.fund-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes card-enter {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fund-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.fund-label {
  color: var(--neutral-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.fund-description-small {
  font-size: 0.875rem;
  color: rgba(15,23,42,0.7);
}

/* Strategy section */
.strategy-section {
  padding: 4rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.strategy-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(217,76,95,0.05), transparent 50%);
}

.strategy-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}



.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.strategy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.strategy-main-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.1;
  text-align: left;
  letter-spacing: -0.02em;
}

.strategy-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: left;
}

.strategy-header .highlight {
  display: block;
  color: rgba(220,38,38,0.9);
  margin-top: 0.75rem;
}

.strategy-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.strategy-step {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.9) 50%, 
    rgba(255, 255, 255, 0.95) 100%);
  border-radius: 1.5rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
  animation: float-card 4s ease-in-out infinite;
}

.strategy-step:nth-child(1) {
  animation-delay: 0s;
  border-left: 4px solid #3b82f6;
}

.strategy-step:nth-child(2) {
  animation-delay: 1.5s;
  border-left: 4px solid #10b981;
}

.strategy-step:nth-child(3) {
  animation-delay: 3s;
  border-left: 4px solid #f59e0b;
}

.strategy-step:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Hover effects removed for cleaner design */

.strategy-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(59, 130, 246, 0.8) 50%, 
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.strategy-step:nth-child(1)::before {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(59, 130, 246, 0.8) 50%, 
    transparent 100%);
}

.strategy-step:nth-child(2)::before {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(16, 185, 129, 0.8) 50%, 
    transparent 100%);
}

.strategy-step:nth-child(3)::before {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(245, 158, 11, 0.8) 50%, 
    transparent 100%);
}

/* Line animation removed for cleaner design */

.strategy-step-bg {
  position: absolute;
  inset: -0.25rem;
  background: linear-gradient(to right, rgba(220,38,38,0.1), rgba(217,76,95,0.1));
  border-radius: 1rem;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

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

@keyframes border-flow {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  25% { 
    background-position: 100% 50%; 
  }
  50% { 
    background-position: 100% 100%; 
  }
  75% { 
    background-position: 0% 100%; 
  }
}

/* Background glow effect removed for cleaner design */

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

.strategy-step-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.strategy-step-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}

.strategy-step:nth-child(1) .strategy-step-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.strategy-step:nth-child(2) .strategy-step-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.strategy-step:nth-child(3) .strategy-step-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.strategy-step-icon i {
  font-size: 2rem;
  transition: all 0.4s ease;
}

.strategy-step:hover .strategy-step-icon {
  transform: scale(1.02);
}

/* Icon hover effects removed for cleaner design */

.strategy-step:nth-child(1) .strategy-step-icon i {
  color: #3b82f6;
}

.strategy-step:nth-child(2) .strategy-step-icon i {
  color: #10b981;
}

.strategy-step:nth-child(3) .strategy-step-icon i {
  color: #f59e0b;
}

.strategy-step-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.strategy-step-text p {
  color: rgba(15,23,42,0.7);
}

.strategy-image {
  position: relative;
}

.strategy-image-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 1.5rem;
}

.strategy-image img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transition: transform 0.5s ease;
  display: block;
  margin: 0 auto;
}

.strategy-image img:hover {
  transform: scale(1.02);
}

/* Portugal section */
.portugal-section {
  padding: 6rem 0;
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 1) 0%, 
      rgba(248, 250, 252, 0.95) 25%, 
      rgba(239, 246, 255, 0.9) 50%, 
      rgba(220, 38, 38, 0.08) 75%, 
      rgba(255, 255, 255, 1) 100%);
  position: relative;
  overflow: hidden;
}

.portugal-bg-1 {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 800px 400px at 20% 30%, rgba(220,38,38,0.06) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(220,38,38,0.02) 40px, rgba(220,38,38,0.02) 42px);
  opacity: 0.8;
}

.portugal-bg-2 {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 600px at 80% 70%, rgba(59,130,246,0.04) 0%, transparent 50%),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(59,130,246,0.015) 60px, rgba(59,130,246,0.015) 62px);
  opacity: 0.6;
}

.portugal-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.portugal-header {
  text-align: center;
  margin-bottom: 4rem;
}

.portugal-subtitle {
  color: rgba(220,38,38,0.8);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.portugal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.portugal-description {
  font-size: 1.125rem;
  color: rgba(15,23,42,0.7);
  max-width: 42rem;
  margin: 0 auto;
}

.portugal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portugal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portugal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portugal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.portugal-card:hover::before {
  transform: scaleX(1);
}

.portugal-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}



.portugal-icon i {
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.portugal-card:hover .portugal-icon {
  transform: scale(1.05);
  background: #b91c1c;
}



.portugal-card:hover .portugal-icon i {
  transform: scale(1.1);
  color: white;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.portugal-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.portugal-card p {
  color: rgba(15,23,42,0.7);
  line-height: 1.6;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  padding: 6rem 0;
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,250,250,0.98) 100%),
    radial-gradient(1200px 800px at 50% 0%, rgba(220,38,38,0.08), transparent),
    radial-gradient(800px 600px at 100% 100%, rgba(217,76,95,0.06), transparent);
  position: relative;
  overflow: hidden;
}

.timeline-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(220,38,38,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217,76,95,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.timeline-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.timeline-header-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(217,76,95,0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(220,38,38,0.3);
  box-shadow: 0 8px 32px rgba(220,38,38,0.2);
}

.timeline-header-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.timeline-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 50%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(220,38,38,0.1);
}

.timeline-subtitle {
  font-size: 1.25rem;
  color: rgba(15,23,42,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== NEW TIMELINE JOURNEY DESIGN ===== */
.timeline-journey {
  position: relative;
  margin: 4rem 0;
}

.journey-start,
.journey-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.journey-start {
  margin-bottom: 3rem;
}

.journey-end {
  margin-top: 3rem;
}

.journey-start-icon,
.journey-end-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
}

.journey-start-icon {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.journey-end-icon {
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.journey-start span,
.journey-end span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin: 2rem 0;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(50px);
}

.timeline-step.active {
  opacity: 1;
  transform: translateX(0);
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
  position: relative;
  z-index: 2;
}

.step-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 
    0 20px 40px rgba(2,8,23,0.08),
    0 0 0 1px rgba(220,38,38,0.05);
  transition: all 0.4s ease;
  flex: 1;
  max-width: 500px;
}

.timeline-step.active .step-content {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(2,8,23,0.12),
    0 0 0 2px rgba(220,38,38,0.1);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(217,76,95,0.1));
  border: 2px solid rgba(220,38,38,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.timeline-step.active .step-icon {
  background: linear-gradient(135deg, rgba(220,38,38,0.2), rgba(217,76,95,0.2));
  border-color: var(--primary);
  transform: scale(1.1);
}

.step-info {
  flex: 1;
}

.step-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.timeline-step.active .step-info h3 {
  color: var(--primary);
}

.step-info p {
  font-size: 0.9rem;
  color: rgba(15,23,42,0.7);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.step-duration {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  background: rgba(220,38,38,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 0.5rem;
  display: inline-block;
  border: 1px solid rgba(220,38,38,0.2);
  transition: all 0.3s ease;
}

.timeline-step.active .step-duration {
  background: rgba(220,38,38,0.15);
  border-color: rgba(220,38,38,0.3);
  transform: scale(1.05);
}

/* ===== PROGRESS BAR ===== */
.timeline-progress {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(220,38,38,0.1);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid rgba(220,38,38,0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, 
    var(--primary) 0%, 
    #b91c1c 25%, 
    #dc2626 50%, 
    #b91c1c 75%, 
    var(--primary) 100%);
  border-radius: 9999px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 
    0 0 10px rgba(220, 38, 38, 0.3),
    0 0 20px rgba(220, 38, 38, 0.2);
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.3), 
    transparent);
  border-radius: 9999px;
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.8), 
    transparent);
  border-radius: 9999px;
  transition: all 0.5s ease;
  opacity: 0;
  filter: blur(1px);
}

.progress-glow.active {
  opacity: 1;
  width: 100%;
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(1);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.05);
  }
}

.progress-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-dark);
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.progress-text.complete {
  color: var(--primary);
  transform: scale(1.05);
}

/* Estados da progress bar */
.progress-bar.loading .progress-fill {
  animation: progressPulse 1.5s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.progress-bar.complete .progress-fill {
  background: linear-gradient(90deg, 
    #10B981 0%, 
    #059669 50%, 
    #10B981 100%);
  box-shadow: 
    0 0 15px rgba(16, 185, 129, 0.4),
    0 0 30px rgba(16, 185, 129, 0.2);
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .timeline-section {
    padding: 4rem 0;
  }
  
  .timeline-container {
    padding: 0 1rem;
  }
  
  .timeline-header {
    margin-bottom: 3rem;
  }
  
  .timeline-title {
    font-size: 2.5rem;
  }
  
  .timeline-subtitle {
    font-size: 1.1rem;
  }
  
  .timeline-steps {
    gap: 1.5rem;
  }
  
  .timeline-step {
    flex-direction: column !important;
    gap: 1rem;
    text-align: center;
  }
  
  .step-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .step-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  
  .step-info h3 {
    font-size: 1rem;
  }
  
  .step-info p {
    font-size: 0.85rem;
  }
  
  .step-duration {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
  
  .journey-start-icon,
  .journey-end-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
  
  .journey-start span,
  .journey-end span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .timeline-steps {
    gap: 1rem;
  }
  
  .step-content {
    padding: 0.75rem;
  }
  
  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.timeline-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2), 
    rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-icon i {
  font-size: 2rem;
  color: white !important;
  z-index: 1;
  transition: all 0.4s ease;
  display: block !important;
  opacity: 1 !important;
}

.timeline-item:hover .timeline-icon {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

.timeline-item:hover .timeline-icon::before {
  opacity: 1;
}

.timeline-item:hover .timeline-icon i {
  transform: scale(1.1);
  color: white !important;
}

/* Fallback para ícones que possam não estar carregando */
.timeline-icon i:not([class*="ri-"]) {
  content: "●";
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  color: white !important;
}

/* Garantir que todos os ícones Remix sejam visíveis */
.timeline-icon i[class*="ri-"] {
  color: white !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* Fallback adicional para ícones específicos */
.timeline-icon i.ri-bank-card-line,
.timeline-icon i.ri-fingerprint-line,
.timeline-icon i.ri-send-plane-fill,
.timeline-icon i.ri-passport-fill {
  color: white !important;
  font-size: 2rem !important;
}

.timeline-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

.timeline-item p {
  font-size: 0.875rem;
  color: rgba(15,23,42,0.7);
  line-height: 1.5;
}

/* Team section */
.team-section {
  padding: 6rem 0;
  background: 
    radial-gradient(1200px 800px at 100% 0%, rgba(220,38,38,0.08), transparent),
    radial-gradient(1000px 600px at 0% 100%, rgba(217,76,95,0.06), transparent),
    linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,250,250,0.98) 100%);
  position: relative;
  overflow: hidden;
}

.team-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(220,38,38,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217,76,95,0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(220,38,38,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.team-header-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(217,76,95,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(220,38,38,0.2);
}

.team-header-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.team-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neutral-dark) 0%, rgba(15,23,42,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-subtitle {
  font-size: 1.25rem;
  color: rgba(15,23,42,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}

.team-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  box-shadow: 
    0 20px 40px rgba(2,8,23,0.08),
    0 0 0 1px rgba(220,38,38,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 2rem;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(217,76,95,0.8));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 60px rgba(2,8,23,0.12),
    0 0 0 1px rgba(220,38,38,0.1);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-photo-placeholder {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 2px dashed rgba(220, 38, 38, 0.3);
  border-radius: 9999px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-photo-placeholder:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(185, 28, 28, 0.1));
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-2px);
}

.team-photo-placeholder i {
  font-size: 2rem;
  color: rgba(220, 38, 38, 0.6);
  transition: all 0.3s ease;
}

.team-photo-placeholder:hover i {
  color: rgba(220, 38, 38, 0.8);
  transform: scale(1.1);
}

/* ===== TEAM SECTION ===== */
.team-photo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 3px solid rgba(220,38,38,0.15);
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(220,38,38,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), rgba(217,76,95,0.8));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.team-photo:hover {
  border-color: transparent;
  transform: scale(1.05);
}

.team-photo:hover::after {
  opacity: 1;
}

.team-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  pointer-events: none;
}

.status-badge {
  background: linear-gradient(135deg, var(--primary), rgba(217,76,95,0.8));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(220,38,38,0.3);
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.expertise-tag {
  background: rgba(220,38,38,0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(220,38,38,0.2);
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  background: rgba(220,38,38,0.15);
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-1px);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .team-container {
    padding: 0 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .team-card {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
  }
  
  .team-title {
    font-size: 2rem;
  }
  
  .team-subtitle {
    font-size: 1.1rem;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  .team-role {
    font-size: 0.9rem;
  }
  
  .team-description {
    font-size: 0.8rem;
  }
  
  .expertise-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(220,38,38,0.05));
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  font-size: 0.875rem;
  color: rgba(15,23,42,0.7);
  margin-bottom: 1rem;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.team-linkedin:hover {
  color: #b91c1c;
}

.team-linkedin i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

/* FAQ section */
.faq-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(248, 250, 252, 0.95) 50%, 
    rgba(255, 255, 255, 1) 100%);
  position: relative;
}

.faq-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.faq-header-icon i {
  font-size: 2rem;
  color: white;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 1.25rem;
  color: rgba(15,23,42,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 2rem;
}

.faq-item.active + .faq-item {
  margin-top: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 38, 38, 0.15);
}

.faq-item.active {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 16px 48px rgba(220, 38, 38, 0.12);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  margin-bottom: 1.5rem;
}

.faq-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--primary), 
    #b91c1c, 
    var(--primary));
  opacity: 0.9;
  border-radius: 1.25rem 1.25rem 0 0;
}

.faq-question {
  width: 100%;
  padding: 2rem 2.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  user-select: none;
  outline: none;
}

.faq-question:hover {
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.03) 0%, 
    rgba(220, 38, 38, 0.01) 100%);
}

.faq-question.active {
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.08) 0%, 
    rgba(220, 38, 38, 0.03) 100%);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.faq-question-icon {
  font-size: 1.5rem;
  color: var(--primary);
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-icon {
  font-size: 1.75rem;
  color: var(--primary);
  transform: rotate(0deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 0.75rem;
}

.faq-icon.rotated,
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2.5rem 3rem 5rem;
  color: rgba(15,23,42,0.8);
  display: none;
  line-height: 1.7;
  font-size: 1.05rem;
  position: relative;
  margin: 0 2.5rem;
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.02) 0%, 
    rgba(220, 38, 38, 0.01) 100%);
  transition: all 0.3s ease;
  border-top: 1px solid rgba(220, 38, 38, 0.12);
}

.faq-answer.show,
.faq-item.active .faq-answer {
  display: block !important;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact section */
.contact-section {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 1);
  color: var(--neutral-dark);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 1200px 600px at 30% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 1000px 500px at 70% 50%, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  animation: waveFloat 25s ease-in-out infinite;
  opacity: 0.8;
}

.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 800px 400px at 50% 60%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 600px 300px at 20% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 400px 200px at 80% 20%, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  animation: waveFloat 30s ease-in-out infinite reverse;
  opacity: 0.7;
}

.contact-section .liquid-accent {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 400px;
  background: 
    radial-gradient(ellipse 2000px 400px at 50% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 1500px 300px at 30% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 1800px 350px at 70% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 65%);
  animation: waveFloat 20s ease-in-out infinite;
  opacity: 0.8;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-section .liquid-accent-2 {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse 200px 200px, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  animation: waveFloat 18s ease-in-out infinite reverse;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes waveFloat {
  0%, 100% { 
    transform: translateX(0) translateY(0) scale(1); 
  }
  25% { 
    transform: translateX(-20px) translateY(-5px) scale(1.02); 
  }
  50% { 
    transform: translateX(15px) translateY(-8px) scale(0.98); 
  }
  75% { 
    transform: translateX(-10px) translateY(3px) scale(1.01); 
  }
}

@keyframes liquidFloat {
  0%, 100% { 
    transform: translateX(0) translateY(0) scale(1) rotate(0deg); 
  }
  25% { 
    transform: translateX(-8px) translateY(-4px) scale(1.01) rotate(1deg); 
  }
  50% { 
    transform: translateX(4px) translateY(-6px) scale(0.99) rotate(-0.5deg); 
  }
  75% { 
    transform: translateX(-6px) translateY(3px) scale(1.005) rotate(0.5deg); 
  }
}

.contact-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.contact-header {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-header-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.contact-header-icon i {
  font-size: 1.25rem;
  color: white;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--neutral-dark);
}

.contact-subtitle {
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.7);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

.contact-content {
  padding-right: 2rem;
}



.contact-info {
  margin-bottom: 2rem;
}

.contact-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(220, 38, 38, 0.2);
  position: relative;
}

.contact-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateX(3px);
}

.contact-info-item i {
  font-size: 1.25rem;
  color: var(--primary);
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  color: var(--neutral-dark);
}

.contact-info-item a,
.contact-info-item p {
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
  margin: 0;
  font-weight: 500;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-benefits {
  margin-bottom: 2rem;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
}

.contact-feature:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
}

.contact-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-feature-icon i {
  font-size: 1rem;
  color: white;
}

.contact-feature h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  color: var(--neutral-dark);
}

.contact-feature p {
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.6);
  margin: 0;
}

.contact-cta {
  text-align: center;
  margin-top: 0.5rem;
}

.contact-cta-btn {
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.contact-cta-btn i {
  font-size: 0.875rem;
}

/* ===== CONTACT SCHEDULE SECTION ===== */
.contact-schedule-section {
  margin-top: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 1.5rem;
  border: 1px solid #86efac;
  text-align: center;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-schedule-section .contact-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(34, 197, 94, 0.3);
  position: relative;
}

.contact-schedule-section .contact-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 1px;
}

.schedule-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.5rem;
}

.schedule-header p {
  color: #15803d;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.schedule-header {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.schedule-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3) !important;
  border: none;
  cursor: pointer;
}

.btn-schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4) !important;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
}

.btn-schedule:active {
  transform: scale(0.95) !important;
  background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.5) !important;
}

.btn-schedule:focus {
  outline: 2px solid rgba(34, 197, 94, 0.5) !important;
  outline-offset: 2px !important;
}

.btn-schedule i {
  font-size: 1.25rem;
}

.schedule-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.schedule-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #15803d;
  font-size: 0.9rem;
}

.schedule-benefit i {
  color: #22c55e;
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-schedule-section {
    margin-top: 1.5rem;
    padding: 2rem;
    min-height: 350px;
  }
  
  .contact-schedule-section .contact-section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .schedule-header h3 {
    font-size: 1.125rem;
  }
  
  .schedule-header {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .schedule-content {
    gap: 2rem;
  }
  
  .schedule-benefits {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-schedule {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.03) 50%, transparent 70%),
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.form-header p {
  font-size: 0.875rem;
  color: rgba(15,23,42,0.7);
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.form-label .required {
  color: var(--primary);
  font-weight: 700;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 0.75rem;
  color: var(--neutral-dark);
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Quick Contact Info Sidebar */
.contact-quick-info {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(220, 38, 38, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.quick-info-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(220, 38, 38, 0.1);
}

.quick-info-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.quick-info-header p {
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.9rem;
}

.quick-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.quick-contact-item:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateX(3px);
}

.quick-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.quick-item-icon i {
  font-size: 1rem;
  color: white;
}

.quick-item-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.25rem;
}

.quick-item-content a {
  font-size: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.quick-item-content a:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.quick-urgent {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quick-urgent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #b91c1c, var(--primary));
  animation: urgentPulse 2s ease-in-out infinite;
}

.urgent-icon-small {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 0.5rem;
  margin: 0 auto 0.75rem;
}

.urgent-icon-small i {
  font-size: 1rem;
  color: white;
}

.urgent-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.urgent-text p {
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 0.75rem;
}

.urgent-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.urgent-btn:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background-color: white;
  box-shadow: 
    0 0 0 3px rgba(220, 38, 38, 0.1),
    0 4px 12px rgba(220, 38, 38, 0.08);
  transform: translateY(-1px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(15, 23, 42, 0.4);
}

.form-textarea {
  height: 4rem;
  resize: none;
  line-height: 1.5;
}

/* Radio button styles */
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.form-radio:hover {
  background-color: rgba(220, 38, 38, 0.03);
  border-color: rgba(220, 38, 38, 0.1);
  transform: translateX(2px);
}

.form-radio input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.form-radio input[type="radio"]:checked + .radio-custom {
  border-color: var(--primary);
  background-color: var(--primary);
}

.form-radio input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  background-color: white;
  border-radius: 50%;
}

.form-radio span:last-child {
  font-size: 0.75rem;
  color: var(--neutral-dark);
  font-weight: 500;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  color: white;
  padding: 1rem 2rem;
  border-radius: 1rem;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
  letter-spacing: 0.01em;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25);
  background: linear-gradient(135deg, #b91c1c, var(--primary));
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-submit i {
  font-size: 0.875rem;
}

.form-privacy {
  font-size: 0.625rem;
  color: rgba(15,23,42,0.6);
  text-align: center;
  margin-top: 0.5rem;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.form-privacy a:hover {
  text-decoration: underline;
}

/* Removed old contact-direct styles */

/* Responsive design */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-content {
    padding-right: 0;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }
  
  .contact-section {
    padding: 0.75rem 0;
  }
  
  .faq-title,
  .contact-title {
    font-size: 2.5rem;
  }
  
  .faq-container,
  .contact-container {
    padding: 0 1rem;
  }
  
  .faq-header {
    margin-bottom: 3rem;
  }
  
  .contact-header {
    margin-bottom: 0.75rem;
  }
  
  .contact-features {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }
  
  .contact-feature {
    padding: 0.25rem;
  }
  
  .contact-form-container {
    padding: 0.75rem 0.5rem;
  }
  
  .contact-info {
    margin-bottom: 1.5rem;
  }
  
  .contact-info-item {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .form-radio-group {
    gap: 0.125rem;
  }
  
  .form-radio {
    padding: 0.125rem;
  }
}

/* Removed old contact-direct styles */

/* Footer */
.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 1.5rem 0 1rem;
  margin-top: 2rem;
  border-top: 1px solid #334155;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Footer Content */
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 0;
}

.footer-logo-img {
  height: 45px;
  width: auto;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.5;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1e293b;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: #94a3b8;
  border: 1px solid #334155;
}

.social-link:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-1px);
  border-color: #dc2626;
}

.social-link i {
  font-size: 1.1rem;
}

/* Widgets Section */
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-widget {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.widget-title {
  color: #f8fafc;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #475569;
}

.widget-title i {
  color: #dc2626;
  font-size: 1.1rem;
}

.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widget-list li {
  margin: 0;
}

.widget-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

.widget-list a:hover {
  color: #dc2626;
}

/* Contact Widgets */
.contact-widgets {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-widget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.contact-widget:hover {
  color: #dc2626;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #dc2626;
  border-radius: 4px;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

.contact-value:hover {
  color: var(--primary);
}

.contact-location {
  margin-bottom: 1rem;
}

.location-description {
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Contact Map */
.contact-map {
  margin-top: 0.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 250px;
  max-width: 100%;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.copyright {
  color: #94a3b8;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-main {
    gap: 1.5rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-description {
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-main {
    gap: 1.5rem;
  }
  
  .footer-widgets {
    gap: 1.5rem;
  }
  
  .contact-widget {
    padding: 0.5rem;
  }
  
  .contact-icon {
    width: 30px;
    height: 30px;
  }
}

/* Responsive design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-actions {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .fund-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .portugal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 300px);
    gap: 3rem;
    justify-content: center;
    margin: 0 auto;
  }
  
  .timeline-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Utility classes */
.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Mobile responsive */

/* Contact Section Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 1rem 0;
  }
  
  .contact-container {
    padding: 0 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-quick-info {
    order: 3;
    margin-top: 2rem;
  }
  

  
  .contact-content {
    padding-right: 0;
    order: 2;
  }
  
  .contact-form-container {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .contact-header {
    margin-bottom: 1.5rem;
  }
  
  .contact-title {
    font-size: 1.75rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .contact-info {
    margin-bottom: 1.5rem;
  }
  
  .contact-info-item {
    padding: 1rem;
    margin-bottom: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .contact-info-item i {
    font-size: 1.5rem;
    width: auto;
  }
  
  .contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .contact-info-item a,
  .contact-info-item p {
    font-size: 1rem;
  }
  
  .contact-benefits {
    margin-bottom: 1.5rem;
  }
  
  .contact-features {
    gap: 1rem;
  }
  
  .contact-feature {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .contact-feature-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .contact-feature h4 {
    font-size: 1rem;
  }
  
  .contact-feature p {
    font-size: 0.875rem;
  }
  
  .contact-location {
    margin-bottom: 1.5rem;
  }
  
  .location-description {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .contact-map {
    height: 250px;
  }
  
  .contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
  }
  
  .form-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .form-header h3 {
    font-size: 1.25rem;
  }
  
  .form-header p {
    font-size: 0.875rem;
  }
  
  .contact-form {
    gap: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group {
    margin-bottom: 0;
  }
  
  .form-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  .form-radio-group {
    gap: 0.75rem;
  }
  
  .form-radio {
    padding: 0.5rem;
  }
  
  .form-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 0.75rem 0;
  }
  
  .contact-container {
    padding: 0 0.75rem;
  }
  
  .contact-title {
    font-size: 1.5rem;
  }
  
  .contact-subtitle {
    font-size: 0.9rem;
  }
  
  .contact-info-item {
    padding: 0.75rem;
  }
  
  .contact-info-item i {
    font-size: 1.25rem;
  }
  
  .contact-info-item h4 {
    font-size: 0.9rem;
  }
  
  .contact-info-item a,
  .contact-info-item p {
    font-size: 0.9rem;
  }
  
  .contact-feature {
    padding: 0.75rem;
  }
  
  .contact-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .contact-feature h4 {
    font-size: 0.9rem;
  }
  
  .contact-feature p {
    font-size: 0.8rem;
  }
  
  .contact-map {
    height: 200px;
  }
  
  .form-header h3 {
    font-size: 1.1rem;
  }
  
  .form-header p {
    font-size: 0.8rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.625rem;
    font-size: 0.9rem;
  }
  
  .form-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== FEEDBACK SECTION ===== */
.feedback-section {
  padding: 4rem 0;
  background: #fafafa;
}

.feedback-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feedback-header {
  text-align: center;
  margin-bottom: 3rem;
}

.feedback-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.feedback-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1000px;
}

.feedback-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feedback-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e31b46, #D94C5F);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feedback-card:hover::before {
  transform: scaleX(1);
}

.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(227, 27, 70, 0.2);
}

.feedback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.feedback-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #e31b46, #D94C5F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(227, 27, 70, 0.3);
}

.feedback-avatar i {
  font-size: 1.25rem;
  color: white;
}

.feedback-rating {
  display: flex;
  gap: 0.2rem;
}

.feedback-rating i {
  color: #FBBF24;
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 3px rgba(251, 191, 36, 0.3));
}

.feedback-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.feedback-text::before {
  content: '"';
  font-size: 2.5rem;
  color: rgba(227, 27, 70, 0.2);
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-family: serif;
}

.feedback-author h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.feedback-author p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}



/* Feedback Section Mobile Responsive */
@media (max-width: 768px) {
  .feedback-section {
    padding: 2.5rem 0;
  }
  
  .feedback-container {
    padding: 0 1rem;
  }
  
  .feedback-header {
    margin-bottom: 2rem;
  }
  
  .feedback-title {
    font-size: 2rem;
  }
  
  .feedback-subtitle {
    font-size: 1rem;
  }
  
  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .feedback-card {
    padding: 1.75rem;
  }
  
  .feedback-avatar {
    width: 3rem;
    height: 3rem;
  }
  
  .feedback-avatar i {
    font-size: 1.1rem;
  }
  
  .feedback-rating i {
    font-size: 1rem;
  }
  
  .feedback-text {
    font-size: 0.95rem;
  }
  

}

@media (max-width: 480px) {
  .feedback-section {
    padding: 2rem 0;
  }
  
  .feedback-container {
    padding: 0 0.75rem;
  }
  
  .feedback-title {
    font-size: 1.75rem;
  }
  
  .feedback-subtitle {
    font-size: 0.9rem;
  }
  
  .feedback-carousel {
    gap: 0.75rem;
  }
  
  .feedback-card {
    padding: 1.5rem;
  }
  
  .feedback-rating i {
    font-size: 1rem;
  }
  
  .feedback-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .feedback-icon i {
    font-size: 1.1rem;
  }
  
  .feedback-text {
    font-size: 0.9rem;
  }
  

}

/* Team Section Mobile Responsive */
@media (max-width: 768px) {
  .team-section {
    padding: 2rem 0;
  }
  
  .team-container {
    padding: 0 1rem;
  }
  
  .team-header {
    margin-bottom: 2rem;
  }
  
  .team-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .team-subtitle {
    font-size: 1.1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .team-card {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
  }
  
  .team-photo-img {
    width: 100%;
    height: 100%;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  .team-role {
    font-size: 0.9rem;
  }
  
  .team-description {
    font-size: 0.8rem;
  }
  
  .team-linkedin {
    font-size: 0.9rem;
  }
  
  .team-linkedin i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 1.5rem 0;
  }
  
  .team-container {
    padding: 0 0.75rem;
  }
  
  .team-title {
    font-size: 1.5rem;
  }
  
  .team-subtitle {
    font-size: 1rem;
  }
  
  .team-grid {
    max-width: 100%;
    gap: 1rem;
  }
  
  .team-card {
    padding: 1.25rem;
  }
  
  .team-photo {
    width: 4.5rem;
    height: 4.5rem;
  }
  
  .team-photo-img {
    width: 100%;
    height: 100%;
  }
  
  .team-name {
    font-size: 1rem;
  }
  
  .team-role {
    font-size: 0.85rem;
  }
  
  .team-description {
    font-size: 0.75rem;
  }
}

/* Strategy Section Mobile Responsive */
@media (max-width: 768px) {
  .strategy-section {
    padding: 3rem 0;
  }
  
  .strategy-container {
    padding: 0 1rem;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .strategy-image {
    order: 2;
    margin: 2rem auto;
    max-width: 80%;
  }
  
  .strategy-content {
    order: 1;
  }
  
  .strategy-header {
    order: 1;
  }
  
  .strategy-steps {
    order: 3;
  }
  
  .strategy-main-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .strategy-subtitle {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .strategy-steps {
    gap: 1.5rem;
  }
  
  .strategy-step {
    padding: 1.25rem;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .strategy-step-text h3 {
    font-size: 1.25rem;
  }
  
  .strategy-step-text p {
    font-size: 0.95rem;
  }
}

/* Fund Section Mobile Responsive */
@media (max-width: 768px) {
  .fund-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }
  
  .fund-card:nth-child(1) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .fund-card:nth-child(2),
  .fund-card:nth-child(3),
  .fund-card:nth-child(4) {
    justify-self: center;
  }
}

/* Specific mobile landscape adjustments */
@media (max-width: 768px) and (max-height: 800px) {
  .fund-grid {
    justify-items: center;
    align-items: center;
  }
  
  .fund-card:nth-child(1) {
    grid-column: 1 / -1;
    justify-self: center;
    align-self: center;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Specific width adjustments for mobile devices */
@media (max-width: 420px) {
  .fund-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
  }
  
  .fund-card:nth-child(1) {
    grid-column: 1;
    justify-self: center;
    align-self: center;
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
  }
  
  .fund-card:nth-child(2),
  .fund-card:nth-child(3),
  .fund-card:nth-child(4) {
    justify-self: center;
    align-self: center;
    max-width: 260px;
    width: 100%;
  }
}

/* iPhone and iOS specific fixes */
@supports (-webkit-touch-callout: none) {
  .fund-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .fund-card:nth-child(1) {
    order: 1;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }
  
  .fund-card:nth-child(2) {
    order: 2;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }
  
  .fund-card:nth-child(3) {
    order: 3;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }
  
  .fund-card:nth-child(4) {
  order: 4;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}
}

/* Additional iPhone landscape fixes */
@media screen and (max-width: 896px) and (max-height: 414px) {
  .fund-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .fund-card {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .strategy-section {
    padding: 2rem 0;
  }
  
  .strategy-container {
    padding: 0 0.75rem;
  }
  
  .strategy-main-title {
    font-size: 2rem;
  }
  
  .strategy-subtitle {
    font-size: 1.25rem;
  }
  
  .strategy-steps {
    gap: 1rem;
  }
  
  .strategy-step {
    padding: 1rem;
  }
  
  .strategy-step-text h3 {
    font-size: 1.1rem;
  }
  
  .strategy-step-text p {
    font-size: 0.9rem;
  }
  
  .fund-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
  }
  
  .fund-card:nth-child(1) {
    grid-column: 1;
    justify-self: center;
    align-self: center;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
  .hero-actions {
    align-items: center;
    justify-content: center;
  }
  
  .btn-hero-primary,
  .btn-hero-outline {
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .btn-hero-primary,
  .btn-hero-outline {
    margin: 0 auto;
    text-align: center;
    max-width: 280px;
    width: 100%;
  }
}

/* Print styles */
@media print {
  .navbar,
  .mobile-menu,
  .mobile-menu-overlay,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  body {
    color: black;
    background: white;
  }
  
  .glass-card,
  .glass-input {
    background: white !important;
    box-shadow: none !important;
  }
}


