:root {
    --c-primary: #0c306d;    /* Dark Blue */
    --c-lightblue: #26a9e7;  /* Light Blue */
    --c-red: #b8141a;        /* Red */
    --c-light: #e2e4e6;      /* Light Gray */
    --c-darkred: #5a0000;    /* Dark Red */
    --c-navy: #001333;       /* Navy */
    --c-white: #ffffff;
}

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

html {
    font-size: 18px; /* Increments base font size to make everything proportionally larger */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #cbd5e1; /* Canvas backdrop */
    display: flex;
    justify-content: center;
    padding: 40px 0;
    color: var(--c-navy);
    line-height: 1.5;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

/* The Paper Canvas */
.infographic-canvas {
    width: 1100px; /* Increased canvas size */
    background-color: var(--c-white);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(38, 169, 231, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(184, 20, 26, 0.05) 0%, transparent 40%),
        linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px, 20px 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* Header */
.info-header {
    background: var(--c-white);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 12px solid var(--c-primary);
    border-bottom: 12px solid var(--c-primary);
    position: relative;
}

.info-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 60%;
    height: 12px;
    background-color: var(--c-lightblue);
}

.header-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.header-text {
    text-align: right;
    max-width: 65%;
}

.info-title {
    font-size: 2.3rem; /* Scales with 18px base = 41.4px */
    color: var(--c-navy);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.info-subtitle {
    font-size: 1.15rem; /* Scales up */
    color: var(--c-primary);
    font-weight: 600;
}

/* Body */
.info-body {
    padding: 2.5rem 4rem;
    position: relative;
}

/* Sections */
.info-section {
    position: relative;
    z-index: 1;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--c-navy);
    color: var(--c-white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 0.9rem 2.2rem;
    border-radius: 0 25px 25px 0;
    margin-left: -4rem; /* Extend to left edge of padding */
    margin-bottom: 3rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-left: 8px solid var(--c-lightblue);
}

/* Colors Utilities */
.c-primary-text { color: var(--c-primary) !important; }
.c-lightblue-text { color: var(--c-lightblue) !important; }
.c-red-text { color: var(--c-red) !important; }
.c-darkred-text { color: var(--c-darkred) !important; }

.bg-primary { background-color: var(--c-primary) !important; color: white; }
.bg-lightblue { background-color: var(--c-lightblue) !important; color: white; }
.bg-red { background-color: var(--c-red) !important; color: white; }
.bg-darkred { background-color: var(--c-darkred) !important; color: white; }
.bg-navy { background-color: var(--c-navy) !important; color: white; }
.bg-light { background-color: var(--c-light) !important; }

.border-primary { border: 3px solid var(--c-primary); }
.border-lightblue { border: 3px solid var(--c-lightblue); }
.border-darkred { border: 3px solid var(--c-darkred); }
.border-red { border: 3px solid var(--c-red); }

/* Fase 1 Layout */
.fase1-layout {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.info-block {
    text-align: center;
    width: 45%;
}

.fase1-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.info-block h4 {
    color: var(--c-navy);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.info-block p {
    font-size: 1rem;
    color: #4a5568;
}

/* Hexagon Honeycomb */
.values-block {
    text-align: center;
    margin-top: 3.5rem;
}

.values-block h4 {
    color: var(--c-navy);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.honeycomb {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hex-row {
    display: flex;
    justify-content: center;
    margin-bottom: -18px; /* Overlap rows perfectly for larger hexes */
}

.hex {
    width: 100px;
    height: 85px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 4px;
}

/* Fase 2 Pillars */
.pillars {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.pillar {
    width: 300px;
    display: flex;
    flex-direction: column;
}

.pillar-top, .pillar-bot {
    height: 30px;
    border-radius: 6px;
    width: 108%;
    margin-left: -4%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.pillar-mid {
    margin: 6px 0;
    border-radius: 6px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.bg-primary-grad {
    background: repeating-linear-gradient(0deg, var(--c-primary), var(--c-primary) 20px, rgba(0,0,0,0.15) 20px, rgba(0,0,0,0.15) 40px);
}

.bg-red-grad {
    background: repeating-linear-gradient(0deg, var(--c-red), var(--c-red) 20px, rgba(0,0,0,0.15) 20px, rgba(0,0,0,0.15) 40px);
}

.pillar-text {
    background: var(--c-white);
    padding: 1.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    width: 100%;
}

.pillar-text h4 {
    margin: 0.8rem 0;
    font-size: 1.2rem;
}

.pillar-text p {
    font-size: 0.95rem;
    color: #4a5568;
}

.icon-lg {
    font-size: 3rem;
}

/* Fase 3 Ejes Layout */
.ejes-container {
    position: relative;
    padding-left: 20px;
}

.eje-path {
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 8px; /* Slightly thicker */
    background-color: var(--c-light);
    border-radius: 8px;
    z-index: 0;
}

.eje-item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1rem;
    margin-bottom: 2rem;
}
.eje-item:last-child { margin-bottom: 0; }

.eje-node {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: absolute;
    left: 30px; /* 40px + 4px (half path) - 14px (half node) */
    z-index: 2;
    border: 5px solid var(--c-white);
    box-shadow: 0 0 0 2px var(--c-light);
}

.eje-bubble {
    display: flex;
    align-items: stretch;
    background: var(--c-white);
    border-radius: 50px;
    margin-left: 70px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    width: 100%;
    overflow: hidden;
}

.eje-meta {
    width: 220px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
    flex-shrink: 0;
}

.meta-title {
    font-weight: 800;
    margin-top: 0.6rem;
}
.meta-title:first-child {
    margin-top: 0;
}

.eje-desc {
    flex-grow: 1;
    padding: 1.8rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eje-desc h4 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.eje-desc p {
    font-size: 1.05rem;
    color: #4a5568;
}

.eje-ic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    margin: auto 2rem auto 0;
}

/* Fase 4 */
.fase4-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.info-timeline {
    flex: 1;
    text-align: center;
    background: var(--c-white);
    border: 3px dashed var(--c-light);
    padding: 2.5rem;
    border-radius: 20px;
}

.info-timeline h4 {
    color: var(--c-navy);
    margin-bottom: 1.8rem;
    font-size: 1.35rem;
}

.timeline-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.year-badge {
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.35rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.connector {
    width: 70px;
    height: 5px;
}

.graduado-block {
    flex: 1.5;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 25px;
    background: #f8fafc;
    text-align: left;
}

.graduado-block h4 {
    font-size: 1.55rem;
    margin-bottom: 0.6rem;
}

.graduado-block p {
    font-size: 1.05rem;
    color: #4a5568;
}
