* {
    font-family: Barlow, sans-serif;
}
.zocalo {
   display: block !important;
}
.anuncio_horizontal {
    width: 970px;
    height: 90px;
    background: linear-gradient(to right ,#7B177D, #480D49);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.circle-deco {
  position: absolute;
  left: -50px; /* se corre para que se vea cortado */
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #DA291C;
  z-index: 1;
}

.circle-deco::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background-color: #7B177D; /* color del fondo del banner */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.general-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0px 27px;
}

.col01 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 51px;
}

.date {
    background: #2AA572;
    padding: 3px 10px;
    width: fit-content;
    color: white;
    border-radius: 5px;
    
    
}
.date h2 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-family: barlow;
   
}
.date span {
    font-weight: bold;
}

.text p {
    color: white;
    font-size: 18px;
    margin: 0;
    text-align: left;
}

.col02 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.input input {
    width: 347px;
    height: 40px;
    border: none;
    padding: 5px;
    border-radius: 7px;
    box-sizing: border-box;
    padding-left: 20px;
}

.col02 a {
    width: 347px;
    text-align: center;
    background: #FF7B1C;
    padding: 5px 0;
    text-decoration: none;
    color:  white;
    cursor: pointer;
    border-radius: 7px;
}

.col02 a p {
    margin: 0;
}


@media (max-width: 970px) {
    .zocalo {
        min-height: 185px !important;
        height: 100%;
        max-height: none;
    }
    .anuncio_horizontal {
        display: flex;
        width: 375px;
    
        flex-direction: column;
        justify-content: center;
 }
 .circle-deco{
    display: none;
 }
 .circle-deco::after  {
    display: none;
 }

 .general-container {
    flex-direction: column;
 }
 .col01 {
    padding-left: 0;
    justify-content: center;
    align-items: center;
 }
 .date h2 {
    font-size: 12px;
 }
 .text p{
   font-size: 12px;
   text-align: center;
   padding: 12px 0;
 }
 .input input{
    text-align: center;
    height: 22px;
    font-size: 12px;
 }
 
.col02 a p {
    margin: 0;
    font-size: 16px;
}
 }