/* ========================================
   Internal Pages Styles - Páginas Internas
   ======================================== */

/* Internal Banner */
.internal-banner {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, var(--color-navy) 0%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.internal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.internal-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 69, 112, 0.95) 0%, rgba(30, 58, 95, 0.9) 100%);
}

.internal-banner__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-white);
}

.internal-banner__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.internal-banner__breadcrumb {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.9;
}

.internal-banner__breadcrumb a {
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.internal-banner__breadcrumb a:hover {
  color: var(--color-yellow);
}

.internal-banner__breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* Internal Content */
.internal-content {
  padding: 80px 0;
  background: var(--color-white);
}

/* Content Section */
.content-section {
  margin-bottom: 60px;
  background: var(--color-gray-light);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section--full {
  background: var(--color-white);
  border: 2px solid var(--color-gray-light);
}

.content-section__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--color-red);
}

.content-section__icon {
  font-size: 36px;
  line-height: 1;
}

.content-section__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.content-section__body {
  line-height: 1.8;
}

.content-section__text {
  font-size: 16px;
  color: var(--color-gray-text);
  margin-bottom: 20px;
  text-align: justify;
}

.content-section__text:last-child {
  margin-bottom: 0;
}

.content-section__text--highlight {
  background: #fff9e6;
  padding: 20px;
  border-left: 4px solid var(--color-yellow);
  border-radius: 8px;
  font-size: 17px;
  color: var(--color-navy);
}

.content-section__text--highlight strong {
  color: var(--color-red);
  font-weight: 700;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-navy) 100%);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-card__number {
  width: 50px;
  height: 50px;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.value-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 15px;
  color: var(--color-gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Internal CTA */
.internal-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1e3a5f 100%);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.internal-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.internal-cta__content {
  position: relative;
  z-index: 10;
}

.internal-cta__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
}

.internal-cta__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.internal-cta__btn {
  display: inline-block;
  padding: 16px 50px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.internal-cta__btn:hover {
  background: #d62839;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .internal-banner__title {
    font-size: 40px;
  }
  
  .content-section {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .internal-banner {
    height: 250px;
  }
  
  .internal-banner__title {
    font-size: 32px;
  }
  
  .internal-banner__breadcrumb {
    font-size: 14px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .content-section {
    padding: 25px;
  }
  
  .content-section__title {
    font-size: 26px;
  }
  
  .content-section__icon {
    font-size: 28px;
  }
  
  .internal-cta {
    padding: 40px 25px;
  }
  
  .internal-cta__title {
    font-size: 28px;
  }
  
  .internal-cta__text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .internal-banner__title {
    font-size: 28px;
  }
  
  .content-section {
    padding: 20px;
  }
  
  .content-section__title {
    font-size: 22px;
  }
  
  .content-section__text {
    font-size: 15px;
  }
  
  .value-card {
    padding: 20px;
  }
  
  .internal-cta__title {
    font-size: 24px;
  }
}

