/* Variables */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --secondary: #10b981;
  --secondary-dark: #059669;
  --background: #f8fafc;
  --surface: #ffffff;
  --error: #ef4444;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --divider: #e2e8f0;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
  --border-radius: 10px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --container-width: 1200px;
  --header-height: 80px;
}

/* Sección Formar Cooperativa */
.cta-formar {
  background-color: var(--primary-light);
  color: white;
  padding: var(--spacing-lg) 0;
  text-align: center;
}
.cta-formar h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}
.cta-formar p {
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
  font-size: 1.1rem;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-wrapper .btn-primary {
  background-color: white !important;
  color: var(--primary) !important;
  border: 2px solid white !important;
  width: 200px !important;
  font-size: 0.95rem !important;
  padding: 0.75rem 1rem !important;
}

.btn-wrapper .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-dark) !important;
}
/* Calls Section - offset content below fixed header */
.calls {
  padding-top: var(--header-height);
  padding-bottom: var(--spacing-md);
  background-color: var(--surface);
}
/* Sección Formar Cooperativa - ajuste para visibilidad bajo header y estilo del formulario */
.formar-cooperativa {
  padding-top: var(--header-height);
  padding-bottom: var(--spacing-xl);
  background-color: var(--surface);
}
.formar-cooperativa .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.formar-cooperativa h1 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary);
  text-align: center;
}
.formar-cooperativa p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}
.formar-cooperativa form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.formar-cooperativa .form-field {
  display: flex;
  flex-direction: column;
}
.formar-cooperativa label {
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}
.formar-cooperativa input {
  padding: var(--spacing-sm);
  border: 1px solid var(--divider);
  border-radius: var(--border-radius);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Landing page paragraph spacing */
p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

/* Specific spacing for landing sections */
.hero p,
.features p,
.how-it-works p,
.pricing p,
.demo p,
.about p,
.contact p,
.how-we-help p,
.cta p {
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white !important;
  border: none;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(98, 0, 238, 0.05);
  transform: translateY(-2px);
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid var(--divider);
  transition: all 0.3s ease;
}

.header-scrolled {
  box-shadow: var(--shadow-medium);
  background-color: rgba(255, 255, 255, 0.98);
  height: 70px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1300px;
  padding: 0 var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
  margin-right: var(--spacing-lg);
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  margin-right: var(--spacing-xs);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.logo-icon i {
  color: white;
  font-size: 28px;
}

.logo-image {
  height: 40px;
  margin-right: var(--spacing-xs);
}

.logo-image-small {
  height: 30px;
  margin-right: var(--spacing-xs);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-text .org {
  color: var(--primary-light);
}

.main-nav ul {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.main-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.6rem 0.8rem;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary);
  background-color: rgba(37, 99, 235, 0.05);
  border-radius: var(--border-radius);
}

.login-item {
  margin-left: auto;
}

.login-btn {
  background-color: var(--primary);
  color: white !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: var(--border-radius);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.login-btn:hover {
  color: rgb(140, 0, 255) !important;
}

.mobile-menu-icon {
  display: none;
  cursor: pointer;
}

.mobile-menu-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--surface);
  box-shadow: var(--shadow-light);
  padding: var(--spacing-md) 0;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.mobile-menu li {
  padding: 0 var(--spacing-md);
}

.mobile-menu a {
  display: block;
  padding: var(--spacing-xs) 0;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.mobile-menu .login-item {
  margin-left: 0;
  margin-top: var(--spacing-md);
}

.mobile-menu .login-btn {
  display: inline-block;
}

/* Hero Section */
.hero {
  padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-xl);
  background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0) 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, rgba(96, 165, 250, 0) 70%);
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  max-width: 540px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
}

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

/* Features Section */
.features {
  padding: calc(var(--spacing-xl) * 1.5) 0;
  background-color: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background-color: var(--surface);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--divider);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  background-color: rgba(37, 99, 235, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 70%);
  top: 0;
  left: 0;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

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

.features-cta {
  margin-top: var(--spacing-xl);
  text-align: center;
  background-color: var(--surface);
  padding: var(--spacing-lg) 0;
}

.features-cta .btn-primary {
  display: inline-block;
  width: auto;
  min-width: 250px;
  max-width: 300px;
}

/* How We Help Section */
.how-we-help {
  background-color: var(--surface);
  padding: calc(var(--spacing-xl) * 1.5) 0;
  position: relative;
  overflow: hidden;
}

.how-we-help::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 70%);
  z-index: 0;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.help-card {
  background-color: var(--surface);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.help-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-light);
}

.help-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  background-color: rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.help-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 70%);
}

.help-icon i {
  font-size: 2rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.help-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.4rem;
  color: var(--primary-dark);
  position: relative;
}

.help-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-light);
}

.help-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
  flex-grow: 1;
  margin-top: var(--spacing-sm);
}

/* How It Works Section */
.how-it-works {
  padding: calc(var(--spacing-xl) * 1.5) 0;
  background-color: var(--background);
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -30px;
  width: 60px;
  height: 3px;
  background-color: var(--primary-light);
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
  position: relative;
  z-index: 2;
}

.step h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

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

/* Pricing Section */
.pricing {
  padding: calc(var(--spacing-xl) * 1.5) 0;
  background-color: var(--background);
}

.pricing-plans {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.pricing-plan {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  border: 1px solid var(--divider);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.pricing-plan.featured {
  border-color: var(--primary-light);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-plan.featured:hover {
  transform: translateY(-5px) scale(1.05);
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-bottom-left-radius: var(--border-radius);
}

.pricing-plan-header {
  padding: var(--spacing-lg);
  text-align: center;
  border-bottom: 1px solid var(--divider);
}

.plan-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
  line-height: 1;
}

.currency {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 600;
}

.period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

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

.price-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0.25rem 0 0.5rem 0;
  font-style: italic;
  opacity: 0.8;
}

.free-badge {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  display: block;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.forever {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  display: block;
}

.pricing-plan-features {
  padding: var(--spacing-lg);
  flex-grow: 1;
}

.pricing-plan-features ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.pricing-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-plan-features i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-plan-features strong {
  color: var(--primary-dark);
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin: 0 var(--spacing-lg) var(--spacing-lg);
  text-align: center;
}

.pricing-cta .btn-primary,
.pricing-cta .btn-secondary {
  width: auto;
  min-width: 160px;
  max-width: 200px;
  padding: 0.9rem 1.5rem;
}

.pricing-note {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--surface);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius);
  border: 1px dashed var(--primary-light);
}

.pricing-note p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 500;
}

/* Demo Section */
.demo {
  padding: calc(var(--spacing-xl) * 1.5) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.demo::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.demo::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.demo .section-header h2,
.demo .section-header p {
  color: white;
}

.demo .section-header p {
  opacity: 0.9;
}

.demo-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-info {
  flex: 1;
  max-width: 900px;
}

.demo-info.full-width {
  width: 100%;
}

.demo-info p {
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  text-align: center;
}

.demo-features {
  display: flex;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-feature {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
  z-index: 1;
}

.demo-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
}

.demo-feature i {
  font-size: 2rem;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 50%;
}

.demo-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 600;
}

.demo-feature p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  text-align: left;
}

.demo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--spacing-xl);
}

.demo-btn {
  background-color: white !important;
  color: var(--primary) !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: none;
}

.demo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: #f8fafc !important;
}

.demo-note {
  margin-top: var(--spacing-xs);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* About Section */
.about {
  padding: calc(var(--spacing-xl) * 1.5) 0;
  background-color: var(--background);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.about-image {
  flex: 1;
}

.about-image img {
  max-width: 100%;
}

.about-text {
  flex: 1;
}

.about-text.full-width {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.about-text p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: calc(var(--spacing-xl) * 1.5) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary);
}

.cta .btn-primary:hover {
  background-color: var(--background);
}

/* Contact Section */
.contact {
  padding: calc(var(--spacing-xl) * 1.5) 0;
  background-color: var(--surface);
}

.contact-wrapper {
  display: flex;
  gap: var(--spacing-xl);
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary);
}

.contact-item h3 {
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: var(--text-secondary);
}

.social-media {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--divider);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--error);
  background-color: rgba(239, 68, 68, 0.05);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  max-width: 300px;
}

.footer-logo .logo-text {
  color: white;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.footer-logo .org {
  color: var(--primary-light);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-xl);
}

.footer-column h3 {
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: #f0f4ff;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(45deg, #f0f4ff, #e8f2ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-bottom a:hover {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 8px rgba(240, 244, 255, 0.6);
  transform: translateY(-1px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .steps {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .step:not(:last-child)::after {
    top: auto;
    bottom: -40px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  
  .testimonials-slider {
    flex-direction: column;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .contact-wrapper {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  /* Fix for buttons */
  .btn-primary, .btn-secondary {
    display: inline-block;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-icon {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .btn-primary, .btn-secondary {
    display: inline-block;
    text-align: center;
  }
  
  .btn-wrapper .btn-primary {
    width: 200px !important;
    font-size: 0.9rem !important;
    padding: 0.75rem 0.75rem !important;
  }
  
  /* Fix for pricing plan buttons on mobile */
  .pricing-plan {
    margin: 0 var(--spacing-xs);
    min-width: 260px;
  }
  
  .pricing-plan-header {
    padding: var(--spacing-md);
  }
  
  .pricing-plan-features {
    padding: var(--spacing-md);
  }
  
  .pricing-cta {
    margin: 0 var(--spacing-xs) var(--spacing-md);
  }
  
  .pricing-cta .btn-primary,
  .pricing-cta .btn-secondary {
    min-width: 140px;
    max-width: 180px;
    box-sizing: border-box;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.2;
    min-height: auto;
  }
}

/* Extra small devices (phones, less than 400px) */
@media (max-width: 400px) {
  .pricing-plan {
    margin: 0 5px;
    min-width: 240px;
  }
  
  .pricing-cta {
    margin: 0 10px 20px 10px;
  }
  
  .pricing-cta .btn-primary,
  .pricing-cta .btn-secondary {
    min-width: 120px;
    max-width: 150px;
    padding: 0.6rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: -0.01em;
  }
  
  .pricing-plan-features li {
    font-size: 0.85rem;
  }
}

/* Carousel Styles */
.screenshots .carousel {
  position: relative;
  overflow: hidden;
}
.screenshots .carousel-inner {
  position: relative;
}
.screenshots .carousel-item {
  display: none;
  /* Rounded corners for carousel items */
  border-radius: var(--border-radius);
  overflow: hidden;
}
/* Ensure inner images also inherit rounded corners */
.screenshots .carousel-item img {
  border-radius: var(--border-radius);
}
.screenshots .carousel-item.active {
  display: block;
}
.screenshots .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.screenshots .carousel-control.prev {
  left: 10px;
}
.screenshots .carousel-control.next {
  right: 10px;
}
.screenshots .carousel-control:focus {
  outline: none;
}
.screenshots .carousel-control i {
  font-size: 24px;
}
/* Sección Capturas de Pantalla: mismo fondo azul que CTA Formar Cooperativa */
.screenshots {
  background-color: var(--primary-light);
  color: white;
  padding: var(--spacing-lg) 0;
  text-align: center;
}
.screenshots h2 {
  color: white;
  margin-bottom: var(--spacing-md);
}

/* ================================================
   SECONDARY PAGES STYLES
   ================================================ */

/* Hero Secondary */
.hero-secondary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  text-align: center;
}

.hero-secondary h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-secondary p {
  font-size: 1.3rem;
  color: white !important;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-color: var(--surface);
  padding: calc(var(--spacing-xl) * 1.5) 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-secondary h1 {
    font-size: 2.2rem;
  }
  
  .hero-secondary p {
    font-size: 1.1rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ================================================
   FORMAR COOPERATIVA PAGE STYLES
   ================================================ */

/* Hero Section */
.hero-formar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  display: flex;
  align-items: center;
}

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

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: white !important;
  font-weight: 400;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

.feature-item i {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1.25rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: white;
  color: var(--text-primary);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-medium);
  text-align: center;
  max-width: 300px;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.floating-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.floating-card p {
  color: var(--text-secondary);
  margin: 0;
}

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

/* Proceso Section */
.proceso-section {
  padding: 4rem 0;
  background: var(--background);
}

.proceso-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

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

.step {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Beneficios Section */
.beneficios-section {
  padding: 4rem 0;
  background: white;
}

.beneficios-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

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

.beneficio-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.beneficio-card:hover {
  transform: translateY(-3px);
}

.beneficio-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.beneficio-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.beneficio-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Calls Section */
.calls-section {
  padding: 4rem 0;
  background: var(--background);
}

.calls-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.calls-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

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

.call-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.call-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.call-header i {
  background: var(--primary-light);
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1.25rem;
}

.call-header h3 {
  margin: 0;
  color: var(--text-primary);
}

.call-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.call-dates {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.call-dates i {
  font-size: 1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Form Section */
.form-section {
  padding: 4rem 0;
  background: white;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.form-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.benefit-item i {
  color: var(--secondary);
  font-size: 1.25rem;
}

/* Requirements Section */
.requirements-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
}

.requirements-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

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

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 0.75rem;
  border: 1px solid var(--divider);
  transition: all 0.3s ease;
}

.requirement-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.requirement-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.requirement-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.requirement-item strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.requirement-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-container {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-light);
}

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

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group label i {
  color: var(--primary);
  font-size: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--divider);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group small {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

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

/* Alert Styles */
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.alert i {
  font-size: 1.25rem;
}

/* SURLINK Section */
.surlink {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #a3a071 0%, #b8b088 100%);
  position: relative;
  overflow: hidden;
}

.surlink::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.surlink .section-header h2 {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.surlink .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.surlink-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.surlink-info {
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  box-sizing: border-box;
}

.surlink-logo {
  margin-bottom: 2rem;
}

.surlink-logo h3 {
  font-size: 2.5rem;
  color: #7d7c5a;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(125, 124, 90, 0.1);
}

.surlink-logo .tagline {
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 500;
}

.surlink-info .description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.surlink-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.surlink-features .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #f5f4f0;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.surlink-features .feature:hover {
  background: #ede8d8;
  transform: translateY(-2px);
}

.surlink-features .feature i {
  font-size: 2.5rem;
  color: #7d7c5a;
  margin-bottom: 0.5rem;
}

.surlink-features .feature span {
  font-weight: 600;
  color: #1e293b;
}

.surlink-cta {
  display: flex;
  justify-content: center;
}

.btn-surlink {
  background: #7d7c5a;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(125, 124, 90, 0.25);
}

.btn-surlink:hover {
  background: #6b6a4f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(125, 124, 90, 0.35);
  color: white;
}

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

/* SURLINK Alternative Section */
.surlink-alt {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f5f4f0 0%, #ede8d8 100%);
  position: relative;
}

.surlink-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(125, 124, 90, 0.1);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(125, 124, 90, 0.1);
}

.surlink-icon {
  margin-bottom: 1.5rem;
}

.surlink-icon i {
  font-size: 3rem;
  color: #7d7c5a;
  background: #f5f4f0;
  padding: 1rem;
  border-radius: 50%;
  display: inline-block;
}

.surlink-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.surlink-card p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.surlink-card .btn-secondary {
  background: white;
  color: #7d7c5a;
  border: 2px solid #7d7c5a;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.surlink-card .btn-secondary:hover {
  background: #7d7c5a;
  color: white;
  box-shadow: 0 4px 12px rgba(125, 124, 90, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .proceso-steps {
    grid-template-columns: 1fr;
  }
  
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  
  .calls-grid {
    grid-template-columns: 1fr;
  }
  
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-intro {
    text-align: center;
  }
  
  .form-intro h2 {
    font-size: 2rem;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .requirement-item {
    padding: 0.75rem;
  }
  
  .requirement-item i {
    font-size: 1.25rem;
  }
  
  /* SURLINK responsive - Tablets and small laptops */
  .surlink-content {
    padding: 0 1.5rem;
  }
  
  .surlink-info {
    padding: 2rem 1.5rem;
  }
  
  .surlink-logo h3 {
    font-size: 2rem;
  }
  
  .surlink-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .surlink-features .feature {
    padding: 1.25rem;
  }
  
  .surlink-features .feature i {
    font-size: 2rem;
  }
  
  .surlink-cta .btn-surlink {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Mobile phones - SURLINK specific optimizations */
@media (max-width: 480px) {
  .surlink {
    padding: 2rem 0;
  }
  
  .surlink-content {
    padding: 0 0.75rem;
  }
  
  .surlink-info {
    padding: 1.25rem 1rem;
    border-radius: 0.75rem;
  }
  
  .surlink-logo {
    margin-bottom: 1.5rem;
  }
  
  .surlink-logo h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
  }
  
  .surlink-logo .tagline {
    font-size: 1rem;
  }
  
  .surlink-info .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
  }
  
  .surlink-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .surlink-features .feature {
    padding: 1rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
  
  .surlink-features .feature i {
    font-size: 1.75rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .surlink-features .feature span {
    font-size: 0.95rem;
    align-self: center;
  }
  
  .surlink-cta .btn-surlink {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

/* Extra small mobile phones */
@media (max-width: 375px) {
  .surlink-content {
    padding: 0 0.5rem;
  }
  
  .surlink-info {
    padding: 1rem 0.75rem;
  }
  
  .surlink-logo h3 {
    font-size: 1.5rem;
  }
  
  .surlink-logo .tagline {
    font-size: 0.9rem;
  }
  
  .surlink-info .description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .surlink-features .feature {
    padding: 0.75rem;
  }
  
  .surlink-features .feature i {
    font-size: 1.5rem;
  }
  
  .surlink-features .feature span {
    font-size: 0.9rem;
  }
  
  .surlink-cta .btn-surlink {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}
