.program-titles-section {
    margin-bottom: 48px;
}

.title-block {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.title-container {
    text-align: center;
    position: relative;
}

/* Decoración del título */
.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.title-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
}

.title-icon {
    font-size: 28px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Título principal */
.program-section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.program-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Subtítulo */
.title-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
}

.title-subtitle p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

/* Variantes de estilo para diferentes tipos de títulos */
.title-block-primary .program-section-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.title-block-secondary .program-section-title {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.title-block-accent .program-section-title {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .program-titles-section {
        margin-bottom: 32px;
    }

    .title-decoration {
        gap: 12px;
    }

    .title-line {
        width: 40px;
    }

    .title-icon {
        font-size: 24px;
    }

    .program-section-title {
        font-size: 28px;
    }

    .title-subtitle p {
        font-size: 14px;
    }
}

/* Alineaciones */
.title-align-left {
    text-align: left;
}

.title-align-left .program-section-title::after {
    left: 0;
    transform: none;
}

.title-align-left .title-decoration {
    justify-content: flex-start;
}

.title-align-right {
    text-align: right;
}

.title-align-right .program-section-title::after {
    left: auto;
    right: 0;
    transform: none;
}

.title-align-right .title-decoration {
    justify-content: flex-end;
}

/* Estilos adicionales */
.title-block-minimal .program-section-title {
    background: none;
    color: #1f2937;
}

.title-block-minimal .program-section-title::after {
    display: none;
}

.title-block-minimal .title-decoration {
    display: none;
}

.title-block-modern .title-decoration {
    gap: 24px;
}

.title-block-modern .title-line {
    width: 80px;
    height: 3px;
}

.title-block-modern .program-section-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sección de descripciones dinámicas */
.program-description-block {
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.description-container {
    background: #f9fafb;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.description-container:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Estilos para el contenido de la descripción */
.description-content {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.description-content p {
    margin-bottom: 16px;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.description-content strong,
.description-content b {
    color: #1f2937;
    font-weight: 600;
}

.description-content em,
.description-content i {
    font-style: italic;
    color: #4b5563;
}

.description-content ul,
.description-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.description-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.description-content ul li {
    list-style-type: disc;
}

.description-content ol li {
    list-style-type: decimal;
}

.description-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.description-content a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4,
.description-content h5,
.description-content h6 {
    margin: 24px 0 16px;
    color: #1f2937;
    font-weight: 600;
}

.description-content h1:first-child,
.description-content h2:first-child,
.description-content h3:first-child,
.description-content h4:first-child,
.description-content h5:first-child,
.description-content h6:first-child {
    margin-top: 0;
}

.description-content h2 {
    font-size: 24px;
}

.description-content h3 {
    font-size: 20px;
}

.description-content blockquote {
    margin: 20px 0;
    padding: 16px 24px;
    background: #f3f4f6;
    border-left: 4px solid #667eea;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #4b5563;
}

.description-content code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #e11d48;
}

.description-content pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 16px;
    border-radius: 12px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    margin: 20px 0;
}

.description-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.description-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.description-content th,
.description-content td {
    border: 1px solid #e5e7eb;
    padding: 12px;
    text-align: left;
}

.description-content th {
    background: #f3f4f6;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .program-description-block {
        margin-bottom: 32px;
    }

    .description-container {
        padding: 20px;
        border-radius: 20px;
    }

    .description-content {
        font-size: 15px;
        line-height: 1.6;
    }

    .description-content ul,
    .description-content ol {
        padding-left: 20px;
    }

    .description-content blockquote {
        padding: 12px 16px;
    }

    .description-content h2 {
        font-size: 22px;
    }

    .description-content h3 {
        font-size: 18px;
    }
}

.description-style-card .description-container {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.description-style-card .description-container:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.description-style-bordered .description-container {
    background: transparent;
    border: 2px solid #e5e7eb;
}

.description-style-bordered .description-container:hover {
    border-color: #667eea;
}

.description-style-minimal .description-container {
    background: transparent;
    padding: 0;
    border: none;
}

.description-style-minimal .description-container:hover {
    box-shadow: none;
}

/* Diferentes fondos */
.description-bg-light .description-container {
    background: #f9fafb;
}

.description-bg-white .description-container {
    background: white;
}

.description-bg-gradient .description-container {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.description-bg-accent .description-container {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-color: #667eea30;
}

/* Header de descripción */
.description-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.description-icon {
    font-size: 28px;
}

.description-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Responsive para variantes */
@media (max-width: 768px) {
    .description-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .description-icon {
        font-size: 24px;
    }

    .description-title {
        font-size: 18px;
    }
}

/* Sección de imágenes */
.program-image-section {
    margin: 48px 0;
    animation: fadeInUp 0.6s ease-out;
}

.image-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

/* Tamaños predefinidos */
.image-size-small {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.image-size-small .image-container {
    max-width: 400px;
}

.image-size-medium {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.image-size-medium .image-container {
    max-width: 700px;
}

.image-size-large {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.image-size-large .image-container {
    max-width: 1000px;
}

.image-size-full {
    max-width: 100%;
}

.image-size-full .image-container {
    max-width: 100%;
}

/* Alineaciones */
.image-align-left {
    margin-right: auto;
}

.image-align-center {
    margin-left: auto;
    margin-right: auto;
}

.image-align-right {
    margin-left: auto;
}

/* Bordes y sombras */
.image-rounded {
    border-radius: 16px;
    overflow: hidden;
}

.image-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Imagen responsiva con object-fit */
.program-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: contain;
    background-color: #f3f4f6;
}

/* Para imágenes con poca resolución, evitar que se estiren */
.image-container img {
    max-width: 100%;
    height: auto;
}

/* Si la imagen es muy pequeña, centrarla y no estirarla */
.image-container img[src*="small"],
.image-container img[width][height]:where([width="0"]),
.image-container img:not([width]) {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

/* Efecto hover */
.image-container:hover .program-image {
    transform: scale(1.02);
}

/* Caption */
.image-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #6b7280;
}

/* Placeholder para imágenes rotas */
.image-container img[src*="image-placeholder"] {
    opacity: 0.5;
    min-height: 200px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .program-image-section {
        margin: 32px 0;
    }

    .image-size-small,
    .image-size-medium,
    .image-size-large {
        max-width: 100%;
    }

    .image-size-small .image-container,
    .image-size-medium .image-container,
    .image-size-large .image-container {
        max-width: 100%;
    }

    .image-caption {
        font-size: 12px;
    }
}

/* Manejo de imágenes de baja resolución */
.program-image.low-resolution {
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: smooth;
}

.image-container:has(.low-resolution) {
    background: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.image-container:has(.low-resolution)::before {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.image-container:has(.low-resolution) .program-image {
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Estilo para imágenes que no se cargan */
.program-image[src*="image-placeholder"] {
    min-height: 200px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-image[src*="image-placeholder"]::after {
    content: '🖼️ Imagen no disponible';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #9ca3af;
}

/* Sección de videos */
.program-video-section {
    margin: 48px 0;
    animation: fadeInUp 0.6s ease-out;
}

.video-container {
    position: relative;
    background: #1a1a2e;
    border-radius: 20px;
    overflow: hidden;
}

.video-header {
    padding: 24px 24px 0;
    text-align: center;
}

.video-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.video-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

/* Estilos para lite-youtube */
lite-youtube {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    position: relative;
}

lite-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    z-index: 1;
}

lite-youtube:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.lty-playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lty-playbtn:hover {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.lty-playbtn svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    fill: #1a1a2e;
    transition: fill 0.3s ease;
}

.lty-playbtn:hover svg {
    fill: white;
}

.lyt-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.video-footer {
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Layouts de video */
.video-layout-standard .video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-layout-full .video-container {
    border-radius: 0;
}

.video-layout-featured .video-header {
    padding: 32px 32px 0;
}

.video-layout-featured .video-title {
    font-size: 28px;
}

.video-layout-minimal .video-container {
    background: transparent;
}

.video-layout-minimal .video-header,
.video-layout-minimal .video-footer {
    padding-left: 0;
    padding-right: 0;
}

.video-layout-minimal .video-title {
    color: #1f2937;
    text-align: left;
}

.video-layout-minimal .video-description {
    color: #6b7280;
    text-align: left;
}

/* Múltiples videos en grid */
.program-video-section+.program-video-section {
    margin-top: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .program-video-section {
        margin: 32px 0;
    }

    .video-header {
        padding: 20px 20px 0;
    }

    .video-title {
        font-size: 20px;
    }

    .video-description {
        font-size: 13px;
    }

    .video-footer {
        padding: 16px 20px;
    }

    .lty-playbtn {
        width: 60px;
        height: 60px;
    }

    .lty-playbtn svg {
        width: 20px;
        height: 20px;
    }

    .video-layout-featured .video-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .lty-playbtn {
        width: 50px;
        height: 50px;
    }

    .lty-playbtn svg {
        width: 18px;
        height: 18px;
    }
}

/* Thumbnail personalizado con efecto de carga */
.video-wrapper {
    position: relative;
    background: #000;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Indicador de carga para el video */
lite-youtube[lty-loading]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 3;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Sección de redes sociales */
.hero-social-inline {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-social-inline .social-link {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
}

.hero-social-inline .social-name {
    display: none;
}

.hero-social-inline .social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-social-inline::before {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 6px;
}

.program-social-section {
    margin: 24px 0;
    position: relative;
    z-index: 10;
}

.program-social-section.light-theme .social-list {
    display: flex;
    gap: 10px;
}

.program-social-section.light-theme .social-link {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f7fa;
    border: 1px solid #e5e7eb;
    color: #374151;

    transition: all 0.25s ease;
    overflow: visible;
}

.program-social-section.light-theme .social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.program-social-section.light-theme .social-link::after {
    content: attr(data-name);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);

    background: #111827;
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.program-social-section.light-theme .social-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.program-social-section.light-theme .social-link::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);

    border: 6px solid transparent;
    border-top-color: #111827;

    opacity: 0;
    transition: all 0.2s ease;
}

.program-social-section.light-theme .social-link:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.program-social-section.light-theme .social-facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.program-social-section.light-theme .social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
    border-color: transparent;
}

.program-social-section.light-theme .social-linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.program-social-section.light-theme .social-whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.social-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}

.social-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #75313142, transparent);
}

/* Lista de redes */
.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-item {
    margin: 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-name {
    font-size: 13px;
}

/* Colores específicos al hover */
.social-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    border-color: transparent;
}

.social-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
}

.social-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

/* Orientación vertical */
.social-orientation-vertical .social-list {
    flex-direction: column;
    gap: 10px;
}

.social-orientation-vertical .social-link {
    padding: 10px 20px;
    min-width: 160px;
}

.social-orientation-floating {
    position: fixed;
    right: 20px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
}


.social-orientation-floating .social-list {
    flex-direction: column;
    gap: 10px;
}

.social-orientation-floating .social-link {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.social-orientation-floating .social-name {
    display: none;
}

.social-orientation-floating .social-link:hover {
    transform: scale(1.1) translateX(-4px);
}

.social-orientation-floating .social-icon svg {
    width: 20px;
    height: 20px;
}

.social-position-hero {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 15;
}

.social-position-hero .social-container {
    padding: 0 20px;
}

.social-position-hero .social-header {
    justify-content: center;
}

.social-position-hero .social-label {
    color: rgba(255, 255, 255, 0.8);
}

.social-position-hero .social-list {
    justify-content: center;
}

/* Posición sidebar */
.social-position-sidebar {
    position: sticky;
    top: calc(var(--header-height, 104px) + 100px);
    margin: 0;
    max-width: 60px;
}

.social-position-sidebar .social-header {
    display: none;
}

.social-position-sidebar .social-list {
    flex-direction: column;
    gap: 16px;
}

.social-position-sidebar .social-link {
    padding: 12px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.social-position-sidebar .social-name {
    display: none;
}

.social-position-sidebar .social-link:hover {
    transform: scale(1.1);
}

/* Posición footer */
.social-position-footer {
    background: #1a1a2e;
    padding: 30px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-position-footer .social-header {
    justify-content: center;
}

.social-position-footer .social-label {
    color: rgba(255, 255, 255, 0.6);
}

.social-position-footer .social-list {
    justify-content: center;
}

.social-position-footer .social-link {
    background: rgba(255, 255, 255, 0.05);
}

.social-shifted.social-orientation-floating {
    transform: translateY(-50%) translateX(-60px);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .social-orientation-floating {
        left: 10px;
    }

    .social-position-sidebar {
        display: none;
    }

    .social-position-hero {
        bottom: 20px;
    }

    .social-position-hero .social-link {
        padding: 6px 12px;
    }

    .social-position-hero .social-name {
        font-size: 12px;
    }

    .social-list {
        gap: 8px;
    }

    .social-link {
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .social-position-hero .social-name {
        display: none;
    }

    .social-position-hero .social-link {
        padding: 10px;
        border-radius: 50%;
    }

    .social-orientation-floating {
        left: 5px;
    }

    .social-orientation-floating .social-link {
        padding: 10px;
    }
}