:root {
    --bg-color: #f3e9df; /* Slightly warm beige/brown for elegance */
    --text-dark: #2c2c2c;
    --text-muted: #5a5a5a;
    --whatsapp-green: #25d366;
    --whatsapp-gradient: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --brown-gradient: linear-gradient(135deg, #a68b6d 0%, #7a6148 100%);
    --white-btn-bg: rgba(255, 255, 255, 0.9);
    --gold-accent: #d4af37;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
    --shadow-mid: 0 14px 34px rgba(0, 0, 0, 0.12);
    --shadow-press: 0 8px 18px rgba(0, 0, 0, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    background:
        radial-gradient(900px 520px at 50% 0%, rgba(200, 167, 132, 0.28) 0%, rgba(255, 255, 255, 0.96) 58%, #ffffff 100%),
        linear-gradient(180deg, #f6ede4 0%, #ffffff 55%, #ffffff 100%);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 520px;
    padding: 18px 18px 56px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
}

.top {
    width: 100%;
    position: relative;
    margin-top: 12px;
    margin-bottom: 42px;
}

.top-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: var(--shadow-mid);
}

.brand-logo-wrapper {
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-mid);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

/* Content Typography */
.content {
    width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6px;
}

.title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 18px;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    gap: 15px;
}

.subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b6b6b;
    font-weight: 500;
}

.line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.18), transparent);
    max-width: 80px;
}

/* Elegant Buttons */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 50px; /* Fully rounded for more modern elegance */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    gap: 12px;
    box-shadow: var(--shadow-soft);
}

.btn-whatsapp {
    background: var(--whatsapp-gradient);
    color: #fff;
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.18);
}

.btn-brown {
    background: var(--brown-gradient);
    color: #fff;
    box-shadow: 0 14px 34px rgba(122, 97, 72, 0.18);
}

.btn-white {
    background: var(--white-btn-bg);
    color: #333;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-mid);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-press);
}

.icon {
    width: 18px;
    height: 18px;
}

.icon-img {
    filter: brightness(0) invert(1); /* Torna o ícone preto em branco */
    object-fit: contain;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.top, .title, .subtitle-wrapper, .btn {
    animation: fadeIn 0.8s ease forwards;
}

.title { animation-delay: 0.2s; }
.subtitle-wrapper { animation-delay: 0.35s; }
.btn:nth-child(1) { animation-delay: 0.5s; }
.btn:nth-child(2) { animation-delay: 0.6s; }
