body {
    font-family: Poppins;
    margin: 0;
    padding: 20px;
    background-color: #f2f2f2;
}

.modelo-negocios {
    max-width: 1200px;
    margin: 0 auto;
}

/* Encabezado */
.modelo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.titulo-modelo h1 {
    margin: 0;
    font-size: 2.8rem;
    color: #1a3668;
    line-height: 1.1;
    text-transform: uppercase;
}

.titulo-modelo .bg-azul {
    background-color: #f39c12; /* Color naranja/oro del logo */
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
}

/* Logo */
.logo-small {
    width: 300px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Línea de Tiempo */
.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 155px; /* Ajustar según posición de los rombos */
    left: 5%;
    right: 5%;
    height: 18px;
    background: linear-gradient(90deg, #2d9cdb 0%, #1a3668 100%);
    border-radius: 10px;
    z-index: 1;
}

/* Contenedor de pasos */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 15px;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-15px);
}

/* Texto superior */
.step-top-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3668;
    min-height: 60px;
    margin-bottom: 15px;
}

.step-top-text p {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 400;
}

/* Rombos e iconos */
.step-diamond {
    width: 90px;
    height: 90px;
    background-color: white;
    border: 8px solid #ffffff;
    border-radius: 15px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step-diamond img {
    width: 40px;
    height: 40px;
    transform: rotate(-45deg);
    object-fit: contain;
}

/* Tarjetas */
.step-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 4px solid #1a3668;
    font-size: 0.8rem;
    color: #444;
    min-height: 140px;
}

.badge {
    background: #e1ecf4;
    color: #1a3668;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 2px;
    display: inline-block;
}

.small {
    font-size: 0.7rem;
    margin-top: 10px;
    color: #777;
}

/* Colores degradados de los rombos */
.color-1 { background: linear-gradient(45deg, #f0f7ff, #d1e9ff); }
.color-2 { background: linear-gradient(45deg, #56ccf2, #2d9cdb); }
.color-3 { background: linear-gradient(45deg, #1a3668, #0d1b3d); }
.color-4 { background: linear-gradient(45deg, #2d9cdb, #1a3668); }