/* Estilos principales del cotizador CMG */
.cotizador-cmg {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: linear-gradient(135deg, #2b145b 80%, #262d81 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: 'Arial', sans-serif;
}

.cmg-titulo {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cmg-formulario {
    display: grid;
    gap: 20px;
}

.cmg-grupo {
    display: flex;
    flex-direction: column;
}

.cmg-grupo label {
    margin-bottom: 8px;
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.cmg-input, .cmg-select {
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.cmg-input:focus, .cmg-select:focus {
    outline: none;
    border-color: #fff;
    background: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.cmg-boton {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cmg-boton:hover {
    background: #653296;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cmg-cargando {
    text-align: center;
    color: white;
    display: none;
    padding: 20px;
}

.cmg-cargando .spinner {
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 4px solid white;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cmg-resultados {
    margin-top: 30px;
    display: none;
}

.cmg-cotizacion {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 5px solid #667eea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cmg-cotizacion:hover {
    transform: translateX(5px);
}

.cmg-cotizacion h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cotizacion-precio {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin: 10px 0;
}

.cotizacion-tiempo {
    color: #666;
    margin-bottom: 15px;
}

.cotizacion-original {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.cmg-seleccionar {
    background: #667eea;
    font-size: 14px;
    padding: 10px 20px;
}

.cmg-seleccionar:hover {
    background: #5a6fd8;
}

.cmg-dimensiones {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.cmg-error {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #c62828;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .cotizador-cmg {
        margin: 10px;
        padding: 20px;
    }
    
    .cmg-dimensiones {
        grid-template-columns: 1fr;
    }
}