/* ==========================
   ESTILOS ESPECÍFICOS - PÁGINA SOLUÇÕES
========================== */

/* Hero Section */
.hero-solucoes {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}

.hero-solucoes .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.7);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
  text-align: center;
  color: white;
}

.hero-logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

/* Introdução */
.introducao-solucoes {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-texto {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1b263b;
  margin-top: 2rem;
  text-align: justify;
}

/* Seções Gerais */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #415a77, #1b263b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(65, 90, 119, 0.3);
}

.section-header h2 {
  font-size: 2.5rem;
  color: #0d1b2a;
  margin-bottom: 1rem;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #415a77;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Treinamentos */
.treinamentos-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.treinamentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.treinamento-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(65, 90, 119, 0.1);
}

.treinamento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.treinamento-card h3 {
  font-size: 1.4rem;
  color: #0d1b2a;
  margin-bottom: 1rem;
  font-weight: bold;
}

.treinamento-card p {
  color: #415a77;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: justify;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #1b263b;
}

.feature-item i {
  color: #4ade80;
  font-size: 0.8rem;
}

/* Assessoria */
.assessoria-section {
  position: relative;
  padding: 5rem 0;
  background-image: url("../banner/banner1.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.overlay-assessoria {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.85);
  z-index: 1;
  top: 0;
  left: 0;
}

.assessoria-section .container {
  position: relative;
  z-index: 2;
}

.assessoria-section .section-header {
  color: white;
}

.assessoria-section .section-header h2 {
  color: white;
}

.assessoria-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.assessoria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.assessoria-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, background 0.3s ease;
}

.assessoria-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.item-icon {
  width: 50px;
  height: 50px;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  margin: 0 auto 1rem;
}

.assessoria-item h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #4ade80;
  font-weight: bold;
}

.assessoria-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

/* Por que escolher a CERTAP */
.porque-certap {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.vantagens-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 3rem auto 0;
}

.vantagem-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vantagem-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vantagem-icon {
  width: 50px;
  height: 50px;
  background: #415a77;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.vantagem-content h4 {
  font-size: 1.1rem;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.vantagem-content p {
  color: #415a77;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Call to Action Final */
.cta-final {
  background: linear-gradient(135deg, #0d1b2a, #415a77);
  padding: 5rem 0;
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.botao-principal {
  background: #4ade80;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.botao-principal:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.botao-secundario {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.botao-secundario:hover {
  background: white;
  color: #0d1b2a;
  transform: translateY(-2px);
}

/* Link ativo no menu */
.link.active {
  color: #4ade80 !important;
}

.link.active::before {
  transform: scaleX(1);
  background: #4ade80;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-logo {
    max-width: 220px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .treinamentos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .treinamento-card {
    padding: 2rem;
  }

  .card-features {
    grid-template-columns: 1fr;
  }

  .assessoria-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .assessoria-item {
    padding: 1.5rem;
  }

  .vantagem-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .botao-principal,
  .botao-secundario {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-solucoes {
    height: 50vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }

  .introducao-solucoes {
    padding: 3rem 0;
  }

  .treinamentos-section {
    padding: 3rem 0;
  }

  .assessoria-section {
    padding: 3rem 0;
  }

  .porque-certap {
    padding: 3rem 0;
  }

  .cta-final {
    padding: 3rem 0;
  }

  .section-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .treinamento-card {
    padding: 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}