.carousel-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.carousel-container div.relative {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  opacity: 1;
}

@media (min-width: 768px) {
  .carousel-container {
    margin: 0;
  }
}

.carousel-slide {
  min-width: 100%;
  display: block;
  opacity: 1;
}

.carousel-slide.active {
  transform: translateX(0);
}

.carousel-slide:not(.active) {
  opacity: 1;
}

.carousel-slide img {
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-dot {
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dot:hover {
  transform: scale(1.2);
}

.carousel-dot.active {
  transform: scale(1.2);
  opacity: 1;
}

.carousel-dot:focus {
  outline: none;
}

/* Botão de Play */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
  background-color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Animações */
@keyframes fadeEffect {
  from {opacity: 0.7}
  to {opacity: 1}
}

/* Menu mobile - REMOVIDO PARA EVITAR DUPLICAÇÃO */

/* Modal de vídeo */
#video-modal {
  transition: opacity 0.3s ease;
}

/* Efeitos em links e botões */
a {
  transition: all 0.3s ease;
}

/* Carrossel de vídeos */
.tv-carousel {
  position: relative;
}

.tv-carousel .flex {
  transform: translateX(0%);
}

@media (max-width: 768px) {
  .tv-carousel .flex > div {
    width: 100%;
  }
}

/* Seção de Esportes */
.sports-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.sports-card .second-card {
  height: 100%;
}

.sports-card .second-card img {
  height: 100%;
  object-fit: cover;
}

.sports-card .second-card .relative {
  height: 100%;
}

/* Carrossel de podcasts */
.tv-carousel {
  position: relative;
}

.tv-carousel .overflow-hidden {
  margin: 0 -12px;
}

@media (max-width: 768px) {
  .tv-carousel .flex {
    gap: 1rem;
  }
  
  .tv-carousel .flex > div {
    width: 100%;
  }

  /* Ajustes mobile seção esportes */
  .sports-card .relative {
    height: 280px !important;
  }

  .sports-card .md\:col-span-2 .relative {
    height: 350px !important;
  }

  .sports-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .sports-card p {
    font-size: 0.875rem;
  }

  .sports-card span {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}

@media (max-width: 640px) {
  /* Ajustes mobile pequeno seção esportes */
  .sports-card .relative {
    height: 220px !important;
  }

  .sports-card .md\:col-span-2 .relative {
    height: 280px !important;
  }

  .sports-card h3 {
    font-size: 1.125rem;
  }

  .sports-card p {
    display: none;
  }

  .sports-card .absolute {
    padding: 1rem;
  }
}

/* Link da notícia em destaque */
.destaque-texto {
  display: block;
  text-decoration: none;
}

button {
  transition: all 0.3s ease;
}

/* Line clamp para textos */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Estilos do footer desktop */
footer .grid {
  text-align: left;
}

footer h3,
footer .space-y-2,
footer .flex.items-center {
  text-align: left;
  justify-content: flex-start;
}

footer .md\:col-span-4 .flex {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

footer .md\:col-span-4 img {
  width: 120px;
  margin-bottom: 1rem;
}

footer .md\:col-span-4 p {
  text-align: left;
}

footer .md\:col-span-3 .flex {
  justify-content: flex-start;
}

/* Ajustes do header */
.bg-primary #cotacao-dolar,
.bg-primary #cotacao-dolar-mobile,
.bg-primary .flex.items-center .font-medium,
.bg-primary .container .text-sm {
  font-size: 0.875rem !important;
}

.bg-primary .text-xs {
  font-size: 0.75rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Ajustes do footer no mobile */
  footer {
    padding: 3rem 1rem;
  }

  footer .flex.flex-col.lg\:flex-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .lg\:w-1\/3 {
    width: 100%;
    margin-bottom: 2rem;
  }

  footer .flex.items-center.gap-4 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .flex.items-center.gap-4 img {
    margin-bottom: 1rem;
    width: 140px;
  }

  footer .flex.items-center.gap-4 p {
    text-align: center;
    max-width: none;
  }

  footer .space-y-2 {
    text-align: center;
  }

  footer .flex.items-center.gap-2 {
    justify-content: center;
  }

  footer h3 {
    text-align: center;
  }

  footer .flex.gap-4 {
    justify-content: center;
  }
  
  /* Ajuste altura das notícias ao lado do slider */
  .news-card .relative img {
    height: 200px !important;
    object-fit: cover;
  }

  [class*="md:w-2\/5"] .news-card img {
    height: 200px !important;
    object-fit: cover;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .destaque-texto h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .carousel-slide .absolute {
    padding: 8px;
  }
  
  .carousel-slide h2 {
    font-size: 1.25rem;
  }

  .sports-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .sports-card p {
    font-size: 0.875rem;
  }

  .sports-card span {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}

@media (max-width: 640px) {
  h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .play-button {
    width: 40px;
    height: 40px;
  }

  .sports-card h3 {
    font-size: 1.125rem;
  }

  .sports-card p {
    display: none;
  }

  .sports-card .absolute {
    padding: 1rem;
  }
}

/* Estilos para o conteúdo da notícia */
.prose {
    white-space: pre-line;
    line-height: 1.4;
}

.prose p {
    margin-bottom: 0.75rem;
}

.prose p:last-child {
    margin-bottom: 0;
}

/* Estilo para legendas de imagens */
figure {
    margin: 0.5rem 0;
}

figcaption {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.2rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.sports-card img {
  transition: transform 0.3s ease;
}

.sports-card .group:hover img {
  transform: scale(1.05);
}

.sports-card span {
  transition: color 0.3s ease;
}

.sports-card h3 {
  transition: color 0.3s ease;
}

.sports-card .bg-gradient-to-t {
  transition: opacity 0.3s ease;
}

.sports-card .group:hover .bg-gradient-to-t {
  opacity: 0.9;
}

/* Seção Tá na Hora TV */
.tanahora-tv {
  background-color: #000000;
  padding: 2rem 0;
  position: relative;
}

.tanahora-tv h2 {
  color: #ffffff;
}

/* Garantir que o botão "Ver todos os vídeos" seja acessível */
.tanahora-tv .flex.justify-center a {
  position: relative;
  z-index: 5;
  cursor: pointer;
}

/* Seção Tá na Hora TV e Tá na Hora Cast */
section.full-width-background.tanahora-cast,
section.full-width-background.tanahora-tv {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.tanahora-cast {
  background-color: #A30000;
  padding: 2rem 0;
}

.tanahora-cast .container {
  max-width: 1300px;
  margin: 0 auto;
}

.tanahora-cast .group {
  width: 100%;
  max-width: 100%;
  margin: 0;
  transform: none;
  position: relative;
  left: auto;
  right: auto;
}

main {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.container {
  position: relative;
  width: 100%;
}

/* Layout base para todas as seções */
section {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* Seções específicas com largura total */
section.tanahora-cast,
section.tanahora-tv {
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.tanahora-cast {
  background-color: #A30000;
  padding: 2rem 0;
}

.tanahora-tv {
  background-color: #000000;
  padding: 2rem 0;
}

/* Container dentro das seções de largura total */
section.tanahora-cast .container,
section.tanahora-tv .container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Alinhamento de ícones de redes sociais */
.fab.fa-facebook-f,
.fab.fa-twitter,
.fab.fa-instagram,
.fab.fa-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 1;
}

/* Ajustes específicos para cada ícone */
.fab.fa-facebook-f {
  transform: translateY(0);
}

.fab.fa-twitter {
  transform: translateY(0);
}

.fab.fa-instagram {
  transform: translateY(0);
}

.fab.fa-youtube {
  transform: translateY(0);
}

/* Garantir que os contêineres dos ícones sejam exatamente do mesmo tamanho */
.bg-white\/10.w-8.h-8,
a[href*="facebook"],
a[href*="instagram"],
a[href*="twitter"],
a[href*="youtube"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 9999px;
} 