    /* Variables CSS basadas en el sistema de diseño */
    :root {
        --font-size: 14px;
        --background: #ffffff;
        --foreground: oklch(0.145 0 0);
        --card: #ffffff;
        --card-foreground: oklch(0.145 0 0);
        --primary: #030213;
        --primary-foreground: oklch(1 0 0);
        --secondary: oklch(0.95 0.0058 264.53);
        --secondary-foreground: #030213;
        --muted: #ececf0;
        --muted-foreground: #717182;
        --accent: #e9ebef;
        --accent-foreground: #030213;
        --destructive: #d4183d;
        --destructive-foreground: #ffffff;
        --border: rgba(0, 0, 0, 0.1);
        --input: transparent;
        --input-background: #f3f3f5;
        --radius: 0.625rem;
    }

    /* Reset y base */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        font-size: var(--font-size);
        scroll-behavior: smooth;
    }

    body {
        font-family: system-ui, -apple-system, sans-serif;
        background-color: var(--background);
        color: var(--foreground);
        line-height: 1.5;
        min-height: 100vh;
    }

    /* Utilidades de layout */
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .grid {
        display: grid;
    }

    .grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

    .flex {
        display: flex;
    }

    .items-center { align-items: center; }
    .justify-between { justify-content: space-between; }
    .justify-center { justify-content: center; }
    .space-x-2 > * + * { margin-left: 0.5rem; }
    .space-x-3 > * + * { margin-left: 0.75rem; }
    .space-x-4 > * + * { margin-left: 1rem; }
    .space-x-8 > * + * { margin-left: 2rem; }
    .space-y-2 > * + * { margin-top: 0.5rem; }
    .space-y-4 > * + * { margin-top: 1rem; }
    .space-y-8 > * + * { margin-top: 2rem; }

    .gap-1 { gap: 0.25rem; }
    .gap-2 { gap: 0.5rem; }
    .gap-3 { gap: 0.75rem; }
    .gap-4 { gap: 1rem; }
    .gap-6 { gap: 1.5rem; }
    .gap-8 { gap: 2rem; }
    .gap-12 { gap: 3rem; }

    /* Padding y margin */
    .p-1 { padding: 0.25rem; }
    .p-2 { padding: 0.5rem; }
    .p-3 { padding: 0.75rem; }
    .p-4 { padding: 1rem; }
    .p-6 { padding: 1.5rem; }
    .p-8 { padding: 2rem; }
    .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
    .px-4 { padding-left: 1rem; padding-right: 1rem; }
    .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
    .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
    .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
    .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .py-20 { padding-top: 5rem; padding-bottom: 5rem; }

    .mb-1 { margin-bottom: 0.25rem; }
    .mb-2 { margin-bottom: 0.5rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-6 { margin-bottom: 1.5rem; }
    .mb-8 { margin-bottom: 2rem; }
    .mb-12 { margin-bottom: 3rem; }
    .mt-2 { margin-top: 0.5rem; }
    .mt-12 { margin-top: 3rem; }

    /* Colores */
    .text-white { color: white; }
    .text-primary { color: var(--primary); }
    .text-muted-foreground { color: var(--muted-foreground); }
    .text-foreground { color: var(--foreground); }
    .text-white-80 { color: rgba(255, 255, 255, 0.8); }
    .text-white-70 { color: rgba(255, 255, 255, 0.7); }

    .bg-white { background-color: white; }
    .bg-primary { background-color: var(--primary); }
    .bg-secondary-30 { background-color: rgba(236, 236, 240, 0.3); }
    .bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
    .bg-black-80 { background-color: rgba(0, 0, 0, 0.8); }
    .bg-red-600 { background-color: #dc2626; }
    .bg-green-400 { background-color: #4ade80; }
    .bg-blue-600 { background-color: #2563eb; }
    .bg-blue-700 { background-color: #1d4ed8; }
    .bg-pink-600 { background-color: #db2777; }
    .bg-pink-700 { background-color: #be185d; }
    .bg-green-600 { background-color: #16a34a; }
    .bg-green-700 { background-color: #15803d; }

    /* Gradientes */
    .bg-gradient-primary {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url(Sources/Fondos/Fondo-Wyb.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-attachment: fixed;
        position: relative;
    }

    .bg-gradient-to-t {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    }

    /* Tamaños de texto */
    .text-xs { font-size: 0.75rem; }
    .text-sm { font-size: 0.875rem; }
    .text-base { font-size: 1rem; }
    .text-lg { font-size: 1.125rem; }
    .text-xl { font-size: 1.25rem; }
    .text-2xl { font-size: 1.5rem; }
    .text-3xl { font-size: 1.875rem; }
    .text-4xl { font-size: 2.25rem; }
    .text-5xl { font-size: 3rem; }

    /* Peso de fuente */
    .font-medium { font-weight: 500; }
    .font-bold { font-weight: 700; }

    /* Border radius */
    .rounded { border-radius: 0.25rem; }
    .rounded-lg { border-radius: 0.5rem; }
    .rounded-2xl { border-radius: 1rem; }
    .rounded-full { border-radius: 9999px; }
    .rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }

    /* Posicionamiento */
    .relative { position: relative; }
    .absolute { position: absolute; }
    .sticky { position: sticky; }
    .top-0 { top: 0; }
    .top-4 { top: 1rem; }
    .left-4 { left: 1rem; }
    .right-4 { right: 1rem; }
    .bottom-4 { bottom: 1rem; }
    .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

    /* Z-index */
    .z-50 { z-index: 50; }

    /* Dimensiones */
    .w-2 { width: 0.5rem; }
    .w-full { width: 100%; }
    .h-2 { height: 0.5rem; }
    .h-4 { height: 1rem; }
    .h-5 { height: 1.25rem; }
    .h-6 { height: 1.5rem; }
    .h-8 { height: 2rem; }
    .h-16 { height: 4rem; }
    .h-48 { height: 12rem; }
    .h-96 { height: 24rem; }
    .min-h-60 { min-height: 3.75rem; }

    /* Display */
    .hidden { display: none; }
    .block { display: block; }
    .inline { display: inline; }

    /* Overflow */
    .overflow-hidden { overflow: hidden; }
    .truncate {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Object fit */
    .object-cover { object-fit: cover; }

    /* Shadows */
    .shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
    .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
    .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

    /* Borders */
    .border { border: 1px solid var(--border); }
    .border-b-2 { border-bottom: 2px solid; }
    .border-primary-10 { border-color: rgba(3, 2, 19, 0.1); }
    .border-t { border-top: 1px solid; }
    .border-white { border-color: white; }
    .border-white-20 { border-color: rgba(255, 255, 255, 0.2); }

    /* Transitions */
    .transition-colors { transition: color 0.15s ease-in-out; }
    .transition-transform { transition: transform 0.15s ease-in-out; }
    .transition-shadow { transition: box-shadow 0.15s ease-in-out; }

    /* Hover effects */
    .hover\:text-primary:hover { color: var(--primary); }
    .hover\:text-blue-600:hover { color: #2563eb; }
    .hover\:text-pink-600:hover { color: #db2777; }
    .hover\:text-green-600:hover { color: #16a34a; }
    .hover\:text-white:hover { color: white; }
    .hover\:bg-white:hover { background-color: white; }
    .hover\:bg-blue-700:hover { background-color: #1d4ed8; }
    .hover\:bg-pink-700:hover { background-color: #be185d; }
    .hover\:bg-green-700:hover { background-color: #15803d; }
    .hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
    .hover\:scale-105:hover { transform: scale(1.05); }

    /* Cursor */
    .cursor-pointer { cursor: pointer; }

    /* Text align */
    .text-center { text-align: center; }

    /* Max width */
    .max-w-2xl { max-width: 42rem; }
    .max-w-md { max-width: 28rem; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* Flex */
    .flex-1 { flex: 1; }
    .flex-wrap { flex-wrap: wrap; }
    .shrink-0 { flex-shrink: 0; }

    /* Backdrop */
    .backdrop-blur-sm { backdrop-filter: blur(4px); }

    /* Animations */
    .animate-pulse {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    .animate-spin {
        animation: spin 1s linear infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* NUEVOS CAMBIOS - Header mejorado con soporte para logo personalizado */
    .header {
        background-color: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-bottom: 2px solid rgba(3, 2, 19, 0.1);
        position: sticky;
        top: 0;
        z-index: 50;
        transition: all 0.3s ease-in-out;
    }

    /* Estado del header al hacer scroll */
    .header.scrolled {
        box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
    }

    /* Contenedor de logo personalizado */
    .logo-container {
        flex-shrink: 0;
        position: relative;
    }

    .logo-image {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--primary);
        box-shadow: 0 2px 8px rgba(3, 2, 19, 0.15);
        transition: transform 0.2s ease-in-out;
    }

    .logo-image:hover {
        transform: scale(1.05);
    }

    .logo-text {
        flex: 1;
        min-width: 0;
    }

    .logo-text h1 {
        margin: 0;
        line-height: 1.2;
    }

    .logo-text p {
        margin: 0;
        line-height: 1.2;
    }
    /* NUEVOS CAMBIOS FIN */

    .header-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 4rem;
    }

    /* Navigation */
    .nav-button {
        background: none;
        border: none;
        color: var(--foreground);
        cursor: pointer;
        transition: color 0.15s ease-in-out;
        font-size: 1rem;
        font-weight: 500;
    }

    .nav-button:hover {
        color: var(--primary);
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        border-radius: var(--radius);
        font-size: 1rem;
        font-weight: 500;
        transition: colors 0.15s ease-in-out;
        cursor: pointer;
        border: none;
        text-decoration: none;
    }

    .btn-primary {
        background-color: var(--primary);
        color: var(--primary-foreground);
        padding: 0.5rem 1rem;
    }

    .btn-secondary {
        background-color: var(--secondary);
        color: var(--secondary-foreground);
        padding: 0.5rem 1rem;
    }

    .btn-outline {
        border: 1px solid var(--border);
        background-color: transparent;
        padding: 0.5rem 1rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
    }

    /* NUEVOS CAMBIOS - Estilos mejorados para botones del reproductor */
    .btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Estado del botón de reproducción cuando está activo */
    .btn.playing {
        background-color: #dc2626;
        color: white;
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        transform: scale(1.02);
    }

    .btn.playing:hover {
        background-color: #b91c1c;
        transform: scale(1.05);
    }

    /* Animación del spinner de carga mejorada */
    .animate-spin {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from { 
            transform: rotate(0deg); 
        }
        to { 
            transform: rotate(360deg); 
        }
    }

    /* Estilos específicos para el reproductor de radio */
    .radio-player-container {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease-in-out;
    }

    .radio-player-container:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    /* Información flotante del stream */
    #floatingInfo {
        backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease-in-out;
    }

    #floatingInfo:not(.hidden) {
        animation: slideInUp 0.3s ease-out;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* NUEVOS CAMBIOS FIN */

    /* ESTILOS PARA EL VIDEO EN VIVO SIEMPRE VISIBLE */
    .live-video-container {
        width: 100%;
        height: 24rem; /* h-96 equivalente */
        position: relative;
    }

    .live-video-container iframe {
        border-radius: 0.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        background-color: #000;
        /* Asegurar que los controles del video sean visibles */
        pointer-events: auto;
        z-index: 1;
    }

    /* Responsive para video en dispositivos móviles */
    @media (max-width: 768px) {
        .live-video-container {
            height: 16rem; /* Altura reducida en móvil */
        }
    }

    /* Optimización para iframe en dispositivos móviles */
    @media (max-width: 480px) {
        .live-video-container iframe {
            height: 16rem !important;
        }
    }
    /* FIN ESTILOS DEL VIDEO EN VIVO */

    /* Cards */
    .card {
        background-color: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        transition: box-shadow 0.15s ease-in-out;
    }

    .card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .card-header {
        padding: 1.5rem;
        padding-bottom: 1rem;
    }

    .card-content {
        padding: 0 1.5rem 1.5rem;
    }

    .card-title {
        font-size: 1.125rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    /* Forms */
    .form-input,
    .form-textarea {
        width: 100%;
        padding: 0.5rem 0.75rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background-color: var(--input-background);
        font-size: 1rem;
        transition: border-color 0.15s ease-in-out;
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--primary);
    }

    .form-label {
        display: block;
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    /* Badges */
    .badge {
        display: inline-flex;
        align-items: center;
        border-radius: 9999px;
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .badge-yellow { background-color: #fef3c7; color: #92400e; }
    .badge-blue { background-color: #dbeafe; color: #1e40af; }
    .badge-purple { background-color: #e9d5ff; color: #7c2d12; }
    .badge-green { background-color: #d1fae5; color: #065f46; }
    .badge-pink { background-color: #fce7f3; color: #be185d; }
    .badge-orange { background-color: #fed7aa; color: #9a3412; }

    /* Icons SVG base */
    .icon {
        width: 1rem;
        height: 1rem;
        fill: currentColor;
    }

    .icon-sm { width: 1rem; height: 1rem; }
    .icon-md { width: 1.25rem; height: 1.25rem; }
    .icon-lg { width: 1.5rem; height: 1.5rem; }
    .icon-xl { width: 2rem; height: 2rem; }

    /* Bootstrap Icons sizing */
    .bi.icon-sm { font-size: 1rem; }
    .bi.icon-md { font-size: 1.25rem; }
    .bi.icon-lg { font-size: 1.5rem; }
    .bi.icon-xl { font-size: 2rem; }

    /* Bootstrap Icons stroke styling */
    .bi { fill: currentColor; }

    /* Responsive */
    @media (min-width: 640px) {
        .container { padding: 0 1.5rem; }   
        .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
        .sm\:flex { display: flex; }
    }

    @media (min-width: 768px) {
        .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .md\:flex { display: flex; }
        .md\:col-span-2 { grid-column: span 2; }
    }

    @media (min-width: 1024px) {
        .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
        .lg\:text-5xl { font-size: 3rem; }
    }

    @media (max-width: 767px) {
        .md\:hidden { display: none; }
    }

    /* Utilidades adicionales */
    .min-w-0 { min-width: 0; }
    .duration-300 { transition-duration: 300ms; }

    /* Line clamp */
    .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .line-clamp-3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* NUEVOS CAMBIOS - Media queries mejoradas para responsive design */
    @media (max-width: 390px) {
        .container { 
            padding: 0 0.5rem; 
            font-size: 12px; 
        }
        .sm\:px-6 { 
            padding-left: 0.5rem; 
            padding-right: 0.5rem; 
        }
        .sm\:flex { 
            display: flex; 
        }
        .xs-button{
            display: block;
            width: 100px;
            font-size: 0.75rem;
        }
        
        /* Logo responsive en pantallas muy pequeñas */
        .logo-container .bg-primary {
            width: 36px;
            height: 36px;
            padding: 0.375rem;
        }
        
        .logo-image {
            width: 36px;
            height: 36px;
        }
        
        .logo-text h1 {
            font-size: 1rem;
        }
        
        .logo-text p {
            font-size: 0.65rem;
        }
    }

    /* Optimizaciones adicionales para dispositivos móviles */
    @media (max-width: 480px) {
        .radio-player-container {
            padding: 1rem;
        }
        
        .btn-lg {
            padding: 0.625rem 1.25rem;
            font-size: 0.875rem;
        }
        
        #floatingInfo {
            left: 0.5rem;
            right: 0.5rem;
            bottom: 0.5rem;
            padding: 0.75rem;
        }
    }

    /* Mejoras para tablets */
    @media (min-width: 768px) and (max-width: 1024px) {
        .logo-container .bg-primary {
            width: 44px;
            height: 44px;
        }
        
        .logo-image {
            width: 44px;
            height: 44px;
        }
    }

    /* Optimizaciones para dispositivos móviles detectados por JavaScript */
    .mobile-device .btn {
        min-height: 44px; /* Tamaño mínimo recomendado para touch */
    }

    .mobile-device .form-input,
    .mobile-device .form-textarea {
        font-size: 16px; /* Prevenir zoom en iOS */
    }

    .mobile-device .radio-player-container {
        touch-action: manipulation; /* Optimizar touch */
    }
    /* NUEVOS CAMBIOS FIN */

    /* === Modal de Políticas de Privacidad === */
    .privacy-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
    }

    .privacy-modal.hidden {
    display: none;
    }

    .privacy-modal-content {
    background: white;
    color: var(--foreground);
    border-radius: var(--radius);
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    }

    .privacy-modal-content h2 {
    margin-bottom: 1rem;
    color: var(--primary);
    }

    .privacy-modal-content h3 {
    margin-top: 1.25rem;
    color: var(--primary);
    font-size: 1.1rem;
    }

    .privacy-modal-content a {
    color: var(--primary);
    text-decoration: underline;
    }

    /* === Carousel Bootstrap overrides and layout helpers === */
    .carousel-container {
        /* Full width with 15px gutters from page edges */
        width: calc(100% - 30px);

        .carousel-container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 15px;
            padding-right: 15px;
            padding-top: 32px;
            padding-bottom: 0;
            position: sticky;
            top: 0;
            z-index: 20;
            border-radius: 10px;
            background: transparent;
            box-sizing: border-box;
            transition: box-shadow 0.2s;
        }
    }

    .carousel-wrapper {
        position: relative;
        width: 100%;
        height: fit-content; /* desktop height */
            position: relative;
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 220px;
    }


    #carouselExampleAutoplaying .carousel-item img {
        /* Imágenes responsivas y centradas, sin recorte */
        width: 100%;
        max-height: 420px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        background: #fff;
        transition: none;
    }

    /* Position controls to align with 15px gutters */
    #carouselExampleAutoplaying .carousel-control-prev { left: 15px; }
    #carouselExampleAutoplaying .carousel-control-next { right: 15px; }

    /* Bring indicators into the carousel */
    #carouselExampleAutoplaying .carousel-indicators { bottom: 1rem; }

    @media (max-width: 1024px) {
            .carousel-wrapper { min-height: 220px; }
            #carouselExampleAutoplaying .carousel-item img { max-height: 300px; }
    }

    @media (max-width: 768px) {
            .carousel-wrapper { min-height: 160px; }
            #carouselExampleAutoplaying .carousel-item img { max-height: 180px; }
    }

    @media (max-width: 480px) {
            .carousel-wrapper { min-height: 120px; }
            #carouselExampleAutoplaying .carousel-item img { max-height: 120px; }
            #carouselExampleAutoplaying .carousel-control-prev,
            #carouselExampleAutoplaying .carousel-control-next { width: 36px; height: 36px; }
    }

    /* End carousel overrides */

    /* === Contenedor de acciones flotantes (redes + descargar) === */
    .floating-actions {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        z-index: 40;
        pointer-events: auto;
    }

    /* Grupo de botones sociales (columna) */
    .floating-socials {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 4px;
    }

    .floating-social-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #fff;
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
        background: #fff;
        overflow: hidden;
        flex-shrink: 0;
    }

    .floating-social-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,0.2); }

    .floating-social-btn .social-icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }

    /* Support Bootstrap Icons inside the floating buttons */
    .floating-social-btn .bi,
    .floating-social-btn .social-icon {
        font-size: 18px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        color: #fff;
    }

    /* Remove ::before pseudo-element from Bootstrap Icons */

    /* Brand colors */
    .floating-social-btn.social-fb { background: #1877F2; }
    .floating-social-btn.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
    .floating-social-btn.social-wa { background: #25D366; }
    .floating-social-btn.social-yt { background: #FF0000; }

    .floating-social-btn svg { fill: #fff; }

    /* Descargar ahora dentro del contenedor (quitar position fixed para herencia) */
    .floating-actions .floating-download-btn {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 12px 18px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
        text-decoration: none;
        color: #fff;
        font-weight: 600;
    }

    .floating-actions .floating-download-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(220, 38, 38, 0.6); }

    .floating-actions .floating-download-btn .btn-icon { width: 20px; height: 20px; }

    /* Responsive tweaks */
    @media (max-width: 768px) {
        .floating-actions { bottom: 20px; right: 20px; }
        .floating-social-btn { width: 40px; height: 40px; }
        .floating-actions .floating-download-btn { padding: 10px 14px; }
    }

    @media (max-width: 480px) {
        .floating-actions { bottom: 16px; right: 16px; }
        .floating-socials { gap: 6px; }
        .floating-social-btn { width: 40px; height: 40px; }
        .floating-actions .floating-download-btn { width: 50px; height: 50px; padding: 0; border-radius: 50%; justify-content: center; }
        .floating-actions .floating-download-btn .btn-text { display: none; }
    }

    /* === Fin acciones flotantes === */
