/* ==================== VARIABLES Y RESET ==================== */
:root {
    --primary-color: #ffeb3b;
    --secondary-color: #1a1a1a;
    --accent-color: #ffff00;
    --dark-bg: #0a0e27;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --transition-fast: 0.3s ease-out;
    --transition-normal: 0.5s ease-out;
    --transition-slow: 0.8s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== ANIMACIONES VIOLENTAS DE ENTRADA ==================== */

@keyframes wordBurst {
    0% {
        opacity: 0;
        transform: scale(0.3) rotateX(90deg) rotateY(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotateX(0deg) rotateY(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg) rotateY(0deg);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotateZ(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateZ(0deg);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) rotateZ(5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateZ(0deg);
    }
}

@keyframes flipInX {
    0% {
        opacity: 0;
        transform: rotateX(90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg) scale(1);
    }
}

@keyframes shakeIn {
    0% {
        opacity: 0;
        transform: translateX(0) rotate(0deg) scale(0.8);
    }
    25% {
        transform: translateX(0) rotate(0deg) scale(1.05);
    }
    50% {
        transform: translateX(0) rotate(0deg) scale(0.95);
    }
    75% {
        transform: translateX(0) rotate(0deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0) rotateZ(-10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateZ(0deg);
    }
}

@keyframes swingIn {
    0% {
        opacity: 0;
        transform: rotateZ(-45deg) translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: rotateZ(0deg) translateX(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scaleX(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleX(1);
    }
}

@keyframes pulseIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== EFECTOS DE SCROLL ==================== */

@keyframes floatUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleInOnScroll {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateInOnScroll {
    0% {
        transform: rotate(-10deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(0); }
    20%, 40%, 60%, 80% { transform: translateX(0); }
}

/* ==================== CLASES DE ANIMACIÓN ==================== */

.word-burst {
    display: inline-block;
    animation: wordBurst 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    margin: 0 10px;
}

.word-burst:nth-child(1) { animation-delay: 0.1s; }
.word-burst:nth-child(2) { animation-delay: 0.2s; }
.word-burst:nth-child(3) { animation-delay: 0.3s; }
.word-burst:nth-child(4) { animation-delay: 0.4s; }

.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards;
    opacity: 1;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 1;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 1;
}

.flip-in-x {
    animation: flipInX 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 1;
}

.flip-in-x:nth-child(1) { animation-delay: 0.1s; }
.flip-in-x:nth-child(2) { animation-delay: 0.2s; }
.flip-in-x:nth-child(3) { animation-delay: 0.3s; }
.flip-in-x:nth-child(4) { animation-delay: 0.4s; }
.flip-in-x:nth-child(5) { animation-delay: 0.5s; }
.flip-in-x:nth-child(6) { animation-delay: 0.6s; }

.shake-in {
    animation: none;
    opacity: 0;
    visibility: hidden;
}

.shake-in {
    animation: shakeIn 0.6s ease-out forwards;
    opacity: 1;
}

.shake-in:nth-child(1) { animation-delay: 0.1s; }
.shake-in:nth-child(2) { animation-delay: 0.25s; }
.shake-in:nth-child(3) { animation-delay: 0.4s; }
.shake-in:nth-child(4) { animation-delay: 0.55s; }

.zoom-in {
    animation: zoomIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 1;
}

.zoom-in:nth-child(1) { animation-delay: 0.1s; }
.zoom-in:nth-child(2) { animation-delay: 0.2s; }
.zoom-in:nth-child(3) { animation-delay: 0.3s; }
.zoom-in:nth-child(4) { animation-delay: 0.4s; }
.zoom-in:nth-child(5) { animation-delay: 0.5s; }
.zoom-in:nth-child(6) { animation-delay: 0.6s; }

.swing-in.active {
    animation: swingIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    visibility: visible;
}

.swing-in.active:nth-child(1) { animation-delay: 0.1s; }
.swing-in {
    animation: swingIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 1;
 animation: pulseIn 0.6s ease-out forwards;
    opacity: 1;
}

.list-item-burst {
    animation: wordBurst 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 1;
}

.list-item-burst:nth-child(1) { animation-delay: 0.3s; }
.list-item-burst:nth-child(2) { animation-delay: 0.4s; }
.list-item-burst:nth-child(3) { animation-delay: 0.5s; }
.list-item-burst:nth-child(4) { animation-delay: 0.6s; }

/* ==================== NAVBAR ==================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(131, 56, 236, 0.1));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ==================== BOTONES ==================== */

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: inset 0 0 20px rgba(255, 190, 11, 0.1);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 190, 11, 0.6);
}

/* ==================== HERO SECTION ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(131, 56, 236, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.cta-button {
    animation: slideUp 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
}

.dancing-figure {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

/* ==================== ABOUT SECTION ==================== */

.about {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(131, 56, 236, 0.05));
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.about-list {
    list-style: none;
}

.about-list .list-item-burst {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: moveGrid 10s linear infinite;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* ==================== CLASSES SECTION ==================== */

.classes {
    padding: 0;
    background: linear-gradient(180deg, rgba(131, 56, 236, 0.05), transparent);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.class-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.class-card:hover::before {
    left: 100%;
}

.class-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.class-card:hover .card-icon {
    animation: spin 0.6s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
    }
}

.class-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.class-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.class-level {
    display: inline-block;
    background: rgba(255, 0, 110, 0.2);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* ==================== STYLES SECTION ==================== */

.styles {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(131, 56, 236, 0.05));
}

.styles-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.style-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.style-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

.style-item:hover .style-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.4);
}

.style-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: moveGrid 15s linear infinite;
}

.style-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.style-item p {
    color: var(--gray-text);
}

/* ==================== GALLERY SECTION ==================== */

.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(131, 56, 236, 0.05), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    opacity: 1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.2) rotate(5deg);
    filter: brightness(1.2);
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: moveGrid 8s linear infinite;
}

/* Variaciones de color para galerías */
.img-1 { background: linear-gradient(135deg, #ff006e, #fb5607); }
.img-2 { background: linear-gradient(135deg, #8338ec, #3a0ca3); }
.img-3 { background: linear-gradient(135deg, #ffbe0b, #fb5607); }
.img-4 { background: linear-gradient(135deg, #06ffa5, #3a0ca3); }
.img-5 { background: linear-gradient(135deg, #ff006e, #06ffa5); }
.img-6 { background: linear-gradient(135deg, #8338ec, #ffbe0b); }

/* ==================== TESTIMONIALS SECTION ==================== */

.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(131, 56, 236, 0.05));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
}

.testimonial-card .stars {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.testimonial-card i {
    margin: 0 5px;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray-text);
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-card span {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* === Carrusel de testimonios === */
.testimonials-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  position: relative;
  gap: 32px;
}

.testimonial-card {
  flex: 0 0 340px;
  min-width: 340px;
  max-width: 340px;
  margin: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 90vw;
    max-width: 90vw;
    flex-basis: 90vw;
  }
}

/* ==================== CONTACT SECTION ==================== */

.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(131, 56, 236, 0.05), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-info p i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.contact-info p:hover {
    transform: translateX(10px);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 110, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: rotateZ(10deg) scale(1.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: var(--light-text);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
    background: rgba(255, 0, 110, 0.05);
}

.contact-form button {
    align-self: flex-start;
}

/* ==================== FOOTER ==================== */

.footer {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(131, 56, 236, 0.1));
    border-top: 2px solid var(--primary-color);
    padding: 30px 0;
    text-align: center;
    color: var(--gray-text);
}

.footer p {
    margin: 5px 0;
}

.footer i {
    color: var(--primary-color);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .about .container,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .classes-grid,
    .styles-carousel,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .dancing-figure {
        width: 300px;
        height: 300px;
        right: -50%;
    }
}

/* ==================== SCROLL REVEAL ANIMACIONES ==================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-reveal.active {
    animation: floatUp 0.8s ease-out forwards;
}

        .hero-layered {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Fondo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Texto gigante */
.hero-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: blur(1px);
}
.hero-text img {
  width: 50%;
  max-width: 900px;
  opacity: 0.9;
}

/* Persona */
.hero-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-person img {
    height: 85vh;
    max-height: 900px;
    filter: drop-shadow(2px 4px 6px black);
}

/* UI (botón + texto) */
.hero-ui {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: white;
}

.hero-ui p {
  font-size: 1.2rem;
  margin-bottom: 16px;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgb(0 0 0 / 95%), rgb(255 255 255 / 10%));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    animation: slideDown 0.6s ease-out;
}


.schedule {
  padding: 100px 0;
  text-align: center;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.schedule-card {
  background: #ffd54f;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-10px) rotate(0deg);
}

.schedule-card.highlight {
  background: #ffca28;
  transform: rotate(1deg) scale(1.05);
}

.schedule-time {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.schedule-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.schedule-card p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.schedule-prof {
  display: block;
  font-weight: bold;
  color: #d84315;
}
@media (max-width: 768px) {
  .schedule {
    padding: 70px 0;
  }

  .schedule-card {
    transform: none;
  }
}
.about-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
/* === ANIMACIONES HERO === */

/* Estado inicial */
.hero-text,
.hero-person {
  opacity: 0;
}

/* Texto entra desde la izquierda */
.hero-text {
  animation: heroTextIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

/* Persona entra desde la derecha */
.hero-person {
  animation: heroPersonIn 1.4s ease-out forwards;
  animation-delay: 0.6s;
}

/* Keyframes */
@keyframes heroTextIn {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes heroPersonIn {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%);
    opacity: 1;
  }
}
.hero-text img,
.hero-person img {
  will-change: transform, opacity;
}
@keyframes heroTextIn {
  from {
    transform: translateX(-80px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
/* ==================== BOTÓN INSTAGRAM ==================== */

.ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 26px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
    background-size: 300% 300%;
    animation: igGradient 5s ease infinite;
    box-shadow: 0 10px 30px rgba(214, 41, 118, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ig-btn i {
    font-size: 1.3rem;
}

/* Hover */
.ig-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(214, 41, 118, 0.6);
}

/* Animación gradiente */
@keyframes igGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* ==================== CTA CRONOGRAMA ==================== */

.schedule-cta-group {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.schedule-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    transition: all 0.35s ease;
    animation: pulseCta 2.8s infinite;
}

/* Peques – más amigable */
.schedule-cta.peques {
    background: linear-gradient(135deg, #ffbe0b, #fb5607);
    box-shadow: 0 12px 30px rgba(251, 86, 7, 0.4);
}

/* Adultos – más power / elegante */
.schedule-cta.adultos {
    background: linear-gradient(135deg, #ff006e, #8338ec);
    box-shadow: 0 12px 30px rgba(131, 56, 236, 0.4);
}

/* Hover */
.schedule-cta:hover {
    transform: translateY(-4px) scale(1.06);
}

/* Animación latido */
@keyframes pulseCta {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(255, 0, 110, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 110, 0);
    }
}

/* ==================== BOTÓN FLOTANTE INSTAGRAM ==================== */

.ig-float {
    position: fixed;
    bottom: 90px; /* queda arriba del botón WhatsApp si algún día lo agregás */
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 9999;

    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
    background-size: 300% 300%;
    animation: igGradient 5s ease infinite, igPulse 2.5s infinite;

    box-shadow: 0 12px 30px rgba(214, 41, 118, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.ig-float:hover {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 18px 45px rgba(214, 41, 118, 0.7);
}

/* Animación gradiente */
@keyframes igGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulso suave */
@keyframes igPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 41, 118, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(214, 41, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 41, 118, 0);
    }
}
.hero-claim {
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  max-width: 420px;
  line-height: 1.6;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.hero-claim-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff006e, #8338ec);
  box-shadow: 0 0 12px rgba(131,56,236,0.8);
}

.hero-claim {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  max-width: 520px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.hero-claim-box {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  padding: 28px 34px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.location {
  padding: 100px 0;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin-top: 60px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.location-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
}

.location-info i {
  color: #ff006e;
  margin-right: 8px;
}

.location-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.location-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 20px;
  filter: grayscale(15%) contrast(1.1);
}

/* Responsive */
@media (max-width: 900px) {
  .location-card {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 280px;
  }
}
.SocialProof{
    display: none;
}
.Feedback{
    display: none;
}


/* ==================== BURGER MENU ==================== */

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Mobile menu */
@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateY(-200%);
    transition: transform 0.5s ease;
    z-index: 1000;
            height: max-content;
  }
.hero-text img {
    width: 150%;
    max-width: 900px;
    opacity: 0.9;
}
  .nav-links.active {
    transform: translateY(45%);
  }

  .nav-link {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }

  .nav-cta {
    margin-top: 20px;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    box-shadow: 0 12px 30px rgba(131,56,236,0.5);
  }
}

/* Burger animado */
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Carrusel horizontal de galería */
.gallery-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  position: relative;
  gap: 32px;
  margin-top: 32px;
}

.gallery-img-card {
  flex: 0 0 320px;
  min-width: 320px;
  max-width: 320px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.gallery-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .gallery-img-card {
    min-width: 85vw;
    max-width: 85vw;
    height: 38vw;
  }
}

/* === PRECIOS (Tarifas) === */
.prices-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 40px 0;
  background: none;
}
.prices-card {
  background: #111;
  border: 4px solid #ffd700;
  border-radius: 18px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 32px 28px 24px 28px;
  color: #ffd700;
  position: relative;
  text-align: center;
}
.prices-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}
.prices-logo {
  width: 90px;
  margin-bottom: 10px;
  filter: brightness(1.2) drop-shadow(0 0 8px #ffd70088);
}
.prices-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 10px 0;
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
  padding-bottom: 6px;
}
.prices-table {
  margin: 18px 0 12px 0;
  border: 2px solid #ffd700;
  border-radius: 8px;
  overflow: hidden;
  background: #181818;
}
.prices-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid #ffd70055;
  font-size: 1.08rem;
}
.prices-row:last-child {
  border-bottom: none;
}
.prices-label {
  color: #ffd700;
  font-weight: 500;
  text-align: left;
}
.prices-value {
  color: #ffd700;
  font-weight: 700;
  text-align: right;
}
.prices-row-highlight {
  background: #222;
  font-weight: 700;
  color: #ffd700;
}
.prices-row-highlight .prices-label,
.prices-row-highlight .prices-value {
  font-weight: 700;
  color: #ffd700;
}
.prices-footer {
  margin-top: 18px;
  color: #ffd700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.04em;
}
.prices-footer i {
  color: #ffd700;
  font-size: 1.2em;
}
@media (max-width: 600px) {
  .prices-card {
    max-width: 98vw;
    padding: 18px 4vw 16px 4vw;
  }
  .prices-title {
    font-size: 1.3rem;
  }
  .prices-row {
    font-size: 0.98rem;
    padding: 10px 8px;
  }
}

/* === EFECTO DE BRILLO Y RESPLANDOR EN PRECIOS === */
.prices-card {
  position: relative;
  box-shadow: 0 0 32px 8px #ffd70055, 0 0 0 8px #ffd70022 inset;
  animation: pricesGlow 2.5s ease-in-out infinite alternate;
}
@keyframes pricesGlow {
  0% {
    box-shadow: 0 0 14px 3px #ffd70033, 0 0 0 4px #ffd70011 inset;
    filter: brightness(.9) drop-shadow(0 0 0 #ffd700);
  }
  50% {
    box-shadow: 0 0 22px 6px #ffd70055, 0 0 0 6px #ffd70022 inset;
    filter: brightness(1) drop-shadow(0 0 6px #ffd90055);
  }
  100% {
    box-shadow: 0 0 14px 3px #ffd70033, 0 0 0 4px #ffd70011 inset;
    filter: brightness(.9) drop-shadow(0 0 0 #ffd700);
  }
}
.prices-title {
  position: relative;
  background: linear-gradient(90deg, #fffbe6 0%, #ffd700 40%, #fffbe6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: shimmerText 2.2s linear infinite;
}
@keyframes shimmerText {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
.prices-logo {
  animation: logoShine 2.8s linear infinite;
}
@keyframes logoShine {
  0% {
    filter: brightness(1.1) drop-shadow(0 0 8px #ffd70088);
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 24px #ffd700cc);
  }
  100% {
    filter: brightness(1.1) drop-shadow(0 0 8px #ffd70088);
  }
}
    .prices-card-floatbox {
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
/* === PROFESORES PURPURA MEJORADO === */
.teachers-section {
  padding: 60px 0 40px 0;
  background: linear-gradient(135deg, rgba(162,89,247,0.10) 0%, rgba(10,14,39,0.95) 100%);
  position: relative;
  z-index: 1;
}
.teachers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(162,89,247,0.18) 0%, transparent 70%);
}
.teachers-grid {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.teacher-card {
  background: #181828ee;
  border: 2.5px solid #a259f7;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(162,89,247,0.18);
  padding: 32px 24px 24px 24px;
  max-width: 320px;
  min-width: 260px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  animation: teacherGlow 2.5s ease-in-out infinite alternate;
}
.teacher-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px #a259f777;
}
.teacher-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 3px solid #a259f7;
  box-shadow: 0 0 18px #a259f755;
  background: #2d1847;
}
.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.teacher-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a259f7;
  margin: 0 0 8px 0;
  letter-spacing: 0.04em;
}
.teacher-desc {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.5;
}
.teacher-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.teacher-socials a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  opacity: 0.92;
}
.teacher-socials a:hover {
  color: #a259f7;
  opacity: 1;
}
.teacher-socials i {
  color: #a259f7;
}
@keyframes teacherGlow {
  0% {
    box-shadow: 0 0 32px 8px #a259f755, 0 0 0 8px #a259f722 inset;
    filter: brightness(1.05) drop-shadow(0 0 0 #a259f7);
  }
  50% {
    box-shadow: 0 0 64px 16px #a259f7cc, 0 0 0 12px #a259f744 inset;
    filter: brightness(1.18) drop-shadow(0 0 16px #a259f7cc);
  }
  100% {
    box-shadow: 0 0 32px 8px #a259f755, 0 0 0 8px #a259f722 inset;
    filter: brightness(1.05) drop-shadow(0 0 0 #a259f7);
  }
}
@media (max-width: 700px) {
  .teachers-grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .teacher-card {
    max-width: 98vw;
    min-width: 0;
  }
}

/* === FAQ (Preguntas Frecuentes) === */
.faq-section {
  padding: 60px 0 40px 0;
  background: linear-gradient(135deg, rgba(162,89,247,0.08) 0%, rgba(10,14,39,0.98) 100%);
}
.faq-accordion {
  max-width: 700px;
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #181828ee;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(162,89,247,0.10);
  overflow: hidden;
  border: 2px solid #a259f7;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 8px 32px #a259f744;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-item.open .faq-question {
  color: #a259f7;
}
.faq-icon {
  font-size: 1.5em;
  color: #a259f7;
  margin-left: 12px;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #221a36;
  color: #fff;
  font-size: 1.05rem;
  padding: 0 24px;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 16px 24px 24px 24px;
}
@media (max-width: 700px) {
  .faq-accordion {
    max-width: 98vw;
    padding: 0 4vw;
  }
  .faq-question, .faq-answer {
    font-size: 1rem;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* === BOTONES WSP EN PRECIOS === */
.prices-header .prices-wsp-btn {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 2px 12px #25d36633;
  border: none;
  transition: background 0.2s, transform 0.2s;
  margin: 0 0 8px 0;
}
.prices-header .prices-wsp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
@media (max-width: 700px) {
  .prices-header {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .prices-header .prices-wsp-btn {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }
  .prices-header > div {
    width: 100%;
  }
}

/* === BOTONES WSP COSTADOS CARD PRECIOS MEJORADOS === */
.prices-wsp-side-btn {
  background: linear-gradient(90deg, #25d366 60%, #128c7e 100%);
  color: #fff;
  font-weight: 900;
  border-radius: 16px;
  padding: 18px 28px;
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: 0 6px 32px #25d36655, 0 0 0 4px #128c7e22;
  border: none;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s, filter 0.22s;
  margin: 0 18px;
  height: fit-content;
  top: 0;
  align-self: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
  z-index: 2;
  filter: brightness(1.08) drop-shadow(0 0 8px #25d36644);
  animation: wspBtnPulse 2.2s infinite alternate;
}
.prices-wsp-side-btn i {
  font-size: 2.1em;
  filter: drop-shadow(0 0 6px #fff8);
  margin-right: 2px;
}
.prices-wsp-side-btn::after {
  content: '';
  position: absolute;
  left: -60%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: opacity 0.2s;
}
.prices-wsp-side-btn:hover {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 12px 40px #25d36699, 0 0 0 8px #128c7e33;
  filter: brightness(1.18) drop-shadow(0 0 16px #25d36699);
}
.prices-wsp-side-btn:hover::after {
  opacity: 0.7;
}
@media (max-width: 900px) {
  .prices-card-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .prices-wsp-side-btn {
    width: 100%;
    min-width: 0;
    margin: 0;
    align-self: stretch;
    justify-content: center;
    font-size: 1.08rem;
    padding: 14px 0;
  }
  .prices-card-wrapper .prices-card {
    width: 100%;
  }
  .prices-wsp-side-btn i {
    font-size: 1.6em;
  }
}

/* === BOTONES WSP FLOTANTES COSTADOS CARD PRECIOS === */
.prices-card-floatbox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  margin-bottom: 32px;
}
.prices-card-floatbox .prices-card {
  z-index: 1;
  margin: 0 90px;
}
.prices-wsp-float-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  min-width: 180px;
  max-width: 220px;
  padding: 20px 30px;
  font-size: 1.18rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px #25d36677, 0 0 0 6px #128c7e22;
  font-weight: 900;
  background: linear-gradient(90deg, #25d366 60%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border: none;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s, filter 0.22s;
  filter: brightness(1.08) drop-shadow(0 0 8px #25d36644);
  animation: wspBtnPulse 2.2s infinite alternate;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.prices-wsp-float-btn.left {
  left: 0;
}
.prices-wsp-float-btn.right {
  right: 0;
}
.prices-wsp-float-btn i {
  font-size: 2.1em;
  filter: drop-shadow(0 0 6px #fff8);
  margin-right: 2px;
}
.prices-wsp-float-btn::after {
  content: '';
  position: absolute;
  left: -60%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: opacity 0.2s;
}
.prices-wsp-float-btn:hover {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  transform: scale(1.09) rotate(-1deg);
  box-shadow: 0 16px 48px #25d366bb, 0 0 0 12px #128c7e33;
  filter: brightness(1.18) drop-shadow(0 0 16px #25d36699);
}
.prices-wsp-float-btn:hover::after {
  opacity: 0.7;
}
@media (max-width: 1100px) {
  .prices-card-floatbox .prices-card {
    margin: 0 10vw;
  }
  .prices-wsp-float-btn {
    min-width: 120px;
    font-size: 1.05rem;
    padding: 14px 10px;
  }
}
@media (max-width: 800px) {
  .prices-card-floatbox {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .prices-card-floatbox .prices-card {
    margin: 0;
    width: 100%;
  }
  .prices-wsp-float-btn {
    position: static;
    transform: none;
    margin: 12px 0 0 0;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: 1.08rem;
    padding: 14px 0;
  }
  .prices-wsp-float-btn.left {
    order: 1;
  }
  .prices-card {
    order: 2;
  }
  .prices-wsp-float-btn.right {
    order: 3;
  }
}
