 body {
      font-family: Arial, sans-serif;
      margin: 0;
      color: #333;
      background-color: #fff;
    }

/* TOPO */
    .topo-radio {
      position: relative;
      width: 100%;
      min-height: 220px;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      overflow: hidden;

      /* TROQUE AQUI A IMAGEM DE FUNDO */
      background-image: url("imagens/capa_site_fm.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      /* overlay azul escuro */
      isolation: isolate;
    }

    .topo-radio::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        120deg,
        rgba(15, 23, 42, 0.85),
        rgba(30, 64, 175, 0.85)
      );
      mix-blend-mode: multiply;
      z-index: -1;
    }

      header.topo {
      position: relative;
      width: 100%;
      min-height: 240px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-image: url("imagens/capa_site_fm.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      isolation: isolate;
    }

    header.topo::before {
      content: "";
      position: absolute;
      inset: 0;
     
      z-index: -1;
    }

    .conteudo-topo {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    @media (max-width: 768px) {
      .titulo {
        font-size: 1.8rem;
      }

      .slogan {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      header.topo {
        padding: 16px;
        min-height: 200px;
      }

    }



    section {
      padding: 10px 10px;
      max-width: 1200px;
      margin: 10px auto;
    }
	
	 h1 {
      text-align: center;
      color: #ff5e00;
      margin-bottom: 30px;
	  font-size: 2rem;
	  font-weight: bold;
    }
	
    h2 {
      text-align: center;
      color: #ff5e00;
      margin-bottom: 30px;
	  font-size: 2rem;
	  font-weight: bold;
    }
	
	h3 {
      text-align: center;
      color: 	#00FFFF;
      margin: 10px;
    }
	
	h4 {
      text-align: center;
      color:#2F4F4F;
      margin: 10px 0 0 5px;
    }
	
	p {
	  text-align: center;
      color: #ff5e00;
      margin-bottom: 30px;
	  font-size: 1rem;
	  font-weight: bold;
	}
.galeria, .box, .noticias, .top10, .promocoes, .sorteios, .videos, .noticias {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
.promocoes img {
    width: 500px;
    height: 600px;
    
}
.box {
 
  border-radius: 0.15rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px 0;
  width: 100%;
  max-width: 1250px;
  margin: auto;
 /* box-shadow: 2px 0 10px rgba(52, 58, 64, 0.2);
  margin-top: 30px;
  z-index: 99;
  position: relative;*/
  max-height: 300px;
  background: none;
}

.box .box-item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  /*border-right: 1px solid #eaf0fc;
  padding: 10px 15px;*/
   align-content: center;
  padding-left: 15px;
  background: none;
}

.box .box-item i {
  font-size: 50px;
  color: #ff214f;
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 100;
 
}

.box .box-item .box-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.box .box-item:last-child {
  border: 0;
}

.box .box-item img {
	width: 380px;
	height: 380px;
}	
	#galeria {
		background-color: #ddd;
	
	}
	
	#noticias {
		background-color: 	#F5DEB3;
	}
	
	

/* Barra horizontal de acesso */
.barra-acesso {
    width: 100%;
    background: #0a0a0a;
    padding: 20px 0;
}

.container-acesso {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.container-acesso .item {
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    transition: 0.3s ease;
}

.container-acesso .item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

.container-acesso .item:hover img {
    transform: scale(1.15);
}

.container-acesso .item span {
    font-size: 14px;
    display: block;
    margin-top: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    .container-acesso {
        gap: 15px;
    }

    .container-acesso .item img {
        width: 48px;
        height: 48px;
    }

    .container-acesso .item span {
        font-size: 13px;
    }
}

		
    .card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.2s;
    }
    .card:hover {
      transform: scale(1.03);
    }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .card-content {
      padding: 15px;
    }
    .card-content h3 {
      margin: 0;
      color: #ff5e00;
    }
	
	    
  
	
	
    iframe {
      width: 100%;
      height: 250px;
      border-radius: 10px;
    }
    
    @media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  
   .cardS {
      background: none;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.2s;
    }
    .cardS:hover {
      transform: scale(1.08);
    }
    .cardS img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    text-align: center;
    }
    .cardS-content {
      padding: 15px;
    }
    .cardS-content h3 {
      margin: 0;
      color: #ff5e00;
    }
    
    .cardS p {font-size: 1rem;}
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
   .cardS {
      background: none;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.2s;
    }
    .cardS:hover {
      transform: scale(1.08);
    }
    .cardS img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    text-align: center;
    }
    .cardS-content {
      padding: 15px;
    }
    .cardS-content h3 {
      margin: 0;
      color: #ff5e00;
    }
    
    .cardS p {font-size: 1rem;}
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  
   .cardS {
      background: none;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.2s;
    }
    .cardS:hover {
      transform: scale(1.08);
    }
    .cardS img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    text-align: center;
    }
    .cardS-content {
      padding: 15px;
    }
    .cardS-content h3 {
      margin: 0;
      color: #ff5e00;
    }
    
    .cardS p {font-size: 1rem;}
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}