
:root {
    --primary-blue: #19A3DF;
    --dark-blue: #000327;
    --white: #ffffff;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Orbitron', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #000;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
}

/* Fundo Animado */
@keyframes slowPan {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-3%, -3%) scale(1.08); }
}

.bg-layer {
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('./hero_truck_br.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: slowPan 25s ease-in-out infinite alternate;
}

.overlay-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,3,39,0.5) 0%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
}

/* Make container border glow slightly */
.bio-container {
    position: relative;
    z-index: 1;
    width: 95%; /* Make it almost 100% width */
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 1.2rem; /* Less horizontal padding so cards can expand */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(25, 163, 223, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header */
.bio-header {
    text-align: center;
}

.logo-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
}

.brand-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 400;
}

/* Links */
.bio-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.link-card {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 160px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,3,39,0.95) 0%, rgba(0,3,39,0.3) 100%);
    z-index: 1;
    transition: var(--transition);
}

.link-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0,3,39,0.95) 0%, rgba(0,3,39,0.1) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 1.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.card-cta {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.card-cta.highlight {
    color: var(--primary-blue);
}

.link-card:hover .card-cta {
    color: var(--white);
}

.link-card:hover .card-cta.highlight {
    color: var(--primary-blue);
    filter: brightness(1.2);
}

/* Social */
.bio-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.bio-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.8rem;
    transition: var(--transition);
    text-decoration: none;
}

.bio-social a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px) scale(1.1);
}
