      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .significado-section {
            width: 100vw;
            min-height: 100vh;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .significado-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e9ecef" fill-opacity="0.3" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .logo-column {
            flex: 1;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .logo-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><path d="M50,5 L60,40 L95,40 L65,60 L75,95 L50,75 L25,95 L35,60 L5,40 L40,40 Z" fill="white"/></svg>');
            background-size: 200px;
            z-index: 0;
        }

        .logo-placeholder {
            width: 280px;
            height: 280px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
            border: 10px solid white;
            transition: transform 0.5s ease;
        }

        .logo-placeholder:hover {
            transform: scale(1.05) rotate(5deg);
        }

        .logo-placeholder i {
            font-size: 100px;
            color: #1a2a6c;
        }

        .logo-textt {
            margin-top: 30px;
            text-align: center;
            color: white;
            position: relative;
            z-index: 1;
        }

        .logo-textt h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .logo-textt p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .info-column {
            flex: 1;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-titlee {
            font-size: 2.5rem;
            color: #1a2a6c;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-titlee::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #b21f1f, #fdbb2d);
            border-radius: 2px;
        }

        .elementos-lista {
            list-style: none;
        }

        .elemento {
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 12px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .elemento:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            background: white;
        }

        .elemento-1:hover {
            border-left-color: #b21f1f;
        }

        .elemento-2:hover {
            border-left-color: #1a2a6c;
        }

        .elemento-3:hover {
            border-left-color: #fdbb2d;
        }

        .elemento-4:hover {
            border-left-color: #343a40;
        }

        .elemento-titulo {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .elemento-icono {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
            color: white;
        }

        .icono-1 {
            background: linear-gradient(135deg, #b21f1f, #ff6b6b);
        }

        .icono-2 {
            background: linear-gradient(135deg, #1a2a6c, #4a6fc1);
        }

        .icono-3 {
            background: linear-gradient(135deg, #fdbb2d, #ffd166);
        }

        .icono-4 {
            background: linear-gradient(135deg, #343a40, #6c757d);
        }

        .elemento-titulo h3 {
            font-size: 1.3rem;
            color: #343a40;
        }

        .elemento p {
            color: #495057;
            line-height: 1.6;
            font-size: 1rem;
        }

        .colores-representativos {
            margin-top: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            border-radius: 12px;
            color: white;
            text-align: center;
        }

        .colores-representativos h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .colores-muestra {
            display: flex;
            justify-content: space-around;
            margin-top: 15px;
        }

        .color-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .color-circulo {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-bottom: 8px;
            border: 2px solid white;
        }

        .color-rojo {
            background: #b21f1f;
        }

        .color-azul {
            background: #1a2a6c;
        }

        .color-blanco {
            background: white;
        }

        .color-negro {
            background: #343a40;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
            }
            
            .logo-column, .info-column {
                padding: 40px 30px;
            }
            
            .logo-placeholder {
                width: 220px;
                height: 220px;
            }
            
            .logo-placeholder i {
                font-size: 80px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 2rem;
            }
            
            .logo-column, .info-column {
                padding: 30px 20px;
            }
            
            .logo-placeholder {
                width: 180px;
                height: 180px;
            }
            
            .logo-placeholder i {
                font-size: 60px;
            }
            
            .elemento-titulo h3 {
                font-size: 1.1rem;
            }
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .elemento {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .elemento:nth-child(1) {
            animation-delay: 0.1s;
        }

        .elemento:nth-child(2) {
            animation-delay: 0.2s;
        }

        .elemento:nth-child(3) {
            animation-delay: 0.3s;
        }

        .elemento:nth-child(4) {
            animation-delay: 0.4s;
        }