/*
 * LatamConnect - Component Styles
 * Specific component styling for enhanced maintainability
 */

/* ==========================================================================
   Header Components
   ========================================================================== */

.header-wrapper {
  /* Add any header-specific styles here if needed */
}

/* ==========================================================================
   Navigation Components  
   ========================================================================== */

.brix---header-nav-link-4 {
  /* Navigation link styles can be enhanced here */
}

/* ==========================================================================
   Button Components
   ========================================================================== */

.brix---btn-primary-small-3,
.uui-button-secondary-gray-7 {
  /* Button component styles can be enhanced here */
}

/* ==========================================================================
   Card Components
   ========================================================================== */

.startup-card,
.talent-card {
  /* Card component base styles */
  border-radius: 8px;
  transition: all 0.3s ease;
}

.startup-card:hover,
.talent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Form Components
   ========================================================================== */

.brix---input-small {
  /* Form input styling can be enhanced here */
}

.w-form-done {
  /* Success message styling */
}

.w-form-fail {
  /* Error message styling */
}

/* ==========================================================================
   Footer Components
   ========================================================================== */

.brix---footer-subscribe-card {
  /* Footer subscription form styling */
}