/**
 * Estilos dos Sliders de Notícias
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* ========== NOTÍCIAS ÚLTIMAS ========== */

.esporte-master-section {
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 60px 0px !important;
  font-family: 'Montserrat', sans-serif !important;
  box-sizing: border-box !important;
}

.esporte-master-container {
  display: flex !important;
  gap: 40px !important;
  align-items: flex-start !important;
}

.esporte-master-left {
  min-width: 320px !important;
  width: 320px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
}

.esporte-master-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #005CA9 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.esporte-master-navigation {
  display: flex !important;
  gap: 16px !important;
}

.esporte-nav-button {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background-color: #005CA9 !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
}

.esporte-nav-button:hover {
  background-color: #004a8a !important;
  transform: scale(1.05) !important;
}

.esporte-nav-button:active {
  transform: scale(0.95) !important;
}

.esporte-nav-button.swiper-button-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.esporte-nav-button svg {
  width: 18px !important;
  height: 18px !important;
  stroke: white !important;
  fill: none !important;
}

.esporte-master-right {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.esporte-master-header {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.esporte-master-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #707070 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.esporte-master-link {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #005CA9 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: opacity 0.3s ease !important;
  width: fit-content !important;
}

.esporte-master-link:hover {
  opacity: 0.8 !important;
}

.esporte-master-link svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  fill: none !important;
}

.esporte-slider-container {
  width: 100% !important;
  overflow: hidden !important;
}

.esporte-slider {
  width: 100% !important;
}

.esporte-slide {
  height: auto !important;
}

/* Link wrapper para tornar o card clicável */
.esporte-card-link,
.noticias-card-link {
  text-decoration: none !important;
  display: block !important;
  color: inherit !important;
}

.esporte-card {
  position: relative !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  height: 480px !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 32px !important;
  box-sizing: border-box !important;
}

.esporte-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%) !important;
  z-index: 1 !important;
}

.esporte-card-content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.esporte-card-tags {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.esporte-tag {
  background-color: rgba(255, 255, 255, 0.95) !important;
  color: #005CA9 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 4px 8px !important;
  border-radius: 100px !important;
  white-space: nowrap !important;
}

.esporte-card-arrow {
  position: absolute !important;
  top: 32px !important;
  right: 32px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background-color: #005CA9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  z-index: 3 !important;
}

.esporte-card-arrow:hover {
  background-color: #004a8a !important;
  transform: scale(1.1) !important;
}

.esporte-card-arrow svg {
  width: 24px !important;
  height: 24px !important;
  stroke: white !important;
  fill: none !important;
}

.esporte-card-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.esporte-card-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  color: white !important;
  margin: 0 !important;
  padding: 0 !important;
}

.esporte-card-description {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: white !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ========== NOTÍCIAS NORMAIS ========== */

.noticias-section {
  width: 100% !important;
  background-color: transparent !important;
  padding: 60px 0px !important;
  font-family: 'Montserrat', sans-serif !important;
  box-sizing: border-box !important;
}

.noticias-container {
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0px !important;
  box-sizing: border-box !important;
}

.noticias-header {
  display: flex !important;
  gap: 119px !important;
  align-items: flex-start !important;
  margin-bottom: 56px !important;
}

.noticias-left {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
}

.noticias-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #005CA9 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.noticias-navigation {
  display: flex !important;
  gap: 16px !important;
}

.noticias-nav-button {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background-color: #005CA9 !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
}

.noticias-nav-button:hover {
  background-color: #004a8a !important;
  transform: scale(1.05) !important;
}

.noticias-nav-button:active {
  transform: scale(0.95) !important;
}

.noticias-nav-button.swiper-button-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.noticias-nav-button svg {
  width: 18px !important;
  height: 18px !important;
  stroke: white !important;
  fill: none !important;
}

.noticias-right {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.noticias-description {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #707070 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.noticias-link {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #005CA9 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: opacity 0.3s ease !important;
  width: fit-content !important;
}

.noticias-link:hover {
  opacity: 0.8 !important;
}

.noticias-link svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  fill: none !important;
}

.noticias-slider-container {
  width: 100% !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
}

.noticias-slider {
  width: 100% !important;
}

.noticias-slide {
  height: auto !important;
}

.noticias-card {
  position: relative !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  height: 480px !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 32px !important;
  box-sizing: border-box !important;
}

.noticias-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%) !important;
  z-index: 1 !important;
}

.noticias-card-arrow {
  position: absolute !important;
  top: 32px !important;
  right: 32px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background-color: #005CA9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  z-index: 3 !important;
}

.noticias-card-arrow:hover {
  background-color: #004a8a !important;
  transform: scale(1.1) !important;
}

.noticias-card-arrow svg {
  width: 24px !important;
  height: 24px !important;
  stroke: white !important;
  fill: none !important;
}

.noticias-card-content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.noticias-card-tags {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.noticias-tag {
  background-color: rgba(255, 255, 255, 0.95) !important;
  color: #005CA9 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 4px 8px !important;
  border-radius: 100px !important;
  white-space: nowrap !important;
}

.noticias-card-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.noticias-card-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  color: white !important;
  margin: 0 !important;
  padding: 0 !important;
}

.noticias-card-description {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: white !important;
  margin: 0 !important;
  padding: 0 !important;
}

.noticias-pagination-wrapper {
  margin-top: 30px !important;
}

.noticias-pagination {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  position: relative !important;
}

.noticias-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background-color: rgba(0, 92, 169, 0.3) !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.noticias-pagination .swiper-pagination-bullet-active {
  background-color: #005CA9 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .esporte-master-container {
    flex-wrap: wrap !important;
    gap: 30px !important;
  }

  .esporte-master-left {
    width: 100% !important;
    gap: 20px !important;
  }

  .esporte-master-title {
    font-size: 32px !important;
  }

  .esporte-master-right {
    width: 100% !important;
  }

  .noticias-header {
    flex-wrap: wrap !important;
    gap: 30px !important;
  }

  .noticias-left,
  .noticias-right {
    width: 100% !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .esporte-master-section {
    padding: 40px 20px !important;
  }

  .esporte-master-container {
    gap: 24px !important;
  }

  .esporte-master-left {
    gap: 17px !important;
    align-items: center !important;
  }

  .esporte-master-title {
    font-size: 28px !important;
    text-align: center !important;
  }

  .esporte-master-navigation {
    justify-content: center !important;
  }

  .esporte-master-header {
    align-items: center !important;
  }

  .esporte-master-subtitle {
    font-size: 16px !important;
    text-align: center !important;
  }

  .esporte-master-link {
    margin: 0 auto !important;
  }

  .esporte-card {
    height: 400px !important;
    padding: 24px !important;
  }

  .esporte-card-arrow {
    top: 24px !important;
    right: 24px !important;
  }

  .esporte-card-title {
    font-size: 18px !important;
    line-height: 22px !important;
  }

  .esporte-card-description {
    font-size: 14px !important;
  }

  .noticias-section {
    padding: 40px 0 !important;
  }

  .noticias-container {
    padding: 0 20px !important;
  }

  .noticias-header {
    flex-direction: column !important;
    gap: 21px !important;
    margin-bottom: 32px !important;
  }

  .noticias-left {
    align-items: center !important;
    gap: 17px !important;
    width: 100% !important;
  }

  .noticias-title {
    font-size: 28px !important;
    text-align: center !important;
  }

  .noticias-navigation {
    justify-content: center !important;
  }

  .noticias-right {
    align-items: center !important;
    width: 100% !important;
  }

  .noticias-description {
    font-size: 16px !important;
    text-align: center !important;
  }

  .noticias-link {
    margin: 0 auto !important;
  }

  .noticias-card {
    height: 400px !important;
    padding: 24px !important;
  }

  .noticias-card-arrow {
    top: 24px !important;
    right: 24px !important;
  }

  .noticias-card-title {
    font-size: 18px !important;
    line-height: 22px !important;
  }

  .noticias-card-description {
    font-size: 14px !important;
  }

  .noticias-pagination-wrapper {
    margin-top: 24px !important;
  }
}

