/* Variables de Color */
:root {
    --primary: #1a1a1a;
    --accent: #f3f3f3;
    --text-muted: #888;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span { color: #555; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Team Cards */
.team-section {
    padding: 100px 5%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    position: relative;
    background: #111;
    height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid #222;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #444;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn:hover {
    background: white;
    color: black;
}

/* Animaciones */
.fade-in {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
    padding: 50px 5%;
    text-align: center;
    border-top: 1px solid #222;
}

.social-icons {
    margin-top: 20px;
}

.social-icons i {
    margin: 0 15px;
    cursor: pointer;
    color: #555;
    transition: 0.3s;
}

.social-icons i:hover { color: white; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .nav-links { display: none; }
}