.bloque-precio-absoluto {
display: none;
}


.subtitulo-canciones span {
    color: red;

}

.boton-ejemplos {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    color: gray;
}

.boton-ejemplos:hover {
    color: darkorange;
}

.boton-cancion:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    filter: brightness(0.9);
}

.boton-cancion {
    width: 40%;
}



@media (max-width: 768px) {
    .boton-cancion {
        width: 70%;
    }

    .bloque-precio-absoluto {
        display: flex;
            background: linear-gradient(to bottom,
            rgb(255, 255, 255) 100%,
            rgb(255, 255, 255) 100%);
        position: absolute;
        width: 100%;
        height: 7%;
        z-index: 999;
        position: fixed;
        bottom: 0;
        align-items: center;
        justify-content: center; /* ¡AÑADE ESTO! Centra horizontalmente */
        left: 0; /* Asegura que empiece desde la izquierda */
            /* Sombra superior */
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    

    }
.bloque-precio-absoluto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
    .bloque-precio-absoluto-precio{
        color: black;
        margin-left: 8px;
    }
    .separacion-precio-absoluto{
        color: #ff9900;
        font-weight: 600;
    }
    .scroll-top{
        margin-bottom: 50px;
    }
    .whatsapp-float{
        margin-bottom: 50px;
    }
    .absoluto-bloque{
            display: inline-block;
    background: linear-gradient(135deg, #fd7c7cff, #ff6a50ff, #ff8e53, #f8742cff);
    color: white;
    padding: 12px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;

align-items: center;
        
    }
    .precio-antiguo{
        position: absolute;
        margin-top: 11px;
        margin-left: 6px;
        font-size: 12px;
    }
    .precio-nuevo{
        font-size: 22px;
        margin-bottom: 3px;
    }
}

/* Fondo pastel estático - COLOR PRINCIPAL */
.fondo-pastel {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(circle at 50% 55%,
            rgba(255, 214, 160, 0.85) 0%,
            /* naranja claro */
            rgba(255, 236, 210, 0.85) 45%,
            /* crema cálida */
            rgba(255, 255, 255, 0.85) 70%
            /* casi blanco */
        ),
        linear-gradient(180deg,
            rgba(255, 230, 200, 0.6),
            rgba(255, 245, 235, 0.6));

    background-size: 200% 200%;
    animation: manchaNotoria 2s ease-in-out infinite;

}

@keyframes manchaNotoria {
    0% {
        background-position: 60% 30%, 15% 15%;
    }

    50% {
        background-position: 40% 40%, 50% 60%;
    }

    100% {
        background-position: 60% 30%, 25% 25%;
    }
}






/* Estilos específicos para la sección */
#samples-section {
    position: relative;
    overflow: hidden;
}

/* Overlay transparente para mostrar las manchas */
.overlay-manchas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
    /* Entre las manchas y el contenido */
    pointer-events: none;
    mix-blend-mode: lighten;
}

/* Fondo de manchas - DEBAJO del overlay */
.fondo-manchas-seccion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Detrás de todo */
    pointer-events: none;
}

.mancha-seccion {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    /* Más blur para suavizar */
    opacity: 0.7;
    /* Más opacidad */
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* Asegurar que el contenido esté por encima de TODO */
#samples-section .container,
#samples-section .sec-title-wrap,
#samples-section .sec-sub-title,
#samples-section .sec-title,
#samples-section p {
    position: relative;
    z-index: 2;
    margin-bottom: -30px;
    /* Por encima del overlay */
}

/* OPCIÓN ALTERNATIVA: Si quieres manchas más intensas, usa esto en lugar del overlay */
/*
#samples-section {
  background-color: rgba(255,255,255,0.8) !important; 
  backdrop-filter: blur(10px);
}
*/

/* Si la sección tiene fondo blanco definido, anularlo */
#samples-section.package__area,
#samples-section.seccion-titulo {
    background: transparent !important;
}

/* Estilos específicos para el fondo de manchas en esta sección */
#samples-section {
    position: relative;
    /* Importante para contener el fondo */
    overflow: hidden;
    /* Para que las manchas no se salgan */
}

.fondo-manchas-seccion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Detrás del contenido pero dentro de la sección */
    pointer-events: none;
}

.mancha-seccion {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    mix-blend-mode: multiply;
    animation-duration: 15s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* Asegurar que el contenido esté por encima del fondo */
#samples-section .container,
#samples-section .sec-title-wrap,
#samples-section .sec-sub-title,
#samples-section .sec-title,
#samples-section p {
    position: relative;
    z-index: 1;
}

/* Animaciones específicas para la sección */
@keyframes movimiento-mancha-seccion-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, 40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes movimiento-mancha-seccion-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-40px, 30px) scale(0.9);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }

    75% {
        transform: translate(30px, 40px) scale(1);
    }
}

@keyframes movimiento-mancha-seccion-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    20% {
        transform: translate(25px, -15px) scale(1.1);
    }

    40% {
        transform: translate(-30px, 25px) scale(0.95);
    }

    60% {
        transform: translate(15px, 35px) scale(1.05);
    }

    80% {
        transform: translate(-20px, -10px) scale(0.9);
    }
}

/* Contenedor del fondo */
#fondo-manchas-suaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Estilos para cada mancha */
.mancha-color {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    mix-blend-mode: multiply;
    animation-duration: 15s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* Animaciones para las manchas */
@keyframes movimiento-suave-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, 40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes movimiento-suave-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-40px, 30px) scale(0.9);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }

    75% {
        transform: translate(30px, 40px) scale(1);
    }
}

@keyframes movimiento-suave-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    20% {
        transform: translate(25px, -15px) scale(1.1);
    }

    40% {
        transform: translate(-30px, 25px) scale(0.95);
    }

    60% {
        transform: translate(15px, 35px) scale(1.05);
    }

    80% {
        transform: translate(-20px, -10px) scale(0.9);
    }
}




.hero__area .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28%;
}


.hero-bg {
    width: 100%;
    height: 84px;
    /* Ajusta la altura a lo que quieras */
    object-fit: cover;
    /* Recorta sin deformar */
    display: block;
}

@media (max-width: 1999px) {
    .hero-bg {
        height: 105px;
    }
}



@media (max-width: 768px) {
    .hero-bg {
        height: 75px;
    }
}



/* Para el segundo cuadro que ya tiene scale 
.seccion-titulo{
    margin-top: 100px;
}
*/
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Para el segundo cuadro que ya tiene scale */
.package-card:nth-child(2) {
    transform: scale(1.02);
}

.package-card:nth-child(2):hover {
    transform: translateY(-10px) scale(1.02);
}

@media (max-width: 768px) {

    .package-card,
    .package-card:nth-child(2) {
        transform: none !important;
        margin-bottom: 30px;

    }

    .package-card:hover,
    .package-card:nth-child(2):hover {
        transform: translateY(-5px) !important;
    }
}

.premium-card {
    transform: scale(1.02);
}

.package-card:hover,
.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {

    .package-card,
    .premium-card {
        transform: none !important;
        margin-bottom: 30px;
        height: 0%;
    }

    .package-card:hover,
    .premium-card:hover {
        transform: translateY(-5px) !important;
    }
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f8f9ff;
    padding-left: 15px;
    transform: translateX(5px);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

/* Para el paquete premium */
.premium-card .feature-item:first-child i {
    color: #ff6b6b;
}

/* Efectos hover para los pasos */
.step-item:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Efectos para el botón de WhatsApp */
.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

.whatsapp-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 1.8rem !important;
    }

    .step-item {
        padding: 0.8rem !important;
    }

    .whatsapp-cta {
        padding: 1.5rem !important;
    }

    .whatsapp-btn {
        padding: 10px 25px !important;
        font-size: 0.95rem;
    }
}



.what-is-section {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.what-is-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.what-is-toggle:hover {
    color: #ff8e53;
}

.what-is-toggle i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.what-is-toggle.active i {
    transform: rotate(180deg);
}

.video-container {
    display: none;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* Relación 16:9 */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 107, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 107, 107, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 107, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    /* AÑADE ESTA LÍNEA */
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    /* AÑADE ESTA LÍNEA */
}

.shake {
    display: inline-block;
    animation: shakeRotate 600ms ease-in-out 2;
}

/* Animación */
@keyframes shakeRotate {
    0% {
        transform: translateX(0) rotate(0deg);
    }

    15% {
        transform: translateX(-2px) rotate(-2deg);
    }

    30% {
        transform: translateX(2px) rotate(2deg);
    }

    45% {
        transform: translateX(-2px) rotate(-2deg);
    }

    60% {
        transform: translateX(2px) rotate(2deg);
    }

    75% {
        transform: translateX(-1px) rotate(-1deg);
    }

    100% {
        transform: translateX(0) rotate(0deg);
    }
}

.cancion-simple-detalles {
    padding-bottom: -10px;
}

/*--------------- */
/* --- HEADER --- */
/*----------------*/


.base-example {
    background-color: black;
    color: white;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;

    /* Flexbox para 3 columnas */
    display: flex;
    gap: 30px;
}

.bloq-example {
    background-color: white;
    position: relative;
    flex: 1;
    min-width: 0;

    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

    overflow: hidden;
    /* MUY IMPORTANTE */
}

/* Capa azul */
.fondo-azul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* 👈 controla aquí el porcentaje */
    height: 30%;
    background-color: #eeb77859;
    color: black;
}

/* Contenido */
.contenido {
    position: relative;
    /* para quedar encima del azul */
    padding: 25px;
    color: black;
}


/* Contenido dentro se ajusta */
.bloq-example>* {
    max-width: 100%;
    /* Todo el contenido al 100% */
}

/* Tablet: ajuste más fino */
@media (min-width: 768px) and (max-width: 1024px) {
    .base-example {
        gap: 20px;
        padding: 30px 15px;
    }

    .bloq-example {
        padding: 20px;
        font-size: 0.95em;
        /* Reduce ligeramente el texto */
    }
}

/* MÓVIL: cambia a 1 columna */
@media (max-width: 767px) {
    .base-example {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .bloq-example {
        width: 100%;
        flex: none;
        padding: 20px;
    }
}





/* CSS específico para el caso real - NO interfiere con tu web */
.caso-real-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.caso-real-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1200px;
}

.caso-real-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Encabezado con etiquetas */
.caso-real-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.etiquetas {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.etiqueta {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.etiqueta.balada {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.etiqueta.triste {
    background: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    color: white;
}

.etiqueta.voz-masculina {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.etiqueta.caso-real {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

/* Título */
.caso-real-titulo {
    padding: 20px 30px 18px;
}

.caso-real-titulo h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

/* Descripción */
.caso-real-descripcion {
    padding: 15px 30px 35px;
}

.caso-real-descripcion p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
    margin: 0;
    margin-bottom: -10px;
}

.caso-real-titulo p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
    margin: 0;
    margin-bottom: -10px;
    font-weight: 600;
}

/* Separador */
.caso-real-separador {
    padding: 0 30px;
}

.caso-real-separador hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 0;
}

/* Audio player */
.caso-real-audio {
    padding: 1px 30px 30px;
}

.audio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.audio-texto {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.audio-duracion {
    font-size: 0.8rem;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 15px;
}

/* Controles de audio */
.audio-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.audio-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.audio-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.audio-play-btn.playing svg {
    transform: translateX(1px);
}

/* Barra de progreso */
.audio-progress-container {
    flex: 1;
}

.audio-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
    cursor: pointer;
}

.audio-progress-fill {
    height: 100%;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Responsive */
@media (max-width: 768px) {
    .caso-real-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .caso-real-titulo h2 {
        margin-top: -12px;
        margin-bottom: -15px;
    }

    .caso-real-titulo h2 {
        font-size: 1.3rem;
    }

    .caso-real-descripcion p {
        font-size: 0.9rem;
    }

    .etiquetas {
        justify-content: center;
    }

    .audio-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-bottom: 10px;
    }

    .audio-controls {
        flex-direction: column;
        gap: 15px;
    }

    .audio-play-btn {
        width: 60px;
        height: 60px;
    }

    .audio-progress-container {
        width: 100%;
    }

    .etiquetas {
        margin-bottom: -2px;
        margin-top: -5px;
    }
}

@media (max-width: 480px) {

    .caso-real-header,
    .caso-real-titulo,
    .caso-real-descripcion,
    .caso-real-audio {
        padding-left: 20px;
        padding-right: 20px;
    }

    .caso-real-titulo h2 {
        font-size: 1.4rem;
    }

    .etiqueta {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* Contenedor grid de 3 columnas */
.casos-reales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas iguales */
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
}

@media (max-width: 1400px) {
    .casos-reales-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 2 columnas */
        gap: 25px;
        padding: 0 15px;
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .casos-reales-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 2 columnas */
        gap: 25px;
        padding: 0 15px;
    }
}


/* RESPONSIVE - Tablet: 2 columnas */
@media (max-width: 1024px) {
    .casos-reales-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 2 columnas */
        gap: 25px;
        padding: 0 15px;
    }
}

/* RESPONSIVE - Móvil: 1 columna */
@media (max-width: 768px) {
    .casos-reales-grid {
        grid-template-columns: 1fr;
        /* 1 columna */
        gap: 20px;
        padding: 0 15px;
        width: 80%;
    }
}

/* Estados del botón de play */
.audio-play-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audio-play-btn:active {
    transform: scale(0.95);
}

.audio-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.audio-play-btn:active::after {
    width: 100px;
    height: 100px;
}

/* Barra de progreso interactiva */
.audio-progress-bar:hover .audio-progress-fill {
    background: linear-gradient(to right, #5a6fd8, #6a48a1);
}

.audio-progress-bar:active .audio-progress-fill {
    background: linear-gradient(to right, #4a5fc8, #5a3891);
}

/* Indicador de tiempo al pasar el mouse */
.audio-progress-bar {
    position: relative;
    height: 12px;
}

.audio-progress-bar:hover::before {
    content: attr(data-time);
    position: absolute;
    top: -30px;
    left: var(--mouse-x, 0);
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10;
}

/* Loading state */
.audio-play-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.audio-play-btn.loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#div-precio-fijo {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.precio-oculto {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.subtitulo-pequeño {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.subtitulo-pequeño2 {
  font-size: 48px;
  font-weight: 700;
  padding-bottom: 25px;
  padding-top: 70px;
  text-transform: uppercase;
}



/* 
=====================================
======== 4 PASOS SIMPLES ============
=====================================
*/ 

        .cancion-proceso {
            font-family: 'Arial', sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background: white;
        }

        .cancion-header {
            text-align: center;
            margin-bottom: 1px;
        }

        .cancion-header h1 {
            color: #2c3e50;
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .cancion-header p {
            color: #666;
            font-size: 18px;
            margin: 0;
        }

        .cancion-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            position: relative;
        }

        /* Línea conectiva */
        .cancion-linea {
            position: absolute;
            top: 80px;
            left: 100px;
            right: 100px;
            height: 2px;
            background: linear-gradient(90deg, 
                #3498db 0%, 
                #3498db 33%, 
                #9b59b6 33%, 
                #9b59b6 66%, 
                #e74c3c 66%, 
                #e74c3c 100%);
            z-index: 1;
        }

        .cancion-paso {
            width: 260px;
            padding: 15px 20px;
            text-align: center;
            position: relative;
            z-index: 2;
            background: white;
        }

        .cancion-numero {
            width: 60px;
            height: 60px;
            background: #e74c3c;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 9px;
            position: relative;
            border: 5px solid white;
            box-shadow: 0 0 0 3px #e74c3c;
        }

        .cancion-paso:nth-child(2) .cancion-numero {
            background: #e74c3c;
            box-shadow: 0 0 0 3px #e74c3c;
        }

        .cancion-paso:nth-child(3) .cancion-numero {
            background: #e74c3c;
            box-shadow: 0 0 0 3px #e74c3c;
        }

        .cancion-paso:nth-child(4) .cancion-numero {
            background: #e74c3c;
            box-shadow: 0 0 0 3px #e74c3c;
        }

        .cancion-paso h3 {
            color: #2c3e50;
            font-size: 20px;
            margin: 0 0 10px;
            font-weight: 600;
            /*min-height: 48px; */
        }

        .cancion-tiempo {
            display: inline-block;
            background: #f8f9fa;
            color: #e74c3c;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 14px;
            border: 2px solid #e74c3c;
        }

        .cancion-paso:nth-child(2) .cancion-tiempo {
            color: #e74c3c;
            border-color: #e74c3c;
        }

        .cancion-paso:nth-child(3) .cancion-tiempo {
            color: #e74c3c;
            border-color: #e74c3c;
        }

        .cancion-paso:nth-child(4) .cancion-tiempo {
            color: #e74c3c;
            border-color: #e74c3c;
        }

        .cancion-paso p {
            color: #666;
            font-size: 15px;
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .cancion-steps {
                gap: 10px;
            }
            
            .cancion-paso {
                width: 230px;
            }
            
            .cancion-linea {
                left: 80px;
                right: 80px;
            }
        }

        @media (max-width: 768px) {
            .cancion-steps {
                flex-direction: column;
                align-items: center;
                gap: 1px;
            }
            
            .cancion-paso {
                width: 100%;
                max-width: 400px;
            }
            
            .cancion-linea {
                display: none;
            }
            
            .cancion-header h1 {
                font-size: 28px;
            }
            
            .cancion-header p {
                font-size: 16px;
            }
        }


        /* Contenedor principal */
        .sec-why-us {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 80px;
        }
        
        /* Grid de comparación */
        .block-why-us {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            justify-content: center;
            align-items: stretch;
        }
        
        /* Tarjetas de comparación */
        .why-explanation, .why-explanation2 {
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .why-explanation:hover, .why-explanation2:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }
        
        .why-explanation {
            background-color: #f0fdf4;
            border-left: 6px solid #22c55e;
        }
        
        .why-explanation2 {
            background-color: #fef2f2;
            border-left: 6px solid #ef4444;
        }
        
        /* Encabezado de tarjeta */
        .di1-why {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(0, 0, 0, 0.08);
        }
        
        .t1-why p {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        /* Iconos principales */
        .simbolo-ok2, .simbolo-no2 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
        }
        
        .simbolo-ok2 {
            background-color: #22c55e;
            color: white;
        }
        
        .simbolo-no2 {
            background-color: #ef4444;
            color: white;
        }
        
        /* Lista de elementos */
        .di2-why {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .ul-list {
            list-style: none;
        }
        
        .why-list {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        /* Iconos de lista */
        .simbolo-ok, .simbolo-no {
            font-size: 1.4rem;
            margin-right: 15px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .simbolo-ok {
            color: #16a34a;
        }
        
        .simbolo-no {
            color: #dc2626;
        }
        
        .text-list {
            flex-grow: 1;
        }
        
        /* Media queries para responsividad */
        @media (max-width: 768px) {
            .sec-why-us {
                padding: 30px 55px;
            }
            
            .block-why-us {
                gap: 20px;
                grid-template-columns: 1fr;
            }
            
            .why-explanation, .why-explanation2 {
                padding: 25px 20px;
            }
            
            .t1-why p {
                font-size: 1.3rem;
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .simbolo-ok2, .simbolo-no2 {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .why-list {
                font-size: 0.95rem;
                margin-bottom: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .sec-why-us {
                padding: 20px 10px;
            }
            
            .why-explanation, .why-explanation2 {
                padding: 20px 15px;
                border-radius: 12px;
            }
            
            .t1-why p {
                font-size: 1.2rem;
            }
            
            .simbolo-ok2, .simbolo-no2 {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .simbolo-ok, .simbolo-no {
                font-size: 1.2rem;
                margin-right: 12px;
            }
            
            .why-list {
                font-size: 0.9rem;
                margin-bottom: 14px;
            }
        }
        
        /* Para pantallas muy grandes */
        @media (min-width: 1200px) {
            .block-why-us {
                grid-template-columns: repeat(2, minmax(450px, 1fr));
                gap: 40px;
            }
            
            .why-explanation, .why-explanation2 {
                padding: 35px 30px;
            }
            
            .t1-why p {
                font-size: 1.6rem;
            }
        }






                /* Contenedor principal */
        .section-gift-song {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        /* Encabezado principal */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .main-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .main-subtitle {
            font-size: 1.25rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ff8e53);
            margin: 0 auto;
            border-radius: 2px;
        }
        
        /* Grid de beneficios */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;

        }
        
        /* Tarjetas de beneficio */
        .benefit-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }
        
        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, #ff6b6b, #ff8e53);
        }
        
        /* Iconos */
        .benefit-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: white;
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.25);
        }
        
        /* Contenido de la tarjeta */
        .benefit-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .benefit-description {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.6;
        }
        
        /* Efectos especiales para algunas tarjetas */
        .highlight-card {
            background: linear-gradient(135deg, #fff9f9, #fff);
            border: 1px solid #ffe6e6;
        }
        
        .highlight-card .benefit-icon {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            box-shadow: 0 8px 20px rgba(78, 205, 196, 0.25);
        }
        
        .highlight-card::before {
            background: linear-gradient(to bottom, #4ecdc4, #44a08d);
        }
        
        /* Responsividad */
        @media (max-width: 1024px) {
            .benefits-grid {
                gap: 30px;
            }
            
            .main-title {
                font-size: 2.4rem;
            }
            .section-gift-song{
                padding: 60px 60px;
            }
        }
        
        @media (max-width: 768px) {
            .section-gift-song {
                padding: 40px 35px;
            }
            
            .main-title {
                font-size: 2rem;
            }
            
            .main-subtitle {
                font-size: 1.1rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 25px;

            }
            
            .benefit-card {
                padding: 30px 25px;
            }
            
            .benefit-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .section-gift-song {
                padding: 30px 10px;
            }
            
            .main-title {
                font-size: 1.8rem;
            }
            
            .main-subtitle {
                font-size: 1rem;
            }
            
            .benefit-title {
                font-size: 1.3rem;
            }
            
            .benefit-description {
                font-size: 1rem;
            }
        }
        
        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .benefit-card {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        .benefit-card:nth-child(1) { animation-delay: 0.1s; }
        .benefit-card:nth-child(2) { animation-delay: 0.2s; }
        .benefit-card:nth-child(3) { animation-delay: 0.3s; }
        .benefit-card:nth-child(4) { animation-delay: 0.4s; }
        .benefit-card:nth-child(5) { animation-delay: 0.5s; }
        .benefit-card:nth-child(6) { animation-delay: 0.6s; }





        .e-voz{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }
        .e-regueton{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }
        .e-alegre{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }
        .e-casoreal{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }
        .e-balada{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }
        .e-triste{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }
        .e-pop{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }
        .e-disco{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }
        .e-folk{
            background: linear-gradient(135deg, #ffa66b71, #eeb82463)
        }

.titulo-servicios{
    display: none;
}

.titulo-canciones{
    visibility: visible; 
    animation-delay: 0.4s; 
    animation-name: fadeInUp; 
    color: white;
    font-size: 5rem;
      max-width: 100%;
  word-wrap: break-word;
  text-wrap: balance;
}

.container-principal{
    margin-top: -150px;
    
}

.breadcrumb__area{
    max-height: 750px;
   
}

.subtitulo-canciones span{
    color: #000;
}

.subtitulo-canciones1{
    margin-top: 15px;
    font-size: 3rem;
}

@media (max-width:1400px){
    .titulo-canciones{
        font-size: 3.8rem;
    }
}
@media (max-width:1099){
    .titulo-canciones{
        font-size: 3rem;
    }
}

@media (max-width:991px){
    .titulo-canciones{
        font-size: 3.5rem;
    }
}

@media (max-width:768px){
    .titulo-canciones{
        font-size: 3.5rem;
    }
}

@media (max-width:550px){
    .titulo-canciones{
        font-size: 2.5rem;
    }
}
@media (max-width:395px){
    .titulo-canciones{
        font-size: 2rem;
    }
}





@media (max-width:991px){
    .subtitulo-canciones1{
        font-size: 2rem;
    }
}

@media (max-width:768px){
    .subtitulo-canciones1{
        font-size: 1.8rem;
    }
}

@media (max-width:550px){
    .subtitulo-canciones1{
        font-size: 1.5rem;
    }
}
@media (max-width:395px){
    .subtitulo-canciones1{
        font-size: 1.2rem;
    }
}

.container-whatscontact{
    width: 80%;
    position:relative;
    margin: 0 auto;
    align-items: center;
}

.whats-boton{
    width: 50%;
    margin: 0 auto;
    position: relative;
    align-items: center;
    justify-content: center;
    
}

.textos-descripcionwhats{
    margin: 0 auto;
    width: 80%;
    margin-top: 50px;
}

.whatsapp-btn{
    display: inline-block; 
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); 
    color: white; 
    padding: 16px 40px; 
    font-size: 25px;
    font-weight: 600; 
    border-radius: 50px; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        padding: 12px 30px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

@media (max-width: 364px) {
    .whatsapp-btn {
        padding: 10px 22px;
        font-size: 12px;
    }
}