*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --blue: #1A4B8F;
    --cobalt: #2A64B5;
    --gold: #F2B705;
    --amber: #D99E02;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --text: #1A1A1A;
    --muted: #4B5563;
    --light: #E8F0FB;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Montserrat', sans-serif; background: #2A64B5; color: var(--text); overflow-x: hidden; }


.Anuncio {
    display: flex;              
    justify-content: center;    
    align-items: center;        
    width: 600px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 32px;
    border: 2px solid rgb(236, 235, 232);
    pointer-events: none;
    animation: ringPulse 3s ease-in-out infinite;
    background-color: #ffffff;
    color: black;
    text-decoration: solid;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

}

@keyframes ringPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.05); }
}


.parrafoA{
    text-align: center;
    font-size: 30px;
    font-family: 'Courier New', Courier, monospace;
    color: #2A64B5;
    

}


.titulo{
    display: flex;              
    justify-content: center;    
    align-items: center;        
    width: 100%;
    height: 100px;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 2px solid rgba(243, 242, 239, 0.3);
    pointer-events: none;
    background: #ffffff;
background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(240, 226, 110, 1) 17%, rgba(237, 221, 83, 1) 83%, rgba(250, 250, 250, 1) 100%);
    color: rgb(21, 13, 113);
    text-decoration: solid;
    font-size: 35px;
    font-weight: bold;


}

.text{
    text-align: center;
}


/* 📱 Ajustes para móviles */
@media (max-width: 700px) {
    .Anuncio {
        padding: 15px;
        font-size: 1rem;
         width: 90%;
    }
    .parrafoA {
        font-size: 1.2rem;
    }
    .titulo {
        font-size: 1.5rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .Anuncio {
        flex-direction: column; /* Texto apilado */
        padding: 10px;
    }
    .parrafoA {
        font-size: 1rem;
    }
    .titulo {
        font-size: 1.2rem;
    }
}