/* Variables y Reset */
:root {
    --font-title: 'Libre Baskerville', 'Baskerville', serif;
    --font-body: 'Montserrat', sans-serif;
    --color-dark: #121212;
    --color-light: #ffffff;
    --color-primary: #1DB954; /* Color Spotify */
    --color-secondary: #535353;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    background-color: #000000; /* Fondo negro para evitar el fondo blanco al hacer scroll */
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden;
    background-color: #000000; /* Fondo negro para evitar el fondo blanco al hacer scroll */
}

/* Evitar selección de texto y cursor en imágenes y elementos no editables */
img, 
.logo-main, 
.navbar-logo img, 
.contact-logo, 
.nosotros-logo, 
.gallery-img,
.contact-btn,
.nosotros-logo-item,
.nosotros-titulo h2,
.navbar-menu,
.nav-link,
.btn,
/* Elementos específicos adicionales */
.gallery-link, 
.gallery-item,
.video-container, 
.video-container iframe {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    cursor: default;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    margin-bottom: 1rem;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-image: url('images/bnavbar.png');
    background-size: cover;
    background-position: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    height: 100px; /* Logo más grande en el navbar */
    width: auto;
    transition: var(--transition);
}

.navbar-logo a {
    display: block;
}

.navbar-logo a:hover img {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--color-light);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-light);
    transition: var(--transition);
}

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

.nav-link.active {
    font-weight: 700;
}

/* Secciones generales */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
}

.section:nth-child(odd) {
    background-image: url('images/b1.png');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
}

.section:nth-child(even) {
    background-image: url('images/b2.png');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
}

/* Estilos para los bullet points */
ul {
    margin-left: 20px;
    padding-left: 15px;
}

li {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Estilos específicos para la lista de estrategia de segmentación */
.segmentacion-list {
    margin-left: 30px;
    padding-left: 15px;
}

.segmentacion-list li {
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Título Miembros del Grupo */
.section-title {
    min-height: auto;
    padding: 6rem 0 2rem;
    text-align: center;
    background-image: url('images/b1.png');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
    scroll-snap-align: start;
}

.title-miembros {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

#salon-spotify-2 {
    background-image: url('images/b3.png');
}

#extrema {
    background-image: url('images/b4.png');
}

/* Estructura de columnas */
.two-column {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.column {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.column.animate {
    opacity: 1;
    transform: translateY(0);
}

.reverse {
    flex-direction: row-reverse;
}

/* Logo principal */
.logo-main {
    max-width: 80%;
    margin: 0 auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1.5rem;
}

.btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.btn-spotify {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

.btn-spotify:hover {
    background-color: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-next {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Galería de imágenes */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 400px;
    position: relative;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-item.animate {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    transition-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    transition-delay: 0.3s;
}

.gallery-item:nth-child(3) {
    transition-delay: 0.5s;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Modal para imágenes */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Funnel */
.funnel-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.funnel-section {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateX(30px);
}

.funnel-section.animate {
    opacity: 1;
    transform: translateX(0);
}

.funnel-section:first-child {
    width: 100%;
    transition-delay: 0.1s;
}

.funnel-section:nth-child(2) {
    width: 90%;
    margin-left: 5%;
    transition-delay: 0.2s;
}

.funnel-section:nth-child(3) {
    width: 80%;
    margin-left: 10%;
    transition-delay: 0.3s;
}

.funnel-section:nth-child(4) {
    width: 70%;
    margin-left: 15%;
    transition-delay: 0.4s;
}

.funnel-section:nth-child(5) {
    width: 60%;
    margin-left: 20%;
    transition-delay: 0.5s;
}

.funnel-section:nth-child(6) {
    width: 50%;
    margin-left: 25%;
    transition-delay: 0.6s;
}

.funnel-section:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.funnel-section::after {
    content: attr(data-description);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--color-light);
    border-radius: 5px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

.funnel-section:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mosaico empresas */
.mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 400px;
}

/* Mosaico Extrema (solo 2 items) */
.extrema-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 400px;
}

.extrema-item {
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.extrema-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.extrema-item:first-child {
    transition-delay: 0.1s;
}

.extrema-item:nth-child(2) {
    transition-delay: 0.3s;
}

.extrema-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mosaic-item {
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
}

.mosaic-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.mosaic-item:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition-delay: 0.1s;
}

.mosaic-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    transition-delay: 0.3s;
}

.mosaic-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    transition-delay: 0.5s;
}

.mosaic-item:hover {
    transform: translateY(-5px);
}

/* Overlay para mostrar "Ver más" en los enlaces de las imágenes */
.social-link, .landing-link {
    position: relative;
    overflow: hidden;
}

.social-link::before, .landing-link::before {
    content: 'Ver más';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.social-link:hover::before, .landing-link:hover::before {
    opacity: 1;
}

.extrema-item .social-link::before, .extrema-item .landing-link::before {
    background: rgba(0, 0, 0, 0.7);
}

.company-logo {
    max-width: 90%;
    max-height: 90%;
    margin: 0 auto;
}

.cauce-logo {
    max-width: 65%; /* Logo de El Cauce aún más pequeño */
}

.imagine-logo {
    max-width: 195px; /* Logo de Imagine 30% más grande */
}

.extrema-logo {
    max-width: 110%; /* Logo de Extrema más grande */
}

.landing-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-light);
    transition: var(--transition);
}

.youtube-icon {
    width: 10px; /* Reducido al tamaño para que ocupe ~60% del círculo */
    height: 10px;
}

.video-link:hover .play-icon {
    background-color: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.no-video {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contacto */
.contact-section {
    padding: 1.5rem 0; /* Reducción del padding vertical */
    min-height: 77vh; /* Aumento del 10% sobre el valor anterior (70vh) */
}

.contact-section .container {
    width: 95%; /* Aumentar el ancho del contenedor en un 5% */
    max-width: 1260px; /* 5% más que el valor original de 1200px */
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-logo {
    width: 35%; 
    max-width: 300px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

.contact-logo.animate {
    opacity: 1;
    transform: scale(1);
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    margin: 0.5rem 0;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px;
}

.contact-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-btn.animate {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp {
    background-color: #25D366;
    transition-delay: 0.2s;
}

.linkedin {
    background-color: #0077B5;
    transition-delay: 0.4s;
}

.email {
    background-color: var(--color-light);
    transition-delay: 0.6s;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.contact-email {
    display: none; /* Oculta el correo grande */
}

/* Hamburger Menu para móvil */
.hamburger {
    display: none;
    color: var(--color-light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive */
@media (max-width: 992px) {
    .two-column {
        flex-direction: column;
        gap: 2rem;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .navbar-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-logo img {
        height: 70px;
    }
    
    /* Hamburger menu styles */
    .hamburger {
        display: block;
        margin-right: 1rem;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        gap: 2rem;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .contact-logo {
        max-width: 60%;
    }
    
    .title-miembros {
        font-size: 1.8rem;
    }
    
    /* Sección Nosotros para móvil */
    .nosotros-top .two-column {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nosotros-top .column {
        width: 100%;
    }
    
    .video-container {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .funnel-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .contact-logo {
        max-width: 70%;
    }
    
    .contact-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .title-miembros {
        font-size: 1.5rem;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }
    
    /* Nosotros sección para móvil pequeño */
    .nosotros-top .column {
        margin-bottom: 1rem;
    }
    
    .video-container {
        padding-bottom: 60%; /* Mejor proporción para pantallas pequeñas */
    }
    
    .nosotros-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

/* Sección Nosotros */
.nosotros-section {
    background-image: url('images/b5.png?v=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 8rem;
}

.nosotros-top {
    margin-bottom: 4rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.nosotros-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.nosotros-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition);
}

.nosotros-logo-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.nosotros-logo {
    max-width: 95%; /* Logos más grandes */
    max-height: 130px; /* Altura mayor para los logos */
    filter: brightness(0) invert(1); /* Hace los logos blancos */
}

/* Estilo específico para el logo de Imagine */
.nosotros-logo-item img[alt="Imagine Logo"] {
    max-width: 100%;
    max-height: 160px; /* Altura mayor específicamente para el logo de Imagine */
}

/* Estilo específico para el logo de Extrema */
.nosotros-logo-item img[alt="Extrema Logo"] {
    max-width: 100%;
    max-height: 160px; /* Altura mayor específicamente para el logo de Extrema */
}

/* Título para sección Nosotros */
.nosotros-titulo {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-light);
}

.nosotros-titulo h2 {
    font-size: 2.5rem;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-image: url('images/bnavbar.png');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
    padding: 1.5rem 0;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: auto;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.footer-content p {
    font-family: var(--font-title); /* Misma fuente que el navbar */
    font-size: 1rem; /* Mismo tamaño que nav-link */
    margin: 0;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

.footer-info {
    opacity: 1; /* Mayor opacidad para mejor legibilidad */
    text-align: center;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.footer-contact {
    margin: 0;
    text-align: left;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.footer-location {
    text-align: right;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

@media (max-width: 768px) {
    .nosotros-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-contact, .footer-info, .footer-location {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .nosotros-logos {
        grid-template-columns: 1fr;
    }
}

/* Sección de columnas */
#cix .column:first-child,
.contact-content,
.contact-content > * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Restaurar eventos de puntero para links y botones dentro de estos contenedores */
#cix .column:first-child a,
.contact-content .contact-buttons,
.contact-content .contact-buttons a,
.contact-content .contact-btn {
    pointer-events: auto;
}

/* Logo principal */
.logo-main {
    max-width: 80%;
    margin: 0 auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

.contact-logo {
    width: 35%; 
    max-width: 300px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Estilo para "Proyecto Insignia" */
.column p strong {
    font-family: var(--font-title);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
} 