@font-face {
    font-family: 'nunito';
    src: url(fuentes/Nunito_Sans/NunitoSans-VariableFont_YTLC\,opsz\,wdth\,wght.ttf) format('woff');
}





body{
    background-color: #1b1717 !important;
    font-family: 'nunito';
    font-weight: 400;
      font-size: 1rem;
      padding-top: 70px;

}

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }


}

body {
    margin: 0;
    padding-top: 120px;
    font-family: sans-serif;
    background: rgba(167, 167, 167, 0.1);
}

/* NAVBAR */
.custom-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    border-radius: 60px;
    padding: 18px 50px;
    background: #810100;
    transition: all 0.4s ease;
    z-index: 1000;
}

.custom-navbar.scrolled {
    top: 10px;
    padding: 12px 40px;
    background: rgba(129, 1, 0, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 40px;
}

.nav-left a,
.nav-right a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-center img {
    width: 55px;
    transition: transform 0.4s ease;
}

.logo-link:hover img {
    transform: scale(1.15) rotate(5deg);
}

/* ================= SUBRAYADO ANIMADO PRO ================= */

.nav-left a::after,
.nav-right a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: white; /* como tu navbar es roja, usamos blanco */
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Hover */
.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

/* Activo opcional */
.nav-left a.active::after,
.nav-right a.active::after {
    width: 100%;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: subtleZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(129, 1, 0, 0.85) 0%,
        rgba(90, 0, 0, 0.75) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 0 40px;
}

.hero-text {
    max-width: 700px;
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    font-size: 12px;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: white;
    color: #810100;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #810100;
}

/* ================= SCROLL INDICATOR NUEVO ================= */
/* ================= SCROLL INDICATOR PREMIUM ================= */

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    z-index: 3;
}

/* Línea animada interna */
.scroll-indicator::after {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 40%;
    background: white;
    animation: scrollPremium 2.2s cubic-bezier(.76,0,.24,1) infinite;
}

/* Animación suave */
@keyframes scrollPremium {
    0% {
        top: -40%;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}


/* ================= SOY PREMIUM ================= */

.soy-section {
    position: relative;
    padding: 160px 8%;
    background-color: #1b1717;
    color: white;
}

/* Textura sutil SIN tapar contenido */
.soy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.soy-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

/* Tag */
.soy-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    display: inline-block;
}

/* Título */
.soy-text h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 30px;
}

.highlight {
    color: #810100;
}

/* Texto */
.soy-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    max-width: 520px;
}

/* Métricas */
.soy-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.soy-stats h3 {
    font-size: 28px;
    color: #810100;
    margin-bottom: 5px;
}

.soy-stats span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Firma */
.soy-signature {
    margin-top: 60px;
    font-size: 22px;
    font-family: cursive;
    color: rgba(255,255,255,0.7);
}

/* Imagen */
.soy-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    object-fit: cover;
    filter: grayscale(100%) contrast(110%);
    transition: all 0.6s ease;
}

.soy-image img:hover {
    transform: scale(1.04);
    filter: grayscale(0%);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .soy-container {
        grid-template-columns: 1fr;
        gap: 70px;
        text-align: center;
    }

    .soy-stats {
        justify-content: center;
        gap: 30px;
    }

    .soy-text h2 {
        font-size: 38px;
    }
}

.Cont{
    color: white;
    padding: 30px;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_r{
    padding: 30px;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_m{
    padding: 10px;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_ma{
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 10px;
    margin-right: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_e{
    padding: 70px;
    border-radius: 30px;
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_en{
    padding: 20px;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_re{
    align-items: center;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;

}

.Cont_rer{
    padding: 5px;
    border-radius: 30px;
    margin-left: 5px;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out;

}

/* Estilos base para todos los íconos */
.icon-container {
    padding: 5px;
    margin: 2px;
    border-radius: 30px;
    background-color: #810100;
    animation: fadeIn 1.5s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;              /* Para centrar el icono */
    justify-content: center;
    align-items: center;
  }
  
  .icon-container:hover {
    transform: scale(1.05);
  }
  
  /* Si en el futuro necesitas colores diferentes por ícono */
  .Cont_ins { background-color: #810100; }
  .Cont_lin { background-color: #810100; }
  .Cont_be  { background-color: #810100; }
  .Cont_mail{ background-color: #810100; }
  
  /* Control proporcional de las imágenes */
  .icon-container img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }
  

/* ================= FONDO CINEMÁTICO ================= */
.proyectos-section {
    position: relative;
    padding: 180px 8%;
    background: radial-gradient(circle at 30% 20%, #2a0000 0%, #120909 40%, #0d0d0d 100%);
    overflow: hidden;
}

.proyectos-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129,1,0,0.4) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    filter: blur(120px);
    opacity: 0.4;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from { transform: translateY(0px); }
    to { transform: translateY(40px); }
}

/* ================= HEADER ================= */
.proyectos-header {
    text-align: center;
    margin-bottom: 120px;
    color: white;
}

.proyectos-header h2 {
    font-size: 50px;
    margin-bottom: 15px;
}

.proyectos-tag {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* ================= GRID CARDS ================= */
.proyectos-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    perspective: 1500px;
}

/* CARD BASE */
.proyecto-card {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease, border-color 0.4s ease;
    will-change: transform;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

/* CENTRAL LIGERAMENTE MÁS ALTA */
.central {
    height: 550px;
}

/* IMAGEN + MICRO REFLECTION */
.proyecto-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.proyecto-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(65%);
    transition: transform 1s ease, filter 0.6s ease;
    border-radius: 30px;
}

/* REFLECTION */
.image-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.05), transparent 60%);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

/* INFO CARD */
.proyecto-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 3;
}

.proyecto-info h3 {
    font-size: 26px;
    margin: 10px 0;
}

.categoria {
    background: #810100;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

/* BOTÓN */
.ver-btn {
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid white;
    background: transparent;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
}

/* HOVER PREMIUM */
.proyecto-card:hover img {
    transform: scale(1.08);
    filter: brightness(85%);
}

.proyecto-card:hover .image-reflection {
    opacity: 0.5;
}

.proyecto-card:hover .ver-btn {
    opacity: 1;
    transform: translateY(0);
}

.proyecto-card:hover {
    box-shadow: 0 60px 140px rgba(129,1,0,0.4);
    border-color: rgba(129,1,0,0.6);
}

/* ================= CURSOR CÍRCULO SOLO ================= */
body {
    cursor: none;
}

/* Cursor grande (anillo) */

/* Cursor principal */
.cursor {
    position: fixed;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;

    border: 2px solid #810100;

    /* Fondo semi transparente */
    background: rgba(255, 255, 255, 0.05);

    /* EFECTO NEGATIVO REAL */
    backdrop-filter: invert(1);
    -webkit-backdrop-filter: invert(1);

    transition:
        width 0.3s ease,
        height 0.3s ease,
        border 0.3s ease;
}

/* Punto central */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Estado activo */
.cursor.active {
    width: 70px;
    height: 70px;
    background: rgba(129, 1, 0, 0.15);
    border: 2px solid white;
}

/* ================= FADE-IN ESCALONADO ================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================= MÉTRICAS ULTRA ================= */

.metrics-section {
    position: relative;
    padding: 180px 8%;
    background: radial-gradient(circle at center, rgba(129,1,0,0.15), #0d0d0d 70%);
    text-align: center;
    overflow: hidden;
}

/* Línea roja animada arriba */
.metrics-top-line {
    width: 0%;
    height: 3px;
    background: #810100;
    margin: 0 auto 100px auto;
    transition: width 1.2s cubic-bezier(.17,.67,.33,1);
}

.metrics-section.visible .metrics-top-line {
    width: 60%;
}

/* Contenedor */
.metrics-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Glass cards */
.metric-item {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    background: rgba(255, 255, 255, 0.85);
    border-radius: 30px;
    padding: 70px 60px;
    width: 270px;

    box-shadow: 
        0 20px 50px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.3);

    transform: translateY(70px);
    opacity: 0;

    transition: 
        transform 1s cubic-bezier(.17,.67,.33,1),
        opacity 1s ease,
        box-shadow 0.4s ease;
}

.metric-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.metric-item:nth-child(2) { transition-delay: 0.15s; }
.metric-item:nth-child(3) { transition-delay: 0.3s; }

.metric-item h2 {
    font-size: 76px;
    font-weight: 700;
    color: #810100;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

.metric-item p {
    font-size: 15px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.metric-item:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 35px 80px rgba(129,1,0,0.3),
        inset 0 0 0 1px rgba(255,255,255,0.4);
}

/* ================= EXPERIENCIA ULTRA ================= */

.experience-section {
    position: relative;
    padding: 220px 8%;
    background: linear-gradient(to bottom, #0a0a0a, #050505);
    color: white;
    overflow: hidden;
}

/* Línea superior conectando métricas */
.experience-top-line {
    width: 0%;
    height: 3px;
    background: #810100;
    margin: 0 auto 100px auto;
    transition: width 1.2s cubic-bezier(.17,.67,.33,1);
}

.experience-section.visible .experience-top-line {
    width: 60%;
}

.experience-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 150px;
    color: #810100;
}

/* Línea central vertical */
.experience-timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.experience-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 0%;
    background: #810100;
    transform: translateX(-50%);
    transition: height 1.5s ease;
}

.experience-section.visible .experience-timeline::before {
    height: 100%;
}

/* Items */
.exp-item {
    width: 50%;
    padding: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    transition: 
        opacity 1s ease,
        transform 1s cubic-bezier(.17,.67,.33,1);
}

.exp-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.exp-item.left {
    left: 0;
    text-align: right;
}

.exp-item.right {
    left: 50%;
}

.exp-content {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.exp-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(129,1,0,0.3);
}

.exp-period {
    font-size: 14px;
    color: #810100;
    letter-spacing: 1px;
}

.exp-role {
    font-size: 22px;
    margin: 10px 0;
    font-weight: 700;
}

.exp-desc {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}


/* Index */


/* Acerca */

.Acerca{
    padding: 20px;
    margin-top: 40px;
    color: white;
    background-color: rgba(57, 57, 57, 10);
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Acerca_r{
    padding: 10px;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Acerca_a{
    padding: 10px;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Acerca_s{

    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}


.Prog{
    padding: 20px;
    margin-top: 40px;
    color: white;

    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Prog_r{
    padding: 10px;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.Prog_u{
    padding: 10px;
    border-radius: 30px;
    align-items: center;
    text-align: center;
    background-color: rgba(57, 57, 57, 10);
    margin-right: 143px;
    animation: fadeIn 1.5s ease-in-out;
}
.Prog_u_t{
    padding: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    animation: fadeIn 1.5s ease-in-out;
}

.Prog_f{
    padding: 10px;
    border-radius: 30px;
    align-items: center;
    text-align: center;
    background-color: rgba(57, 57, 57, 10);
    margin-right: 143px;
    animation: fadeIn 1.5s ease-in-out;
}

.Prog_b{
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    background-color: rgba(57, 57, 57, 10);
    margin-right: 143px;
    animation: fadeIn 1.5s ease-in-out;
}

.Prog_fr{
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    background-color: rgba(57, 57, 57, 10);
    animation: fadeIn 1.5s ease-in-out;

}
/* Acerca */

/* Musica */
.musica{
    border-radius: 30px;
    color: white;
    padding: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Musica */


/* Servicios */
.proy{
    color: white;
    background-color: rgba(167, 167, 167, 0.1);
    border-radius: 30px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-in-out;
}

.proy_i{
    background-color: rgba(58, 58, 58, 100);
    border-radius: 30px;
    padding: 10px;
    animation: fadeIn 1.5s ease-in-out;
}

.Tienes{
    color: white;
    background-color: rgba(167, 167, 167, 0.1);
    border-radius: 30px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-in-out;
}

.Tienes_c{
    color: white;
    background-color: #EB2615;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.Tienes_c:hover {
    transform: scale(1.05);
    
  }
/* Servicios */



/* Contacto */
.cont{
    padding: 30px;
    color: white;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.cont_c{
    color: white;
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-in-out;
}

.cont_t{
    color: white;
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-in-out;
}
.Cont_re{
    padding-bottom: 10px;
    animation: fadeIn 1.5s ease-in-out;
}


.Cont_ins{
    padding: 10px;
    margin-left: 18px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_lin{
    padding: 10px;
    margin-left: 18px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_be{
    padding: 10px;
    margin-left: 18px;
    animation: fadeIn 1.5s ease-in-out;
}

.Cont_mail{
    padding: 10px;
    margin-left: 18px;
    animation: fadeIn 1.5s ease-in-out;
}

.Mensaje{
    padding: 30px;
    color: white;
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;

}

.Mensaje_n{
    padding: 30px;
    background-color: rgba(217, 217, 217, 0.2);
    border-radius: 30px;
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-in-out;


}

.Mensaje_c{
    padding: 30px;
    background-color: rgba(217, 217, 217, 0.2);
    border-radius: 30px;
    animation: fadeIn 1.5s ease-in-out;


}

.Mensaje_r{
    background-color: rgba(167, 167, 167, 0.1);
    border-radius: 30px;
    padding: 30px;
    animation: fadeIn 1.5s ease-in-out;

}

.Mensaje2_m{
    padding: 20px;
    color: white;
    border-radius: 30px;
    background-color: rgba(217, 217, 217, 0.2);
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-in-out;
}

.Mensaje2_e{
    background-color: #96473F;
    text-align: end;
    border-radius: 30px;
    padding: 20px;
    margin-top: 10px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Contacto */

/* Animacion imagenes musica */
.imagen-hover-kid {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .imagen-hover-kid:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

  .imagen-hover-billie {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .imagen-hover-billie:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }


  .imagen-hover-bunkers {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .imagen-hover-bunkers:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
/* Animacion imagenes musica */

/* Animacion imagenes servicios */
.hover-img-servicios {
    
    margin-top: 20px;
    text-align: center;
    
  }
  
  
  .hover-img-servicios img {
    
    width: 100%;
    border-radius: 15px;
    display: block;
    
  }
  
  /* Texto encima de la imagen */
  .texto-sobre-imagen {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    top: 50%;             /* centra verticalmente */
    left: 50%;            /* centra horizontalmente */
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* mejora visibilidad */
  }
  
  
  
  .hover-img-servicios:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  .hover-img-redes{
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
  }

  .hover-img-redes:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }

  .hover-img-mas{
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
  }

  .hover-img-mas:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }

/* Animacion imagenes servicios */


/*Videojuegos*/
.vidCards{
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}
.vidCards:hover{
    transform: scale(1.05);
    opacity: 0.9;
}