/* ========================================
   SEÇÃO HERO - PORTAL DE INGRESSO UFR 2026
   ======================================== */

/* Container Principal */
.hero-section {
  position: relative;
  padding-top: 96px;
  padding-bottom: 64px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Background Gradient */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, transparent 50%, rgba(16, 185, 129, 0.05) 100%);
  pointer-events: none;
}

/* Círculos Decorativos */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-circle-top {
  top: 80px;
  right: 0;
  width: 384px;
  height: 384px;
  background-color: rgba(0, 102, 204, 0.1);
}

.hero-circle-bottom {
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background-color: rgba(16, 185, 129, 0.1);
}

/* Container */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Conteúdo Textual */
.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

/* Título */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Descrição */
.hero-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 1023px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Botões */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.3s;
  animation-fill-mode: both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {
  .hero-buttons {
    justify-content: center;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.hero-btn span {
  display: inline-block;
}

@media (max-width: 640px) {
  .hero-btn {
    font-size: 0.875rem;
    padding: 11px 18px;
    gap: 6px;
  }
  
  .hero-btn svg:first-child,
  .hero-btn svg:last-child {
    width: 16px;
    height: 16px;
  }
}

.hero-btn-primary {
  background-color: #0066cc;
  color: #ffffff;
  border: 2px solid #0066cc;
}

.hero-btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
}

.hero-btn-outline {
  background-color: transparent;
  color: #0066cc;
  border: 2px solid #0066cc;
}

.hero-btn-outline:hover {
  background-color: #0066cc;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
}

.hero-arrow {
  transition: transform 0.3s ease;
}

.hero-btn:hover .hero-arrow {
  transform: translateX(4px);
}

/* Estatísticas */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

.hero-stat-item {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-stat-item {
    text-align: left;
  }
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-stat-primary {
  color: #0066cc;
}

.hero-stat-secondary {
  color: #10b981;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

/* Imagem Hero */
.hero-image-wrapper {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 102, 204, 0.2) 100%);
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-section {
    padding-top: 128px;
    padding-bottom: 96px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 64px;
    padding-bottom: 48px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-btn {
    padding: 12px 20px;
    font-size: 0.9375rem;
  }
}