/* 
   Experience Medal Banner Styles - BLUE PALETTE & LAYOUT REFINED
   Medal: Original (untouched)
   Text: Blue (+ Smaller, single line)
*/

.container_ancho_linux {
    display: flex;
    width: 100%;
    background-color: rgba(0, 71, 171, 0.04); /* Very soft purple for a cohesive look */
    padding: 60px 20px;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
    gap: 50px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 71, 171, 0.1);
    border-bottom: 1px solid rgba(0, 71, 171, 0.1);
}

.box1-porque {
    padding: 0;
    width: 250px; /* Reduced width for better single-line fit */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap; /* Prevent internal wrapping */
}

/* 100% and dates - Modern Inter font in Brand Blue */
.box3 {
    display: flex;
    width: auto;
    color: #0047AB; /* Official Brand Blue */
    justify-content: center;
    font-size: 2.5rem; /* Reduced size for elegance and single line */
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
}

/* Actividad, FullHosting - Modern Inter font in Slate Blue */
.box4 {
    display: flex;
    width: auto;
    flex-direction: column;
    color: #475569; /* Slate for labels */
    justify-content: center;
    font-size: 1rem; /* Smaller text for professional look */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: 'Inter', sans-serif;
}

/* Original Violet Box (Untouched Design) */
.box1-medalla {
    display: flex;
    flex-direction: column;
    width: 250px;
    background-color: rgba(0, 71, 171, 1);
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;
    border-radius: 20px;
    padding: 10px;
    margin: 10px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px 1px rgba(0, 71, 171, 1);
}

.container_medalla {
    display: flex;
    width: 180px;
    height: 180px;
    background-color: rgba(0, 71, 171, 1);
    font-family: 'Alfa Slab One', cursive;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: transform 800ms;
}

.container_medalla:hover {
    transform: scale(1.1);
}

#circle {
    width: 90%;
    height: 90%;
    clip-path: circle();
    background-image: linear-gradient(320deg, rgb(238, 228, 137) 60%, white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid rgb(241, 199, 58);
}

/* ...rest of unchanged IDs copied from previous version ... */
#circle2 {
    width: 80%;
    height: 80%;
    clip-path: circle();
    background-image: linear-gradient(320deg, rgb(240, 199, 16) 60%, white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 5px solid #0047AB;
}

#circle3 {
    width: 72%;
    height: 72%;
    clip-path: circle();
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid rgb(255, 251, 0);
}

#circle4 {
    display: flex;
    width: 60%;
    height: 60%;
    clip-path: circle();
    background-image: linear-gradient(320deg, rgb(241, 201, 91) 45%, white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(147, 77, 5, 0.3);
    align-items: center;
    justify-content: center;
}

.texto-borde {
    -webkit-text-stroke: 3px #E53935;
    color: goldenrod;
    font-size: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Alfa Slab One', cursive;
}

.box2-medalla {
    display: flex;
    height: 40px;
    background-color: rgba(0, 71, 171, 1);
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.titulo-anos {
    font-size: 3rem;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
}

.achurado {
    background-image: repeating-linear-gradient(320deg, transparent 1px 5px, gold 10px 20px);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .container_ancho_linux {
        padding: 40px 10px;
        gap: 30px;
    }
    .box1-porque {
        width: 100%;
        white-space: normal; /* Allow wrapping on mobile for better fit */
    }
    .box3 { font-size: 2rem; }
    .box4 { font-size: 0.9rem; }
}
