.try-trib-timeline {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 5px; /* Reducido de 32px a 20px */
    margin: 40px 0;
    width: 100%;
    max-width: 1200px;
}
.try-trib-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 220px;
}
.try-trib-label {
    width: 180px;
    height: 170px; /* Reducido de 200px a 170px en desktop */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centrado vertical en desktop */
    border-radius: 18px;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #7D1D12;
    text-align: center;
    position: relative;
    background: #F2A9A1;
    padding: 20px 10px; /* Padding consistente */
}
.try-trib-item:nth-child(2) .try-trib-label { background: #F8D2CE; }
.try-trib-item:nth-child(3) .try-trib-label { background: #F2A9A1; }
.try-trib-item:nth-child(4) .try-trib-label { background: #F8D2CE; }
.try-trib-item:nth-child(5) .try-trib-label { background: #F2A9A1; }

/* Contenedor para año y símbolo en la misma línea */
.try-trib-year-simbolo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px; /* Espacio consistente entre año y símbolo */
    margin-bottom: 15px; /* Margen consistente hacia abajo */
    min-height: 60px; /* Altura mínima para mantener consistencia */
    flex-wrap: wrap; /* Permitir que el contenido se ajuste si es muy largo */
    text-align: center;
}

.try-trib-year {
    font-size: 42px; /* Mismo tamaño que el símbolo */
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    display: inline-block;
    line-height: 1;
    white-space: nowrap; /* Evitar que se rompa el texto como "24/7" */
}

.try-trib-simbolo {
    font-size: 42px; /* Tamaño del símbolo */
    font-family: 'Montserrat', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Android Emoji', 'EmojiSymbols', 'EmojiOne Mozilla', 'Twemoji Mozilla', 'Segoe UI Symbol', Arial, sans-serif;
    display: inline-block;
    line-height: 1;
    font-style: normal;
    font-weight: 600;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.try-trib-desc {
    color: #030712;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    background: none;
    border-radius: 0 0 18px 18px;
    padding: 0 10px;
    line-height: 1.3;
    flex-grow: 1; /* Que ocupe el espacio restante */
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.try-trib-item:nth-child(1) .try-trib-desc { color: #030712; }
.try-trib-item:nth-child(2) .try-trib-desc { color: #030712; }
.try-trib-item:nth-child(3) .try-trib-desc { color: #030712; }
.try-trib-item:nth-child(4) .try-trib-desc { color: #030712; }
.try-trib-item:nth-child(5) .try-trib-desc { color: #030712; }
.try-trib-error {
    color: #dc3232;
    background: #fff0f0;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}
.try-trib-desc-inbox {
    color: inherit;
    background: none;
    font-weight: 500;
    padding: 0 12px;
    border-radius: 0 0 12px 12px;
    text-align: center;
    line-height: 1.3;
    box-shadow: none;
    min-height: 40px; /* Altura mínima para consistencia */
}
/* Eliminar la descripción fuera del recuadro */
.try-trib-desc:not(.try-trib-desc-inbox) {
    display: none;
}

/* Tablet: 2x2 grid */
@media (max-width: 1024px) {

    .try-trib-desc {
        font-size: 20px;
    }
    .try-trib-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 16px;
        max-width: 600px;
        margin: 40px auto;
        justify-items: center;
    }
    .try-trib-item {
        max-width: 250px;
        min-width: 200px;
        width: 100%;
        margin-bottom: 0;
    }
    .try-trib-label {
        justify-content: center; /* Centrado vertical en tablet */
    }
    .try-trib-year {
        font-size: 42px; /* Mismo tamaño que desktop */
        white-space: nowrap; /* Evitar que se rompa el texto como "24/7" */
    }
    .try-trib-simbolo {
        font-size: 42px; /* Mismo tamaño que desktop */
        font-family: 'Montserrat', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Android Emoji', 'EmojiSymbols', 'EmojiOne Mozilla', 'Twemoji Mozilla', 'Segoe UI Symbol', Arial, sans-serif;
        white-space: nowrap; /* Evitar que se rompa el texto */
    }
    .try-trib-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .try-trib-item:nth-child(2) { grid-column: 2; grid-row: 1; }
    .try-trib-item:nth-child(3) { grid-column: 1; grid-row: 2; }
    .try-trib-item:nth-child(4) { grid-column: 2; grid-row: 2; }
    .try-trib-item:nth-child(5) { grid-column: 1; grid-row: 3; }
}

/* Móvil: 1x1 columna */
@media (max-width: 600px) {
    .try-trib-timeline {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        max-width: 100%;
        display: flex;
    }
    .try-trib-item {
        max-width: 95vw;
        min-width: 0;
        width: 100%;
    }
    .try-trib-label {
        width: 95vw;
        max-width: 320px;
        height: 180px; /* Altura fija en móvil */
        font-size: 1.3em;
        padding: 15px 10px;
        justify-content: center; /* Centrado vertical en móvil */
    }
    
    .try-trib-year {
        font-size: 42px; /* Mismo tamaño que desktop */
        white-space: nowrap; /* Evitar que se rompa el texto como "24/7" */
    }
    .try-trib-simbolo {
        font-size: 42px; /* Mismo tamaño que desktop */
        font-family: 'Montserrat', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Android Emoji', 'EmojiSymbols', 'EmojiOne Mozilla', 'Twemoji Mozilla', 'Segoe UI Symbol', Arial, sans-serif;
        white-space: nowrap; /* Evitar que se rompa el texto */
    }
    .try-trib-desc, .try-trib-desc-inbox {
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        max-width: 95vw;
        box-sizing: border-box;
        min-height: 35px;
    }
} 