
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        .header {
            background: linear-gradient(90deg, #510C28 16.5%, #AA244D 100%);
            color: white;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: -1%;
        }

        .logo-left {
            flex-shrink: 0;
        }

        .logo-left img {
            height: 80px;
            width: auto;
            display: block;
        }

        .logo-left h1 {
            font-family: 'Noto Sans', sans-serif !important;
            font-size: 2em !important;
            font-weight: bold;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .logo-left p {
            font-family: 'Noto Sans', sans-serif !important;
            font-size: 0.7em !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .title-center {
            font-family: 'Noto Sans', sans-serif !important;
            flex-grow: 1;
            text-align: center;
            padding: 0 20px;
        }

        .title-center h2 {
            font-family: 'Noto Sans', sans-serif !important;
            font-size: 1.3em !important;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 5px;
        }

        .title-center p {
            font-family: 'Noto Sans', sans-serif !important;
            font-size: 0.95em !important;
            opacity: 0.95;
        }

        .logo-right {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .logo-right img {
            height: 80px;
            width: auto;
            display: block;
        }
       

        .logo-right p {
            font-family: 'Noto Sans', sans-serif !important;
            font-size: 0.8em !important;
            font-weight: bold;
            letter-spacing: 2px;
        }


        /*Construccion*/
         .under_construction {
            font-family: 'Noto Sans', sans-serif !important;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .content-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 40px;
            padding: 10px;
        }

        .text-content {
            font-family: 'Noto Sans', sans-serif !important;
            flex: 1;
            max-width: 500px;
        }

        h1 {
            font-family: 'Noto Sans', sans-serif !important;
            color: #1a1a1a;
            font-size: 3rem !important;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .subtitle {
            font-family: 'Noto Sans', sans-serif !important;
            color: #333;
            font-size: 1.8rem !important;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .warning-box {
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        .warning-title {
            font-family: 'Noto Sans', sans-serif !important;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .warning-icon {
            font-size: 1.5rem;
        }

        .warning-text {
            font-family: 'Noto Sans', sans-serif !important;
            color: #555;
            line-height: 1.6;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .warning-text strong {
            font-family: 'Noto Sans', sans-serif !important;
            color: #1a1a1a;
        }

        .invitation-text {
            font-family: 'Noto Sans', sans-serif !important;
            color: #555;
            line-height: 1.6;
            font-size: 1.4rem;
        }

        .image-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 600px;
        }

        .construction-image {
            width: 100%;
            max-width: 500px;
            height: auto;
        }

        .logos-section {
            width: 100%;
            background: #F3F3F3;
            padding: 30px 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        }

        .logos-under_construction {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-item {
            width: 80px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            
        }

        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo-item:hover img {
            transform: scale(1.1); 
        }


        @media (max-width: 768px) {

             .header {
                padding: 15px 20px;
            }

            .logo-left img {
                height: 60px;
            }

            .logo-left h1 {
                font-size: 1.5em;
            }

            .logo-left p {
                font-size: 0.6em;
            }

            .title-center h2 {
                font-size: 1.1em;
            }

            .title-center p {
                font-size: 0.85em;
            }

            .logo-right img {
                height: 60px;
            }

            .book-icon {
                width: 45px;
                height: 45px;
            }

            .logo-right p {
                font-size: 0.7em;
            }

            h1 {
                font-size: 1.5rem;
                text-align: center;
            }

            .subtitle {
                font-size: 1rem;
                text-align: center;
            }

            .content-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .text-content {
                max-width: 100%;
                order: 2;
            }

            .image-content {
                order: 1;
                max-width: 100%;
            }

            .construction-image {
                max-width: 300px;
            }

            .warning-box {
                padding: 15px;
            }

            .warning-text, .invitation-text {
                font-size: 1.2rem;
            }

            .logos-under_construction {
                gap: 20px;
            }

            .logo-item {
                width: 60px;
                height: 45px;
            }

            .logos-section {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {

            .header {
                flex-wrap: wrap;
                padding: 15px 20px;
                justify-content: space-between;
            }

            .logo-left {
                order: 1;
                flex: 0 0 auto;
            }

            .logo-left img {
                height: 50px;
            }

            .logo-left h1 {
                font-size: 1.5em;
            }

            .logo-left p {
                font-size: 0.5em;
            }

            .logo-right {
                order: 2;
                flex: 0 0 auto;
            }

            .logo-right img {
                height: 50px;
            }

            .title-center {
                order: 3;
                width: 100%;
                flex: 0 0 100%;
                margin-top: 15px;
                padding: 0;
            }

            .title-center h2 {
                font-size: 0.9em;
            }

            .title-center p {
                font-size: 0.75em;
            }

            .book-icon {
                width: 40px;
                height: 40px;
            }

            .logo-right p {
                font-size: 0.65em;
            }

            .under_construction {
                padding: 15px;
            }

            h1 {
                font-size: 1.3rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .construction-image {
                max-width: 250px;
            }

            .logos-under_construction {
                gap: 15px;
            }

            .logo-item {
                width: 50px;
                height: 40px;
            }
        }

