/* ==========================================================================
   EDUCA TU PERRO - DISEÑO PROFESIONAL DE EXCELENCIA
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;500;700;800&display=swap');

:root {
    --color-main-rgb: 195, 30, 109;
    --color-fucsia: #C31E6D;
    --color-fucsia-hover: #a8175b;
    --color-fucsia-light: #df2a80;
    --color-highlight: #ff3e9e;
    
    --bg-black: #0a0a0a;
    --bg-dark-card: #151515;
    --bg-white: #ffffff;
    --bg-light-alt: #f4f4f4;
    
    --text-dark: #111111;
    --text-muted: #555555;
    --text-white: #ffffff;
    
    --font-titles: 'Anton', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

h1, h2, h3, h4, h5, h6, .font-anton {
    font-family: var(--font-titles);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.fucsia { color: var(--color-fucsia) !important; }

/* Botones Principales */
.btn-fucsia {
    background-color: var(--color-fucsia);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-fucsia:hover {
    background-color: var(--color-fucsia-hover);
    transform: translateY(-2px);
}

.btn-arrow { transition: var(--transition); }
.btn-fucsia:hover .btn-arrow { transform: translateX(5px); }

/* ==========================================================================
   HEADER DINÁMICO (Aparece post 1er scroll)
   ========================================================================== */
.header-wrapper {
    position: fixed;
    top: -150%;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: top 0.4s ease-in-out;
}

.header-wrapper.scrolled {
    top: 0;
}

.header-main {
    background-color: rgba(var(--color-main-rgb), 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.brand-logo-img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header-cta {
    background: #ffffff;
    border: none;
    color: var(--color-fucsia);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-header-cta:hover {
    background: #fdfdfd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.header-promo {
    background-color: #ffffff;
    color: var(--color-fucsia);
    width: 100%;
    padding: 8px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: -1;
}

.header-promo strong {
    font-weight: 800;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* ==========================================================================
   PRIMERA PANTALLA: HERO INMERSIVO ESTILO COOPER (Desktop & Mobile)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background-color: #000;
    overflow: hidden;
}

/* Flechas de Navegación Manual */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 40;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Progreso arriba */
.progress-bars-container {
    position: absolute;
    top: 55px; 
    left: 100px;
    right: 100px;
    width: auto;
    transform: none;
    padding: 0;
    z-index: 30;
    display: flex;
    gap: 8px;
}

.progress-bar-track {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: white;
    border-radius: 4px;
    transition: width 0.1s linear;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Glow premium */
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.story-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.05);
    transition: transform 5s ease-out;
}

.story-slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay-gradient {
    position: absolute;
    inset: 0;
    /* Oscurece arriba para el logo, nada en medio, oscurece abajo para los textos */
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.9) 100%);
    z-index: 10;
}

/* Animaciones de Entrada (Slide Activo) */
.story-slide .slide-title, 
.story-slide .slide-desc, 
.story-slide .hero-action-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.story-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.story-slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.story-slide.active .hero-action-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Badge Glassmorphism tipo app premium */
.glass-badge {
    position: absolute;
    top: 180px;
    right: 5%;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.glass-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-fucsia);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.glass-text strong {
    display: block;
    font-size: 0.9rem;
    color: white;
    font-weight: 700;
}
.glass-text span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

/* Logo Estático del Hero */
.hero-logo-container {
    position: absolute;
    top: 75px;
    left: 100px; /* Alineado exacto al texto y barras */
    pointer-events: auto;
    z-index: 35;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8));
}

/* Info de Ubicación (Arriba a la derecha) */
.hero-location-info {
    position: absolute;
    top: 85px; /* Alineado con el logo */
    right: 100px; /* Simétrico al logo y textos */
    z-index: 35;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-location-info svg {
    color: var(--color-highlight);
}

.slide-content-bottom {
    position: absolute;
    bottom: 60px;
    left: 100px;
    right: 100px;
    width: auto;
    transform: none;
    max-width: none;
    z-index: 15;
}

.slide-content-inner {
    padding: 0;
    margin: 0;
    text-align: left; 
}

.slide-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 900px;
    text-transform: uppercase;
    text-wrap: balance; /* Evita viudas y equilibra las líneas */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); /* Contraste perfecto sobre imágenes */
}

.slide-title strong {
    color: var(--color-highlight);
}

.slide-desc {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 500;
    max-width: 600px;
    line-height: 1.5;
    text-wrap: pretty; /* Previene palabras solas en la última línea */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-fucsia-large {
    background-color: white;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 20px 45px;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    animation: buttonPulse 3s infinite; /* Latido sutil constante */
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3); }
}

.hero-action-wrapper {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    text-align: center;
}

.btn-full-width {
    width: 100%;
    max-width: 100%;
    display: flex;
}

.btn-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-weight: 500;
}

.btn-subtext span {
    color: white;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.btn-fucsia-large:hover {
    background-color: #f8f8f8;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.5);
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: relative;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

/* ==========================================================================
   MANIFIESTO
   ========================================================================== */
.manifesto-section {
    background-color: var(--color-fucsia);
    color: white;
    padding: 100px 0;
}

.manifesto-title {
    font-size: 3.5rem;
    color: white !important;
    margin-bottom: 10px;
}

.manifesto-subtitle {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.manifesto-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.card-item {
    background-color: var(--bg-light-alt);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: left;
    transition: var(--transition);
}

.card-item:hover {
    border-color: var(--color-fucsia);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-num {
    font-family: var(--font-titles);
    font-size: 3rem;
    color: var(--color-fucsia);
    margin-bottom: 16px;
    line-height: 1;
}

.card-txt {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Ajustes Responsive para el Hero Alignments */
@media (max-width: 768px) {
    .progress-bars-container {
        left: 20px;
        right: 20px;
        top: 45px;
    }
    
    .hero-logo-container {
        left: 20px;
        top: 58px;
    }
    
    .hero-logo {
        height: 45px;
    }
    
    .slide-content-bottom {
        left: 20px;
        right: 20px;
        bottom: 30px;
    }
    
    .slider-prev, .slider-next {
        display: none; /* Ocultar flechas en móvil para usar touch/tap zones */
    }
    
    .hero-location-info {
        display: none; /* Ocultar en móvil por espacio, el usuario lo verá más abajo */
    }
    
    .btn-fucsia-large {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   NOSOTROS
   ========================================================================== */
.about-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-title {
    font-size: clamp(3rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-quote {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-fucsia);
    font-style: italic;
    border-left: 3px solid var(--color-fucsia);
    padding-left: 20px;
    margin: 30px 0;
    line-height: 1.5;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.about-caption strong {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    color: var(--text-dark);
    letter-spacing: 1px;
    display: block;
}

.about-caption span {
    display: block;
    color: var(--color-fucsia);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   CURSOS Y SERVICIOS
   ========================================================================== */
.services-section {
    background-color: var(--bg-light-alt);
    padding: 100px 0;
}

.services-title {
    font-size: clamp(3rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 5px;
}

.services-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-fucsia);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid #e5e5e5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-featured {
    border: 2px solid var(--color-fucsia);
}

.badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-fucsia);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    z-index: 10;
    letter-spacing: 0.5px;
}

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.1;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-link {
    color: var(--color-fucsia);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
    margin-top: auto;
}

.service-link:hover {
    color: var(--text-dark);
    gap: 5px;
}

/* ==========================================================================
   SECCIÓN CANCIÓN (LA ÚNICA OSCURA)
   ========================================================================== */
.song-section {
    background-color: var(--bg-black);
    padding: 100px 0;
    color: var(--text-white);
}

.song-card {
    background-color: #111;
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    border: 1px solid #222;
}

.song-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: white;
    margin-bottom: 10px;
}

.song-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 20px;
}

.song-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

/* ==========================================================================
   SÚMATE COMO ADIESTRADOR
   ========================================================================== */
.join-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    color: var(--text-dark);
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.join-title {
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.join-title strong {
    color: var(--color-fucsia);
}

.join-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ==========================================================================
   SWIPER STYLES
   ========================================================================== */
.services-swiper, .testimonials-swiper {
    padding-bottom: 20px !important;
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.services-swiper .swiper-wrapper {
    align-items: stretch;
}

.services-swiper .swiper-slide {
    height: auto;
}

.swiper-button-next, .swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.7);
    color: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--color-fucsia);
}

/* ==========================================================================
   COMUNIDAD WOOFS (CARRUSEL)
   ========================================================================== */
.community-section {
    background-color: var(--bg-white);
    padding: 80px 0;
    overflow: hidden;
}

.community-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.carousel-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Se traslada la mitad porque duplicamos las imgs */
}

.comm-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 15px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.comm-img:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   BARRA DE DESCUENTO
   ========================================================================== */
.discount-bar {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #ddd;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 9998;
    padding: 15px 0;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.has-discount-bar .discount-bar {
    bottom: 0;
}


.discount-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Reduced gap to prevent wrapping */
    padding: 0 20px;
}

.discount-text {
    font-size: 1.05rem; /* Slightly smaller to fit in one line */
    color: var(--text-dark);
    white-space: nowrap; /* Force single line */
}

.discount-text strong {
    color: var(--color-fucsia);
    font-size: 1.3rem;
}

.btn-discount {
    background-color: var(--color-fucsia);
    color: white;
    font-family: var(--font-titles);
    padding: 10px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

.btn-discount:hover {
    background-color: var(--text-dark);
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--color-main-rgb), 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(var(--color-main-rgb), 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--color-main-rgb), 0); }
}

/* ==========================================================================
   CONTACTO / FORMULARIO
   ========================================================================== */
.contact-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.contact-form-card {
    background-color: var(--color-fucsia);
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(var(--color-main-rgb), 0.3);
}

.contact-form-card h2 {
    color: white !important;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: none;
    background: white;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    background-color: white;
    color: var(--color-fucsia);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px;
    width: 100%;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    margin-top: 15px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: var(--text-dark);
    color: white;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #111;
    padding: 80px 0 40px;
    border-top: 5px solid var(--color-fucsia);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: #999;
    line-height: 1.8;
}

.footer-col h4 {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { 
    color: #999; 
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition); 
    display: inline-block;
}
.footer-col ul li a:hover { 
    color: var(--color-fucsia);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: white;
    color: var(--color-fucsia);
}

/* RESPONSIVE FINAL */
@media (max-width: 992px) {
    .btn-header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .header-main { border-radius: 0; }
    
    .about-grid, .song-card, .join-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .about-img-box, .join-img {
        order: -1;
    }
    .about-img-box {
        height: auto;
    }
    .about-img {
        height: auto;
    }
    .manifesto-cards, .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .slide-title { font-size: 2.8rem; }
    .discount-content { flex-direction: column; gap: 10px; text-align: center; }
    .discount-text { white-space: normal; } /* Allow wrapping on mobile */
    
    /* Push popups higher when discount bar wraps to multiple lines */
    body.has-discount-bar .whatsapp-float-container {
        bottom: 220px;
    }
    body.has-discount-bar .social-proof-toast {
        bottom: 220px;
    }
}

@media (max-width: 768px) {
    .manifesto-cards, .services-grid, .form-row {
        grid-template-columns: 1fr !important;
    }
    .slide-title { font-size: 2.2rem; }
    .contact-form-card { padding: 40px 25px; }

    /* Global mobile layout optimizations */
    .about-section, .join-section, .services-section, .song-section, .method-section, .contact-section, .manifesto-section {
        padding: 60px 0 !important;
    }
    .site-footer {
        padding: 50px 0 20px !important;
    }
    .footer-grid {
        gap: 40px !important;
        margin-bottom: 30px !important;
    }
    .footer-col {
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto 20px !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .manifesto-title { font-size: 2.2rem !important; }
    .manifesto-subtitle { font-size: 1.4rem !important; margin-bottom: 30px !important; }
    
    .about-title, .join-title, .services-title, .song-title, .method-title {
        font-size: 2.2rem !important;
    }
    .about-subtitle, .services-subtitle {
        font-size: 1.1rem !important;
    }
    .btn-fucsia-large {
        font-size: 1rem !important;
        padding: 14px 20px !important;
    }
    .slider-nav-btn {
        display: none !important;
    }
}

/* ==========================================================================
   ELEMENTOS COMERCIALES DE ALTA CONVERSIÓN (30% OFF & CRO)
   ========================================================================== */

/* ==========================================================================
   BARRA SUPERIOR MARQUESINA ESTILO PANTALLA DE TREN (LOOP INFINITO)
   ========================================================================== */
.top-marquee-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #09090d;
    border-bottom: 2px solid var(--color-fucsia);
    z-index: 1002;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

body.has-scrolled-header .top-marquee-banner {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: trainMarquee 26s linear infinite;
}

.top-marquee-banner:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes trainMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-right: 25px;
    white-space: nowrap;
    font-size: 0.85rem;
    color: #ffffff;
}

.m-badge {
    background: var(--color-fucsia);
    color: white;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    animation: flashPulse 1.8s infinite;
}

.m-text {
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.m-text strong {
    color: var(--color-highlight);
    font-weight: 800;
}

.m-sep {
    color: #ffde59;
    font-size: 0.95rem;
}

.m-timer {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: #ddd;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.m-timer strong {
    color: #ffde59;
    font-family: monospace;
    font-size: 0.88rem;
    font-weight: 700;
}

.m-cta {
    background: white;
    color: #111;
    font-weight: 800;
    font-size: 0.74rem;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    transition: 0.2s;
}

.top-marquee-banner:hover .m-cta {
    background: var(--color-fucsia);
    color: white;
    box-shadow: 0 0 15px rgba(var(--color-main-rgb), 0.6);
}

/* Badge de Promo en el Hero */
.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.75);
    border-left: 4px solid var(--color-fucsia);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.badge-fire-icon {
    display: none !important;
}

@keyframes flameFlicker {
    0% { transform: scale(1) rotate(-4deg); }
    100% { transform: scale(1.15) rotate(4deg); }
}

.badge-promo-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.badge-promo-text strong {
    color: var(--color-highlight);
    font-weight: 800;
}

.badge-spots-tag {
    font-size: 0.75rem;
    background: rgba(255, 222, 89, 0.15);
    color: #ffde59;
    border: 1px solid rgba(255, 222, 89, 0.3);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

/* Pulsación Comercial de Alta Conversión */
.btn-commercial-pulse {
    position: relative;
    overflow: hidden;
    animation: commercialHeartbeat 2.5s infinite !important;
    background: linear-gradient(135deg, #ffffff 0%, #fff0f6 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: var(--text-dark) !important;
}

@keyframes commercialHeartbeat {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
    14% { transform: scale(1.03); box-shadow: 0 12px 30px rgba(255, 62, 158, 0.5); }
    28% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
    42% { transform: scale(1.04); box-shadow: 0 14px 35px rgba(255, 62, 158, 0.6); }
    70% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
}

.btn-commercial-pulse:hover {
    background: var(--color-fucsia) !important;
    color: white !important;
}
.badge-section-pill {
    background: var(--text-dark);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 15px;
    border-left: 4px solid var(--color-fucsia);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 2px 2px 0px rgba(var(--color-main-rgb), 0.5);
}

.service-price-tag {
    background: #fdf2f7;
    border: 1px dashed rgba(var(--color-main-rgb), 0.3);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-discount-pill {
    background: var(--text-dark);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}

.btn-card-cta {
    background-color: var(--color-fucsia);
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    display: block;
    width: 100%;
    margin-top: auto;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(var(--color-main-rgb), 0.3);
}

.btn-card-cta:hover {
    background-color: var(--color-fucsia-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--color-main-rgb), 0.4);
    color: white;
}

.btn-manifesto-cta {
    background-color: white;
    color: var(--color-fucsia);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    animation: commercialHeartbeat 3s infinite;
}

.btn-manifesto-cta:hover {
    background-color: var(--text-dark);
    color: white;
    transform: translateY(-3px);
}

.badge-cta-offer {
    background: rgba(var(--color-main-rgb), 0.1);
    color: var(--color-fucsia);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(var(--color-main-rgb), 0.2);
}


/* WhatsApp Float Container con Burbuja Persuasiva */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
body.has-scrolled-header .whatsapp-float-container {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
body.has-discount-bar .whatsapp-float-container {
    bottom: 95px;
}

.whatsapp-bubble-cta {

    background: white;
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    max-width: 250px;
    margin-bottom: 12px;
    position: relative;
    border-left: 4px solid var(--color-fucsia);
    animation: tooltipFloat 3s infinite ease-in-out;
}

@keyframes tooltipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-bubble-cta::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.bubble-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.bubble-close:hover { color: #333; }

.bubble-badge {
    display: inline-block;
    background: var(--color-fucsia);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.whatsapp-bubble-cta p {
    font-size: 0.82rem;
    line-height: 1.35;
    margin: 0;
    color: #333;
}

.whatsapp-bubble-cta p strong {
    color: var(--text-dark);
    font-size: 0.88rem;
}

.wa-badge-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e6005c;
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px white;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Barra de descuento inferior enriquecida */
.discount-badge-pill {
    background: var(--text-dark);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 2px;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
    border-right: 3px solid var(--color-fucsia);
}

.discount-timer-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f4f4f4;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    white-space: nowrap;
}

.d-timer-label {
    color: #777;
    font-size: 0.75rem;
    font-weight: 600;
}

.d-timer-val {
    color: var(--color-fucsia);
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 800;
}

/* Toast de Prueba Social en Vivo */
.social-proof-toast {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    background: rgba(18, 18, 22, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--color-main-rgb), 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 340px;
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

body.has-discount-bar .social-proof-toast {
    bottom: 95px;
}

.social-proof-toast.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-avatar {
    width: 42px;
    height: 42px;
    background: var(--color-fucsia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(var(--color-main-rgb), 0.4);
}

.toast-body {
    flex-grow: 1;
}

.toast-title {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.toast-desc {
    color: #ccc;
    font-size: 0.78rem;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.toast-time {
    color: #888;
    font-size: 0.7rem;
    display: block;
}

.toast-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0 0 8px;
}

.toast-close:hover { color: white; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-marquee-banner { height: 36px; }
    .marquee-content { font-size: 0.78rem; gap: 14px; padding-right: 18px; }
    .m-cta { font-size: 0.7rem; padding: 3px 10px; }
    .hero-promo-badge { flex-direction: column; gap: 4px; padding: 8px 12px; text-align: center; }
    .social-proof-toast {
        left: 15px;
        right: 90px;
        max-width: none;
        bottom: 80px;
    }
    .whatsapp-bubble-cta { display: none; }

    /* Compact discount bar on mobile */
    .discount-bar { padding: 10px 0; }
    .discount-content { gap: 8px; }
    .discount-badge-pill { display: none; }
    .discount-timer-wrapper { display: none; }
    .discount-text { font-size: 0.9rem; }
    .btn-discount { font-size: 0.95rem; padding: 8px 20px; }
    
    body.has-discount-bar .whatsapp-float-container {
        bottom: 130px;
    }
    body.has-discount-bar .social-proof-toast {
        bottom: 130px;
    }
}


/* Mejora Men� M�vil Hamburguesa */
.mobile-toggle {
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform-origin: left center;
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -2px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 2px);
}

@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(6, 7, 9, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        display: flex;
        max-height: 400px;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        text-align: center;
        width: 100%;
    }
    /* Sobrescribir el display:none que estaba antes en la media query original */
    .nav-links:not(.active) {
        display: flex; /* Para que la transici�n de height funcione, no debe ser none. Hide it with height 0 instead */
    }
}

/* Bot�n Pulse Azul para Perros de Servicio */
.btn-service-pulse {
    position: relative;
    overflow: hidden;
    animation: serviceHeartbeat 2.5s infinite !important;
    background: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: var(--text-dark) !important;
    transition: all 0.3s ease !important;
}

.btn-service-pulse:hover {
    background: #2a5d9a !important;
    color: white !important;
    border-color: #2a5d9a !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(42, 93, 154, 0.6) !important;
}

/* --- CORRECCIONES MOBILE --- */
@media (max-width: 992px) {
    /* 1. Forzar que todos los grids clave apilen a 1 columna en mobile */
    .about-grid, .song-card, .join-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr !important;
    }

    /* 2. Asegurar que el Header siempre flexee el icono hamburguesa */
    .header-main {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    /* 3. Hacer la barra de 30% OFF mucho m�s angosta */
    .discount-bar {
        padding: 6px 10px !important;
    }
    .discount-content {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px 15px !important;
    }
    .discount-text {
        font-size: 0.8rem !important;
        line-height: 1.1 !important;
    }
    .btn-discount {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
        width: auto !important;
        margin: 0 !important;
    }
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex !important;
    }
}

@keyframes serviceHeartbeat {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
    14% { transform: scale(1.03); box-shadow: 0 12px 30px rgba(42, 93, 154, 0.5); }
    28% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
    42% { transform: scale(1.04); box-shadow: 0 14px 35px rgba(42, 93, 154, 0.6); }
    70% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
}


/* --- FIX DE RESTAURACION --- */
.btn-commercial-pulse:hover {
    border-color: var(--color-fucsia) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(var(--color-main-rgb), 0.6) !important;
}

/* Badges de Descuento en Servicios (Estilo Minimalista/Glass) */
.card-badge-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    z-index: 10 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.card-badge-gold {
    border: 1px solid rgba(245, 158, 11, 0.5) !important;
    background: rgba(0, 0, 0, 0.55) !important;
}

.card-badge-special {
    border: 1px solid rgba(5, 150, 105, 0.5) !important;
    background: rgba(0, 0, 0, 0.55) !important;
}

.badge-section-pill {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* --- CORRECCIONES HERO MOBILE (OCULTAR CARGA EXCESIVA) --- */
@media (max-width: 768px) {
    .hero-promo-badge {
        display: none !important;
    }
    .slide-desc.hide-on-mobile {
        display: none !important;
    }
}



/* AJUSTE ENCUADRE PERRO MOBILE 1ER SLIDE */
@media (max-width: 768px) {
    img.first-slide-bg {
        object-position: center 100% !important;
    }
}

/* ALINEACION MOBILE PARA FOTOS CON SUJETOS ABAJO */
@media (max-width: 768px) {
    .mobile-bg-bottom {
        object-position: center bottom !important;
    }
}

/* SLOT MACHINE TICKER GLOBAL */
.global-slot-ticker {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    flex-wrap: nowrap;
}
.global-slot-ticker .slot-prefix, 
.global-slot-ticker .slot-suffix {
    white-space: nowrap;
}
.global-slot-ticker .slot-mask {
    height: 1.2em;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    vertical-align: bottom;
}
.global-slot-ticker .slot-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.global-slot-ticker .slot-track span {
    height: 1.2em;
    line-height: 1.2em;
    color: white;
    font-weight: 700;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .global-slot-ticker {
        display: none;
    }
}

/* Override inline styles for about image on mobile */
@media (max-width: 768px) {
    .about-img-box {
        align-items: center !important;
    }
    .about-img-box img, .about-img-box > div {
        width: 100% !important;
        justify-content: flex-start !important;
    }
}
