/* ============================================
   BRAZILIAN TOUCH - LINKS PAGE STYLES
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES - Brazilian Touch Identity
   ============================================ */
:root {
    /* Cores da marca */
    --color-primary: #2D4229;
    --color-primary-dark: #1E2D1B;
    --color-primary-light: #3D5A37;
    --color-accent: #C9A86F;
    --color-accent-light: #D4B982;

    /* Cores neutras */
    --color-cream: #F8F5F0;
    --color-cream-dark: #EDE8E0;
    --color-white: #FFFFFF;
    --color-text: #2D2D2D;
    --color-text-light: #555555;
    --color-text-muted: #888888;

    /* Tipografia */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Espaçamentos */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Efeitos */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   BACKGROUND DECORATIONS
   ============================================ */
.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 168, 111, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 168, 111, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.links-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HEADER / LOGO
   ============================================ */
.links-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.logo-image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xs);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ============================================
   LINKS LIST
   ============================================ */
.links-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.link-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-primary);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.link-card:nth-child(1) {
    animation-delay: 0.4s;
}

.link-card:nth-child(2) {
    animation-delay: 0.5s;
}

.link-card:nth-child(3) {
    animation-delay: 0.6s;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
}

.link-card:active {
    transform: translateY(-2px);
}

.link-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition);
}

.link-card:hover .link-icon {
    background: var(--color-accent);
}

.link-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-white);
}

.link-content {
    flex: 1;
}

.link-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.link-description {
    font-size: 13px;
    color: var(--color-text-light);
}

.link-arrow {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform var(--transition);
}

.link-card:hover .link-arrow {
    transform: translateX(4px);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-section {
    margin-top: var(--space-2xl);
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================
   FOOTER
   ============================================ */
.links-footer {
    margin-top: var(--space-2xl);
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.footer-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.footer-address {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-sm);
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.gold-line {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin: var(--space-lg) auto 0;
    opacity: 0.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
    body {
        padding: var(--space-md);
    }

    .brand-name {
        font-size: 2rem;
    }

    .link-card {
        padding: var(--space-md) var(--space-lg);
    }

    .link-icon {
        width: 44px;
        height: 44px;
    }

    .link-title {
        font-size: 1.1rem;
    }

    .link-description {
        font-size: 12px;
    }
}