        :root {
            --azul: #007bd6;
            --salmon: #fc6363;
            --verde: #6abd4f;
            --gris: #d9d5d4;
            --gris-bg: #f0f0f0;
            --ink: #1e1f1d;
            --muted: #6d6f6c;
            --grid: #ebebeb;
            --soft: #f5f5f5;
            --cell: 46px;
            --indent: 5.5rem;
            /* = ancho del ícono de "Destinados a" (64px) + su gap (1.5rem),
               reusado en el logo, los títulos, las líneas y el contenido para que todo arranque en la misma columna */
        }

        * {
            font-family: 'Figtree', system-ui, sans-serif;
        }

        body {
            background: #fff;
            color: var(--ink);
        }

        .texto-verde-1 {
            display: none;
        }

        /* ===== HERO / HEADER con grilla ===== */
        .pf-hero {
            position: relative;
            overflow: hidden;
            padding: calc(var(--cell) + 1.5rem) 0 calc(var(--cell) + 1.5rem);
            background: #fff;
            container-type: inline-size;
            container-name: hero;
        }

        .pf-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(var(--grid) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid) 1px, transparent 1px);
            background-size: var(--cell) var(--cell);
            -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
        }

        .pf-hero .container {
            position: relative;
            z-index: 1;
        }

        /* tiles */
        .pf-tiles {
            position: absolute;
            left: 0;
            right: 0;
            height: var(--cell);
            display: grid;
            grid-template-columns: repeat(auto-fill, var(--cell));
            grid-auto-rows: var(--cell);
            pointer-events: none;
            z-index: 0;
        }

        .pf-tiles-top {
            top: 0;
        }

        .pf-tiles-bottom {
            bottom: 0;
        }

        .pf-tile {
            grid-column: var(--col);
            grid-row: var(--row);
            width: var(--cell);
            height: var(--cell);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pf-tile .ph {
            font-size: calc(var(--cell) * .55);
            line-height: 1;
            color: var(--ink);
        }

        .pf-t-green {
            background: var(--verde);
        }

        .pf-t-blue {
            background: var(--azul);
        }

        .pf-t-salmon {
            background: var(--salmon);
            padding: 5px;
        }

        .pf-t-gray {
            background: #dcdcdc;
        }

        /* logo + tagline */
        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2.6rem;
            color: var(--ink);
            letter-spacing: -0.5px;
            margin-left: var(--indent);
        }

        .tagline {
            font-size: 1.4rem;
            color: var(--ink);
            font-weight: 600;
        }

        /* ===== PROGRESS BAR ===== */
        .progress-bar-custom {
            height: 8px;
            background: linear-gradient(to right,
                    var(--verde) 0%, var(--verde) 66.66%,
                    var(--salmon) 66.66%, var(--salmon) 100%);
        }

        /* ===== SECTION LABEL ===== */
        .section-label {
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--gris-bg);
        }

        /* ícono y separador ocupan siempre el mismo ancho total (--indent),
           así el título, la línea y el contenido de abajo quedan alineados */
        .section-label i {
            flex: 0 0 3rem;
            font-size: 1.8rem;
            color: var(--azul);
        }

        .section-label .pipe {
            flex: 0 0 2.5rem;
            color: var(--azul);
            font-weight: 300;
            font-size: 1.5rem;
        }

        .section-label h2 {
            font-size: 1.35rem;
            font-weight: 900;
            color: var(--ink);
            margin: 0;
            white-space: nowrap;
        }

        /* ===== DESTINADOS A — banda azul (estilo pf-destacado) ===== */
        .bloque-destinados {
            background: var(--azul);
            color: #fff;
            padding: 2.75rem 0;
        }

        .dest-row {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .dest-icon {
            flex: 0 0 auto;
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, .18);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dest-icon .ph {
            font-size: 34px;
            line-height: 1;
            color: #fff;
        }

        .dest-title {
            font-size: clamp(1.4rem, 2.8vw, 1.85rem);
            font-weight: 900;
            line-height: 1.15;
            margin: 0 0 .5rem;
            color: #fff;
        }

        .dest-text {
            margin: 10px;
            font-size: 1.03rem;
            line-height: 1.6;
            text-align: justify;
            color: #dce9ff;
        }

        .dest-text ul {
            margin: 0;
            padding-left: 1.2rem;
            list-style-type: disc;
        }

        .dest-text li {
            margin-bottom: 0.8rem;
            line-height: 1.65;
        }

        .dest-text li:last-child {
            margin-bottom: 0;
        }

        .dest-text strong {
            color: #fff;
            font-weight: 900;
        }

        /* ===== SECCIONES NORMALES ===== */
        .section-block {
            margin-bottom: 1.5rem;
        }

        .section-header-line {
            border: none;
            border-top: 3px solid var(--grid);
            margin: 0.4rem 0 0.8rem var(--indent);
        }

        .section-content {
            margin-left: var(--indent);
            color: var(--muted);
            font-size: 1.02rem;
            line-height: 1.8;
            margin-top: -10px;

        }

        .section-content p {
            margin-bottom: 0.5rem;
        }

        .fecha-salmon {
            color: var(--salmon);
            font-weight: 900;
            font-size: 1.08rem;
        }

        /* ===== DOCUMENTACIÓN ===== */
        .doc-list {
            list-style: none;
            margin: 0 0 1.1rem;
            padding: 0;
        }

        .doc-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.7rem;
        }

        .doc-list li:last-child {
            margin-bottom: 0;
        }

        .doc-list i {
            color: var(--verde);
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .doc-note {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            color: var(--muted);
            font-size: 0.96rem;
            font-style: italic;
            margin: 0;
        }

        .doc-note i {
            color: var(--salmon);
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ===== SEDES ===== */
        .sedes-title {
            font-size: 1.15rem;
            font-weight: 900;
            color: var(--salmon);
            margin-bottom: 0.75rem;
        }

        .accordion-fines .accordion-item {
            border: none !important;
            background: transparent !important;
        }

        .accordion-fines .accordion-button {
            padding: 0.6rem 0 !important;
            font-weight: 700;
            font-size: 1.08rem;
            color: var(--ink) !important;
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            border-radius: 0 !important;
        }

        .accordion-fines .accordion-button:not(.collapsed) {
            background: transparent !important;
            color: var(--ink) !important;
        }

        .accordion-fines .accordion-button::after {
            display: none !important;
        }

        .accordion-fines .accordion-button .chevron {
            color: var(--salmon);
            font-size: 0.9rem;
            margin-right: 0.5rem;
            transition: transform 0.2s;
            display: inline-block;
        }

        .accordion-fines .accordion-button:not(.collapsed) .chevron {
            transform: rotate(180deg);
        }

        .accordion-fines .accordion-collapse {
            border: none !important;
        }

        .accordion-fines .accordion-body {
            padding: 0.5rem 0 1.25rem 1.5rem !important;
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.75;
            background: transparent !important;
        }

        .sede-nombre {
            font-weight: 900;
            color: var(--ink);
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }

        .sede-dato {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-bottom: 0.3rem;
            color: var(--muted);
            font-size: 0.98rem;
        }

        .sede-dato i {
            color: var(--azul);
            font-size: 1.15rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

        /* ===== CTA ===== */
        .btn-cta {
            background-color: var(--salmon);
            border: none;
            color: #fff;
            padding: 0.5rem 1rem;
            font-weight: 700;
            font-size: 1.02rem;
            border-radius: 0;
            text-decoration: none;
            display: block;
            text-align: center;
            max-width: 540px;
            margin: 0 auto;
            transition: filter .15s, transform .15s;
        }

        .btn-cta:hover {
            filter: brightness(.92);
            transform: translateY(-1px);
            color: #fff;
        }

        /* ===== DIVIDERS ===== */
        .section-divider {
            border: none;
            border-top: 1px solid var(--grid);
            margin: 0;
        }

        /* ===== FOOTER ===== */
        footer {
            background-color: var(--soft);
            margin-top: 3.5rem;
            border-top: 1px solid var(--grid);
        }

        .footer-inner {
            padding: 2.5rem 0;
        }

        .footer-title {
            font-weight: 700;
            color: var(--ink);
            font-size: 1.35rem;
            margin-bottom: 1rem;
        }

        .footer-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .contacto-label {
            font-weight: 700;
            color: var(--ink);
            font-size: 1.35rem;
        }

        .footer-line {
            border: none;
            border-top: 2px solid var(--verde);
            margin: 0 0 1.2rem 0;
            opacity: 1;
        }

        .footer-subtitle {
            color: var(--ink);
            font-size: 1.05rem;
            font-weight: 600;
        }

        .footer-subtitle::before {
            content: "• ";
        }

        .footer-subtitle a {
            color: var(--ink);
            text-decoration: none;
            font-weight: 700;

        }

        .footer-subtitle a:hover {
            border-bottom-color: var(--azul);
        }

        .footer-contact a {
            color: var(--ink);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;

        }

        .footer-contact a:hover {
            border-bottom-color: var(--azul);
        }

        .footer-contact i {
            color: var(--verde);
            font-size: 1.5rem;
        }

        /* ===== RESPONSIVE ===== */
        @container hero (max-width: 700px) {
            :root {
                --cell: 38px;
            }
        }

        @container hero (max-width: 620px) {
            .pf-hero {
                padding: 2.5rem 0 2rem;
            }
        }

        @media (max-width: 768px) {
            .tagline {
                text-align: left !important;
                font-size: 1.15rem;
            }

            .logo {
                font-size: 2rem;
                margin-left: 0;
            }

            .hero-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .dest-row {
                flex-direction: column;
                gap: 1rem;
            }

            .dest-icon {
                width: 52px;
                height: 52px;
            }

            .dest-icon .ph {
                font-size: 28px;
            }

            .section-content {
                margin-left: 0;
            }

            .section-header-line {
                margin-left: 0;
            }

            .btn-cta {
                max-width: 100%;
                padding: 1rem;
            }
        }
    
