:root {
    --bg-dark: #00050a;
    --u-green: #a2d45e;
    --u-blue: #00d4ff;
    --glass: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

.mesh-gradient {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 212, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(162, 212, 94, 0.07) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(0, 5, 10, 1) 0px, transparent 100%);
}

.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content-box {
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

/* LOGO: CORRECCIÓN DEFINITIVA */
.main-logo {
    width: 100%;
    max-width: 320px;
    height: auto !important; /* Fuerza a respetar la proporción original del archivo */
    display: block;
    margin: 0 auto 25px auto;
    object-fit: contain;     /* Asegura que no se deforme si el contenedor cambia */
    filter: drop-shadow(0 0 15px rgba(162, 212, 94, 0.15));
}

/* TITULAR: Ajuste de dos líneas */
.experience-tag {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-tag .sub-line {
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
}

.specialty-text {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: #ccc;
    margin-bottom: 35px;
}

.specialty-text strong { color: var(--u-blue); }

/* BOTÓN: Animación de pulso */
.player-container { margin-bottom: 45px; }

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.btn-play-modern {
    background: white;
    color: var(--bg-dark);
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
    animation: pulse-white 3s infinite;
}

.btn-play-modern:hover {
    background: var(--u-blue);
    color: white;
    transform: translateY(-2px);
    animation: none;
}

/* SERVICIOS */
.services-section {
    background: var(--glass);
    padding: 30px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.services-title {
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--u-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.9;
}

.services-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.service-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 5px;
    border-radius: 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card i { color: var(--u-blue); margin-right: 6px; font-size: 0.8rem; }

.service-card:hover { 
    border-color: var(--u-green); 
    background: rgba(162, 212, 94, 0.05); 
}

/* FOOTER */
.footer-contact { margin-top: 40px; }
.contact-label { font-size: 0.7rem; color: var(--u-green); letter-spacing: 2px; margin-bottom: 5px; }
.mail-link { color: white; text-decoration: none; font-size: 1rem; font-weight: 300; opacity: 0.8; }
.mail-link:hover { color: var(--u-blue); opacity: 1; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-grid { flex-wrap: wrap; }
    .service-card { flex: 1 1 45%; font-size: 0.85rem; padding: 15px; }
    .main-logo { max-width: 260px; }
}

@media (max-width: 480px) {
    .service-card { flex: 1 1 100%; }
}