* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: linear-gradient(180deg, #6250dc, #15142b);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100vh;
    padding: 20px;
    color: white;
}

/* Títulos com destaque */
h1 {
    font-size: 4rem;
    margin-bottom: 80px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Container principal dos cards */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%; /* Importante */
}

/* Card individual de cada serviço */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    max-width: 300px;
    min-height: 220px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

/* Botões estilosos */
.model-button {
    padding: 18px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(145deg, #3a8eff, #0066ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
}

.model-button:hover {
    transform: scale(1.05);
    background: linear-gradient(145deg, #1a75ff, #0047b3);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Descrição do serviço */
.service-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 10px;
    width: 100%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
