/* Estilos para o site Sicoob - Empréstimo Educacional */

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

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  background-color: #f9fafb;
  line-height: 1.5;
}

/* Container principal */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: #00C247;
  color: white;
}

.btn-primary:hover {
  background-color: #00a63c;
}

.btn-icon {
  margin-left: 8px;
}

/* Hero section */
.hero {
  background: linear-gradient(90deg, #002d4c, #003f66);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00C247;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 194, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00C247;
}

.hero-feature-text {
  font-size: 0.9rem;
}

.hero-feature-text strong {
  display: block;
  font-weight: 600;
}

/* Form card */
.form-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  border: 2px solid #00C247;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002d4c;
  margin-bottom: 5px;
  text-align: center;
}

.form-subtitle {
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #F3F4F6;
  transition: border-color 0.2s ease;
  text-align: center;
}

.form-input:focus {
  outline: none;
  border-color: #00C247;
}

.form-help {
  font-size: 0.8rem;
  color: #6B7280;
  text-align: center;
  margin-top: 5px;
}

.form-button {
  width: 100%;
  padding: 15px;
  background-color: #00C247;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.form-button:hover {
  background-color: #00a63c;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #6B7280;
}

/* Benefits section */
.benefits {
  padding: 60px 0;
  background-color: white;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #002d4c;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #6B7280;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-card {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card-highlight {
  border: 2px solid #00C247;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-title-highlight {
  color: #00C247;
}

.benefit-text {
  color: #6B7280;
}

/* Stats section */
.stats {
  padding: 60px 0;
  background-color: #f9fafb;
}

.stats-container {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00C247;
  margin-bottom: 5px;
}

.stat-label {
  color: #6B7280;
}

/* Footer */
.footer {
  background-color: #002d4c;
  color: white;
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-text {
  color: #E5E7EB;
  margin-bottom: 20px;
  max-width: 400px;
}

.footer-contact {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E5E7EB;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-links-column {
  min-width: 160px;
}

.footer-links-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links-list {
  list-style: none;
}

.footer-link {
  margin-bottom: 10px;
}

.footer-link a {
  color: #E5E7EB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link a:hover {
  color: #00C247;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-disclaimer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E5E7EB;
  font-size: 0.9rem;
}

.footer-disclaimer-icon {
  color: #FCD34D;
}

.footer-copyright {
  color: #9CA3AF;
  font-size: 0.9rem;
}

.footer-legal {
  color: #9CA3AF;
  font-size: 0.8rem;
  text-align: right;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .form-card {
    max-width: 100%;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-legal {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

