:root {
    --bg-color: #20201f;
    --card-bg: #12141c;
    --turquoise: #00f2fe;
    --magenta: #ff007f;
    --text-color: #e0e6ed;
    --text-muted: #94a3b8;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --glow-turquoise: 0 0 15px rgba(0, 242, 254, 0.4);
    --glow-magenta: 0 0 15px rgba(255, 0, 127, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header y Navegación --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(11, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
   width: 200px;
	height: 100px;
	background-image: url("prog/5e2f6854fea47a9932869c1fb5677852.png");
	top: 100px;
	left: 0px
		
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-color);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    box-shadow: var(--glow-turquoise);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    min-height: 80vh;
    gap: 3rem;
    background: radial-gradient(circle at 10% 20%, rgba(255, 0, 127, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.05) 0%, transparent 40%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.promo-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 127, 0.15);
    border: 1px solid var(--magenta);
    color: var(--magenta);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-magenta);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--turquoise), #00a8ff);
    color: #000;
    font-weight: 800;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-turquoise);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.7);
}

.hero-shot {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-shot img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    /* Iluminación mixta cálida y fría */
    box-shadow: -15px -15px 30px rgba(255, 0, 127, 0.3), 
                15px 15px 30px rgba(0, 242, 254, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

/* --- Redes Sociales --- */
.social-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    background: rgba(18, 20, 28, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-icon:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff; /* Monotinta */
}

/* --- Sección Miembros --- */
.members-section {
    padding: 5rem 5%;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--turquoise));
    border-radius: 2px;
}

.members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.member-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(25% - 1.5rem);
    min-width: 220px;
}

.member-btn img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--turquoise);
}

.member-btn:hover {
    border-color: var(--magenta);
    transform: translateY(-5px);
    box-shadow: var(--glow-magenta);
}

/* --- Pie de Página --- */
footer {
    background: #060709;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us {
    max-width: 500px;
}

.about-us h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--turquoise);
}

.about-us p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .member-btn {
        width: 100%;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
