 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}

body {
background: radial-gradient(
circle at 50% 0%,
rgba(0, 119, 255, 0.15),
transparent 60%
),
linear-gradient(
180deg,
#0a0a0a 0%, 
#121212 100%
);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 700px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00d2ff, #ff6a00);
    -webkit-background-clip: text;   
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 span {
    background: linear-gradient(90deg, #00d2ff, #ff6a00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 35px;
}


.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.whatsapp {
    background: #25D366;
    color: #fff;
}

.whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

.instagram {
    background: #ff6a00;
    color: #fff;
}

.instagram:hover {
    background: #e65c00;
    transform: translateY(-3px);
}

.services {
    height: 10rem;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #94a3b8;
}

