/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Header Section */
.section-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding-bottom: 60px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

#header-logo {
  height: 50px;
}

.header-links {
  display: flex;
  gap: 30px;
}

.header-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.header-links a:hover {
  color: #ff6b35;
}

#button-especialista-header {
  background-color: #ff6b35;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

#button-especialista-header:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Hero Conheça */
.hero-conheca {
  text-align: center;
  padding: 80px 5% 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-conheca h1 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* Introdução */
.conheca-intro {
  padding: 80px 5%;
  background: white;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-content h2 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 2.5rem;
  color: #1e3c72;
  margin-bottom: 30px;
  font-weight: 700;
}

.intro-content p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.intro-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
}

.stat h3 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat p {
  color: #666;
  font-size: 0.95rem;
}

/* Módulos do Conheça */
.conheca-modules {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.conheca-modules h2 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 3rem;
  text-align: center;
  color: #1e3c72;
  margin-bottom: 60px;
  font-weight: 700;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.module-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.module-header {
  padding: 20px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-header.kyc { background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%); }
.module-header.kye { background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%); }
.module-header.kyp { background: linear-gradient(135deg, #28a745 0%, #20883a 100%); }
.module-header.kys { background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%); }
.module-header.kyproduct { background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%); }
.module-header.kym { background: linear-gradient(135deg, #17a2b8 0%, #138496 100%); }

.module-header h3 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.module-header span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.module-content {
  padding: 30px;
}

.module-content h4 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.5rem;
  color: #1e3c72;
  margin-bottom: 20px;
  font-weight: 600;
}

.module-content ul {
  list-style: none;
}

.module-content li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

.module-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

/* Tecnologia */
.conheca-tech {
  padding: 80px 5%;
  background: white;
}

.conheca-tech h2 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 3rem;
  text-align: center;
  color: #1e3c72;
  margin-bottom: 60px;
  font-weight: 700;
}

.tech-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-feature {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.tech-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tech-feature img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.tech-feature h3 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.6rem;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 600;
}

.tech-feature p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Benefícios */
.conheca-benefits {
  padding: 80px 5%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
}

.benefits-container h2 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.benefit h3 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ff6b35;
  font-weight: 600;
}

.benefit p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Casos de Uso */
.conheca-usecases {
  padding: 80px 5%;
  background: white;
}

.conheca-usecases h2 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 3rem;
  text-align: center;
  color: #1e3c72;
  margin-bottom: 60px;
  font-weight: 700;
}

.usecases-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.usecase {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.usecase:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.usecase h3 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.6rem;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 600;
}

.usecase p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Conheça */
.conheca-cta {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  padding: 80px 5%;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: white;
  color: #ff6b35;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #ff6b35;
}

/* Footer */
#section-footer {
  background-color: #0a1628;
  color: white;
  padding-top: 60px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 0 5% 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-assinatura {
  flex: 1;
  min-width: 250px;
}

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

#footer-cnpj, #footer-telefone, #footer-email {
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  min-width: 150px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-inscricao {
  flex: 1.5;
  min-width: 300px;
}

#inscricao-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ff6b35;
}

#inscricao-input {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

#inscricao-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#inscricao-button {
  background-color: #ff6b35;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

#inscricao-button:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

#orange-line-footer {
  height: 2px;
  background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
  margin-top: 40px;
}

#copyright-div {
  text-align: center;
  padding: 20px;
  background-color: #050a15;
}

#copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 968px) {
  .intro-container {
    grid-template-columns: 1fr;
  }
  
  .intro-stats {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .modules-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 15px 5%;
  }
  
  .header-links {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    width: 100%;
  }
  
  #button-especialista-header {
    width: 100%;
    text-align: center;
  }
  
  .hero-conheca h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .intro-stats {
    flex-direction: column;
  }
  
  .modules-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-container {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .usecases-container {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
}