:root{

--vino1:#4A0E21;
--vino2:#7B1734;
--vino3:#9B2242;
--vino4:#C13B63;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

overflow:hidden;

background:
linear-gradient(
135deg,
var(--vino1),
var(--vino2),
var(--vino3),
var(--vino4)
);

}

#particles-js{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

z-index:2;

pointer-events:none;

}

.maintenance{

height:100vh;

display:flex;

justify-content:center;
align-items:center;

padding:20px;

}

.glass-card{

position:relative;

z-index:5;

width:100%;
max-width:700px;

padding:60px;

text-align:center;

background:
rgba(255,255,255,.08);

backdrop-filter:
blur(15px);

border:
1px solid rgba(255,255,255,.15);

border-radius:30px;

box-shadow:
0 25px 60px rgba(0,0,0,.25);

}

.badge{

display:inline-block;

padding:10px 20px;

border-radius:50px;

background:
rgba(255,255,255,.15);

color:white;

margin-bottom:25px;

}

h1{

color:white;

font-size:3.5rem;

margin-bottom:20px;

}

p{

color:white;

font-size:1.1rem;

margin-bottom:35px;

line-height:1.7;

}

.btn{

display:inline-block;

padding:15px 35px;

border-radius:50px;

background:white;

color:var(--vino2);

font-weight:700;

text-decoration:none;

transition:.3s;

}

.btn:hover{

transform:translateY(-3px);

}

.loader{

margin:30px auto;

width:70px;
height:70px;

border:6px solid rgba(255,255,255,.2);

border-top:6px solid white;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{
transform:rotate(360deg);
}

}

@media(max-width:768px){

h1{

font-size:2.2rem;

}

.glass-card{

padding:40px 25px;

}

}

.phone{

    display:block;

    margin-top:20px;

    color:white;

    text-decoration:none;

    font-size:1.1rem;

    font-weight:500;

    transition:.3s;

}

.phone:hover{

    opacity:.8;

}