* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f6f7f9, #eceff3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 520px;
}

.card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 260px;
    height: auto;
	border-radius: 25px;
}

/* TEXTO */
.card h1 {
    font-size: 30px;
    font-weight: 600;
    color: #2d3a4a;
}

.subtitle {
    margin-top: 6px;
    font-size: 14px;
    color: #9aa3af;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo-text {
    font-family: 'Parisienne', cursive;
    font-size: 64px;
    color: #4a4a4a;
    margin-top: 20px;
}


.divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #d4c1a6, #f2e8da);
    margin: 28px auto;
    border-radius: 2px;
}

.message {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* INSTAGRAM */
.instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2d3a4a;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.instagram:hover {
    opacity: 0.7;
}

.instagram svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
