/* ===== RESET Y VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #ffffff; /* Cambiado a blanco */
    --background-color: #000000; /* Cambiado a negro */
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(255,255,255,0.1); /* Shadow más visible */
}

/* ===== ESTILOS GENERALES ===== */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    position: relative;
    overflow-x: hidden;
}
/* EFECTO CONSTELACIONES - MUY VISIBLE */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Estrellas grandes brillantes */
        radial-gradient(4px 4px at 10% 20%, rgba(255,255,255,0.9), transparent),
        radial-gradient(4px 4px at 20% 70%, rgba(255,255,255,0.9), transparent),
        radial-gradient(4px 4px at 40% 40%, rgba(255,255,255,0.8), transparent),
        radial-gradient(4px 4px at 60% 10%, rgba(255,255,255,0.9), transparent),
        radial-gradient(4px 4px at 80% 60%, rgba(255,255,255,0.8), transparent),
        radial-gradient(4px 4px at 90% 90%, rgba(255,255,255,0.9), transparent),
        radial-gradient(4px 4px at 15% 50%, rgba(255,255,255,0.8), transparent),
        radial-gradient(4px 4px at 75% 30%, rgba(255,255,255,0.9), transparent),
        
        /* Estrellas medianas */
        radial-gradient(2px 2px at 30% 15%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 50% 80%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 70% 45%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 25% 65%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 85% 75%, rgba(255,255,255,0.6), transparent),
        
        /* Estrellas pequeñas */
        radial-gradient(1px 1px at 5% 35%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 35% 5%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 95% 25%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 55% 55%, rgba(255,255,255,0.4), transparent);
    z-index: -1;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { 
        opacity: 0.7; 
        filter: brightness(0.8);
    }
    100% { 
        opacity: 1; 
        filter: brightness(1.2);
    }
}
/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.9); /* Fondo semi-transparente */
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo-img {
    height: 40px; /* Mantiene el tamaño original del contenedor */
    width: auto;
    transform: scale(5.5); /* Agranda la imagen 1.8x sin mover nada */
    transform-origin: left center; /* Se agranda desde la izquierda */
}

.nav-link {
    text-decoration: none;
    color: var(--white); /* Letras blancas */
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar {
    display: flex;
    gap: 1rem; /* Espacio entre "Sobre mí", "Mi equipo", "Contacto" */
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
.main-content {
    margin-top: 80px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    padding: 2rem 5%;
    gap: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 300px;
    display: flex;
    
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-height: 1000px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
    border: 1px solid #333;
}

.hero-text {
    padding: 2rem;
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white); /* Titulo blanco */
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc; /* Texto gris claro */
}

/* ===== BOTÓN CTA ===== */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #111111; /* Fondo más oscuro para footer */
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #cccccc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        gap: 1.5rem;
    }
    
    .navbar {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .header {
        padding: 1rem;
    }
    
    .hero-text {
        padding: 1rem;
    }
}
/* ===== ESTILOS PÁGINA EQUIPO ===== */
.team-intro {
    text-align: center;
    padding: 4rem 2rem 2rem;
    margin-top: 60px;
}

.team-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.team-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.equipo-section {
    padding: 2rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.equipo-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.equipo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    border-color: var(--secondary-color);
}

.equipo-image {
    flex-shrink: 0;
}

.item-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #333;
}

.equipo-info {
    flex: 1;
}

.item-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.item-description {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .equipo-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .team-title {
        font-size: 2rem;
    }
    
    .item-img {
        width: 100px;
        height: 100px;
    }
}
/* ===== ESTILOS PÁGINA CONTACTO ===== */
.contact-hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    margin-top: 60px;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.contact-form h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #999;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* ===== ESTILOS PÁGINA SOBRE MÍ ===== */
.about-hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    margin-top: 60px;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.about-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid #333;
}

/* SEGUNDA SECCIÓN CON FOTO A LA DERECHA */
.about-profile.reverse {
    grid-template-columns: 1fr 300px;
}

.about-profile.reverse .profile-info {
    order: 1;
}

.about-profile.reverse .profile-image {
    order: 2;
}

.profile-image {
    text-align: center;
}

.profile-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.profile-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.profile-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
}

.music-style h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.music-style ul {
    list-style: none;
    padding: 0;
}

.music-style li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

.music-style li:last-child {
    border-bottom: none;
}

.music-style li::before {
    content: "🎶";
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .about-profile,
    .about-profile.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-profile.reverse .profile-info,
    .about-profile.reverse .profile-image {
        order: unset;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    .profile-img {
        width: 200px;
        height: 200px;
    }
}