
        :root {
            --colorPrincipal: #0C646D;
            --colorSecundario: #F9C74F;
            --colorAzulClaro: #5488a3;
            --colorFondoClaro: #F8F8F8;
            --colorCrema: #FFFBEB;
            --colorAmarilloClaro: #FDF4D1;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f4f7fa;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, var(--colorPrincipal) 0%, #0a5159 50%, var(--colorAzulClaro) 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .logo-space {
            margin-bottom: 20px;
        }

        .logo-text {
            font-size: 2.2em;
            font-weight: 700;
            letter-spacing: 2px;
            color: white;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .header h1 {
            font-size: 2.6em;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .header p {
            font-size: 1.2em;
            opacity: 0.95;
            font-weight: 300;
        }

        .content {
            padding: 50px 40px;
        }

        .intro {
            text-align: center;
            margin-bottom: 50px;
            padding: 35px;
            background: var(--colorCrema);
            border-radius: 12px;
            border-left: 5px solid var(--colorSecundario);
        }

        .intro h2 {
            color: var(--colorPrincipal);
            font-size: 2em;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .intro p {
            font-size: 1.1em;
            color: #37474f;
            max-width: 850px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .structure {
            margin-bottom: 40px;
        }

        .structure h2 {
            color: var(--colorPrincipal);
            font-size: 2.2em;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .structure h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--colorPrincipal), var(--colorSecundario));
            border-radius: 2px;
        }

        /* Estilos para el diagrama visual */
        .visual-structure {
            background: white;
            padding: 40px 20px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            overflow-x: auto;
        }

        .structure-diagram {
            width: 100%;
            min-width: 950px;
        }

        .diagram-root {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .folder-box {
            background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorAzulClaro) 100%);
            border-radius: 10px;
            padding: 15px 20px;
            box-shadow: 0 4px 15px rgba(12, 100, 109, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
            max-width: 100%;
        }

        .folder-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(12, 100, 109, 0.4);
        }

        .main-folder {
            padding: 20px 30px;
        }

        .folder-icon-visual {
            font-size: 2em;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
            flex-shrink: 0;
        }

        .folder-name {
            color: white;
            font-size: 1.1em;
            font-weight: 700;
            text-align: left;
        }

        .folder-name span {
            font-size: 0.75em;
            opacity: 0.9;
            font-weight: 400;
        }

        .connector-line {
            width: 3px;
            height: 30px;
            background: linear-gradient(180deg, var(--colorAzulClaro), #7ba8be);
            margin: 8px 0;
        }

        .diagram-children {
            display: flex;
            gap: 20px;
            width: 100%;
            max-width: 100%;
            position: relative;
            padding-top: 20px;
            justify-content: center;
        }

        .diagram-children::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 5%;
            right: 5%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #7ba8be 10%, #7ba8be 90%, transparent);
        }

        .diagram-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            width: 22%;
            min-width: 180px;
        }

        .diagram-item::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            width: 3px;
            height: 10px;
            background: #7ba8be;
        }

        .sub-folder {
            background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorAzulClaro) 100%);
            padding: 12px 15px;
            margin-top: 10px;
            width: 100%;
        }

        .service-folder {
            min-width: auto;
        }

        .sub-folder .folder-icon-visual {
            font-size: 1.5em;
        }

        .folder-name-small {
            color: white;
            font-size: 0.85em;
            font-weight: 700;
            text-align: center;
            line-height: 1.3;
        }

        .folder-name-small span {
            font-size: 0.8em;
            opacity: 0.9;
            font-weight: 400;
            font-style: italic;
            display: block;
            margin-top: 3px;
        }

        .sub-connector {
            width: 2px;
            height: 15px;
            background: linear-gradient(180deg, var(--colorAzulClaro), #7ba8be);
            margin: 6px 0;
        }

        .sub-items {
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 100%;
        }

        .mini-box {
            background: white;
            border: 2px solid var(--colorAmarilloClaro);
            border-left: 4px solid var(--colorSecundario);
            padding: 8px 10px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .mini-box:hover {
            border-left-color: var(--colorPrincipal);
            box-shadow: 0 3px 10px rgba(12, 100, 109, 0.2);
            transform: translateX(3px);
        }

        .mini-icon {
            font-size: 1.1em;
            flex-shrink: 0;
        }

        .mini-text {
            color: #546e7a;
            font-size: 0.75em;
            font-weight: 600;
            line-height: 1.2;
        }

        .folder-container {
            background: var(--colorFondoClaro);
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
        }

        .folder-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(12, 100, 109, 0.15);
        }

        .folder-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e0e0e0;
        }

        .folder-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorAzulClaro) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 2em;
            box-shadow: 0 4px 12px rgba(12, 100, 109, 0.3);
        }

        .folder-title {
            flex: 1;
        }

        .folder-title h3 {
            color: var(--colorPrincipal);
            font-size: 1.8em;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .folder-title p {
            color: #546e7a;
            font-size: 1em;
        }

        .folder-content {
            display: grid;
            gap: 20px;
        }

        .item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--colorSecundario);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .item:hover {
            border-left-color: var(--colorPrincipal);
            box-shadow: 0 4px 16px rgba(12, 100, 109, 0.2);
            transform: translateX(5px);
        }

        .item-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .item-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorAzulClaro) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.3em;
        }

        .item h4 {
            color: var(--colorPrincipal);
            font-size: 1.4em;
            font-weight: 700;
        }

        .item p {
            color: #546e7a;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .item ul {
            margin-top: 15px;
            padding-left: 20px;
        }

        .item li {
            margin-bottom: 10px;
            color: #546e7a;
            line-height: 1.7;
        }

        .item li strong {
            color: var(--colorPrincipal);
            font-weight: 600;
        }

        .highlight {
            background: var(--colorAmarilloClaro);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--colorSecundario);
            margin-top: 20px;
        }

        .highlight strong {
            color: var(--colorPrincipal);
            font-size: 1.1em;
        }

        .important-note {
            background: linear-gradient(135deg, var(--colorPrincipal) 0%, #0a5159 100%);
            color: white;
            padding: 35px;
            border-radius: 12px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(12, 100, 109, 0.3);
        }

        .important-note h3 {
            font-size: 1.9em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
        }

        .important-note h3::before {
            content: '⚠️';
            margin-right: 15px;
            font-size: 1.2em;
        }

        .important-note ul {
            list-style: none;
            padding-left: 0;
        }

        .important-note li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            line-height: 1.7;
        }

        .important-note li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.4em;
            color: var(--colorSecundario);
        }

        .cta {
            background: linear-gradient(135deg, var(--colorPrincipal) 0%, #0a5159 50%, var(--colorAzulClaro) 100%);
            color: white;
            padding: 50px;
            border-radius: 12px;
            text-align: center;
            margin-top: 50px;
        }

        .cta h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta p {
            font-size: 1.2em;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: var(--colorPrincipal);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.3);
            background: var(--colorSecundario);
            color: #333;
        }

        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--colorPrincipal);
        }

        .timeline-days {
            background: var(--colorCrema);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid var(--colorSecundario);
        }

        .timeline-days h4 {
            color: var(--colorPrincipal);
            font-size: 1.3em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .timeline-days p {
            color: #546e7a;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .header {
                padding: 40px 20px;
            }

            .header h1 {
                font-size: 2em;
            }

            .logo-text {
                font-size: 1.6em;
            }

            .content {
                padding: 30px 20px;
            }

            .folder-container {
                padding: 25px;
            }

            .folder-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .folder-icon {
                margin-bottom: 15px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-button {
                width: 100%;
            }

            .visual-structure {
                padding: 20px 15px;
                overflow-x: auto;
            }

            .structure-diagram {
                min-width: 100%;
            }

            .main-folder {
                padding: 15px 20px;
            }

            .folder-name {
                font-size: 1em;
            }

            .folder-icon-visual {
                font-size: 1.8em;
            }

            .diagram-children {
                flex-direction: column;
                gap: 20px;
                padding-top: 15px;
            }

            .diagram-children::before {
                display: none;
            }

            .diagram-item {
                width: 100%;
                min-width: auto;
            }

            .diagram-item::before {
                display: none;
            }

            .sub-folder {
                max-width: 100%;
            }

            .sub-items {
                max-width: 100%;
            }

            .connector-line {
                height: 20px;
            }

            .mini-text {
                font-size: 0.85em;
            }
        }
    