* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    background: rgba(0,0,0,0.85);
    min-height: 100vh;
}

.hero {
    text-align: center;
    padding: 60px 20px 20px;
}

.hero h1 {
    font-size: clamp(45px, 8vw, 90px);
    color: #00ccff;
    text-shadow: 0 0 25px #00ccff, 0 0 50px #00ccff;
    animation: glow 1.5s infinite alternate;
}

.subtitle {
    margin-top: 10px;
    color: #ccc;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.card {
    position: relative;
    background: rgba(0,0,0,0.6);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    text-align: center;
}

.card.destaque {
    grid-column: span 2;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }
.card:nth-child(4) { animation-delay: 0.8s; }
.card:nth-child(5) { animation-delay: 1s; }
.card:nth-child(6) { animation-delay: 1.2s; }

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(120deg, #00ccff, transparent, #00ccff);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    animation: borderMove 3s linear infinite;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 30px rgba(0,200,255,0.6);
}

.card h2 {
    color: #00ccff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00ccff;
}

ul {
    list-style: none;
}

ul li {
    margin: 6px 0;
}

.whatsapp {
    display: block;
    margin-top: 25px;
    padding: 16px;
    text-align: center;
    background: linear-gradient(45deg, #25D366, #1ebe5d);
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    font-size: 17px;
    box-shadow: 0 0 15px #25D366;
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #25D366;
}

/* HORARIO NEON VERMELHO */
.horario {
    margin-top: 15px;
    font-size: 18px;
    color: #ff2e2e;
    text-shadow: 0 0 10px #ff0000, 0 0 30px #ff0000, 0 0 50px #ff0000;
    animation: glowRed 1.5s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ccff; }
    to { text-shadow: 0 0 30px #00ccff; }
}

@keyframes glowRed {
    from { text-shadow: 0 0 10px #ff0000; }
    to { text-shadow: 0 0 40px #ff0000, 0 0 60px #ff0000; }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderMove {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

@media (max-width: 700px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .card.destaque {
        grid-column: span 1;
    }
}

.footer {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 20px;
    font-size: 12px;
    color: #888;
}

.btn-luz{
position:relative;
display:block;
width:fit-content;
margin:20px auto;
padding:14px 30px;
color:#fff;
font-size:18px;
text-decoration:none;
border-radius:12px;
background:#00aaff;
overflow:hidden;
box-shadow:0 0 10px #00aaff, 0 0 20px #00aaff;
transition:0.3s;
text-align:center;
}

/* luz passando */
.btn-luz::before{
content:"";
position:absolute;
top:0;
left:-75%;
width:50%;
height:100%;
background:linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,0.6),
  transparent
);
transform:skewX(-20deg);
animation:luz 2s infinite;
}

.btn-luz:hover{
transform:scale(1.05);
background:#0088cc;
box-shadow:0 0 20px #00aaff, 0 0 40px #00aaff;
}

@keyframes luz{
100%{
left:125%;
}
}
.titulo-luz{
position:relative;
color:#00aaff;
font-size:40px;
text-shadow:0 0 10px #00aaff, 0 0 20px #00aaff;
overflow:hidden;
display:inline-block;
}

/* luz passando no texto */
.titulo-luz::before{
content:"";
position:absolute;
top:0;
left:-75%;
width:50%;
height:100%;
background:linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,0.8),
  transparent
);
transform:skewX(-20deg);
animation:luzTitulo 2.5s infinite;
}

@keyframes luzTitulo{
100%{
left:125%;
}
}