/* Estilos para la página principal */
:root {
  --primary-green: #4CAF50;
  --light-green: #81C784;
  --dark-green: #388E3C;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --text-dark: #333333;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  overflow-y: hidden;
  padding-top: 0;
}

.home-hero {
  display: flex;
  height: calc(100vh - 60px);
  padding: 60px 2rem 0 2rem;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.home-content {
  flex: 1;
  max-width: 600px;
  padding: 1.2rem 2rem;
}

.home-content h1 {
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-content .brand {
  color: var(--primary-green);
  font-weight: 800;
}

.home-content .subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.home-content .sena {
  color: var(--primary-green);
  font-weight: 600;
}

/* Botones mejorados */
.home-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  align-items: center;
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(76,175,80,0.10);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
  font-family: 'Work Sans', Arial, sans-serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--dark-green);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(76,175,80,0.18);
  transform: translateY(-2px) scale(1.04);
}

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

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--dark-green);
  box-shadow: 0 6px 18px rgba(76,175,80,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Responsive para botones */
@media (max-width: 480px) {
  .home-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }
}

/* Eliminar estilos de enlaces de texto en la home */
.home-links, .home-link, .home-link-sep {
  display: none !important;
}

.home-illustration {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.home-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Animaciones */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-down {
  animation: slideDown 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-pop-in {
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .home-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0.5rem 0 0.5rem;
    min-height: calc(100vh - 60px);
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    gap: 0;
  }

  .home-content {
    padding: 0.5rem 0.5rem 0 0.5rem;
    order: 1;
    max-width: 95vw;
    margin: 1.5rem auto 0 auto;
  }

  .home-content h1 {
    font-size: 2.5rem;
  }

  .home-buttons {
    justify-content: center;
  }

  .home-illustration {
    margin-top: 0 !important;
    padding: 0 !important;
  }
  .home-illustration img {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .home-hero {
    padding: 60px 0.2rem 0 0.2rem;
    min-height: calc(100vh - 60px);
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .home-content {
    padding: 0.2rem 0.2rem 0 0.2rem;
    max-width: 98vw;
    margin: 1.2rem auto 0 auto;
  }
  .home-illustration {
    margin-top: 0 !important;
    padding: 0 !important;
  }
  .home-illustration img {
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    max-width: 100%;
    height: auto;
  }
  .home-content h1 {
    font-size: 1.5rem;
  }
  .home-content .subtitle {
    font-size: 0.95rem;
  }
}

/* Enlaces de texto en la home */
.home-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.home-link {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  }

.home-link:hover {
  color: var(--dark-green);
  border-bottom: 2px solid var(--primary-green);
}

.home-link-sep {
  color: var(--primary-green);
  font-size: 1.1rem;
  opacity: 0.7;
} 