@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  font-family: poppins;
}


header {
  font-size: 30px;
  background-color: rgb(78, 0, 78);
  color: white;
  display: flex;
  height: 140px;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

header nav a:nth-child(4) {
  color: #999999;
}

header nav a:hover {
  color: #999999;
  transition: 0.3s;
}

.logo {
  position: relative;
  color: #eee;
  display: flex;
}

header nav {
  display: flex;
  gap: 60px;
}


header nav a {
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.icones-header {
  display: flex;
  gap: 20px;
}

.icones-header img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.icones-header a {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.icones-header img {
  height: 28px;
}

main {
  display: flex;
  padding: 30px 50px;
}

/* noticia 1 */
/* text paragrafo */
p {
  font-size: 20px;
}

.text-p {
  background-color: #5d043f1b;
  border-radius: 20px;
  padding: 20px;
  padding-top: 40px;
  
}

/* img */
.text-p img {
  width: 50%;
  height: auto;
  border-radius: 30px;
  margin-bottom: 20px;
  padding: 15px;
}

/* centralizar section */
.container {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 20px;
  padding-top: 20px;
}


#tabela{
  padding-top: 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

/* resumo noticia 2 */

#resumo-partida {
  padding-top: 20px;
  color: brown;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.video-container {
  border-radius: 12px;
  overflow: hidden;
  max-width: 800px;
  margin: 20px auto;
}

.video-container iframe {
  display: block;
}


/* texto noticia 3 - brasil x frança */
#brasil-style , #vitoria-franca {
  color: rgb(23, 35, 0);
  text-align: center;
  
}

.video-container-3 {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.video-container-3 iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* noticia 4 - spider man */

#estreia-spider {
  padding-bottom: 20px;
}

.container-estreia {
margin-top: 20px;
background: #ff0000;
background: linear-gradient(90deg,rgba(255, 0, 0, 0.5) 36%, rgba(34, 0, 255, 0.5) 59%);
border-radius: 20px;
/* TRANSIÇÃO */
    transition: all 0.3s ease;
}
.container-estreia:hover {
    transform: scale(1.03); /* aumenta levemente */
    
    background: linear-gradient(
        90deg,
        rgba(255, 0, 0, 0.7),
        rgba(34, 0, 255, 0.7)
    );
}








/* footer */
footer {
  position: relative;
  /* referência para a imagem */
  background-color: rgb(78, 0, 78);
  color: white;
  padding: 20px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .news-header {
  position: absolute;
  right: 20px;
  width: 250px;
}

footer p {
  position: absolute;
  left: 20px;
  font-size: 8px;
}

.logos-footer {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logos-footer :hover {
  transform: scale(1.1);
}