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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #3e1b5d 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.highlight {
    color: #bb86fc;
}

p {
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ddd;
}

.card {
    background: rgba(187, 134, 252, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px dashed #bb86fc;
}

h3 {
    margin-bottom: 15px;
    color: #bb86fc;
}

ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

ul li {
    margin: 10px 0;
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: block;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    background-color: #128c7e;
}

footer {
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.6;
}
