:root {
    --bg-color-start: #000000;
    --bg-color-end: #1a1a1a;
    /* ~10% lighter than black */
    --text-color: #ffffff;
    --accent-color: #dfdfdf;
    /* Gold-ish yellow from the image for links */
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--bg-color-start) 0%, var(--bg-color-end) 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-color);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.brand-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 8px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.value {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.contact-links {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email-link,
.phone-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.email-link:hover,
.phone-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.phone-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-buttons {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-email {
    background-color: #ea4335;
    /* Google Red or similar for email */
}

@media (max-width: 480px) {
    .card {
        padding: 24px;
    }

    h1 {
        font-size: 2rem;
    }

    .social-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}